Problem Loading ggplot2

Cannot load 'ggplot2' package.
I'm pretty new to R, and am having problems loading the "ggplot2" package.

library("ggplot2")

Gives the error:

Error: package or namespace load failed for ‘ggplot2’ in rbind(info, getNamespaceInfo(env, "S3methods")): number of columns of matrices must match (see arg 2)

Just remove the quote marks. You do need them with

install.packages("ggplot2")

It's kinda confusing, I know.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.