On Mon, Dec 10, 2012 at 8:22 AM, Shige Song <
shig...@gmail.com> wrote:
> I can run your example on my machine. I have some warnings saying "The
> following `from` values were not present in `x`: col, color, pch, cex, lty,
> lwd, srt, adj, bg, fg, min, max ..." but I did get the graph.
To get rid of this, the safe thing to do is to reinstall Hadley's
recently updated packages in a fresh R session. The statement is a
message, not an error, so working graphs should still render, but that
message gets annoying in a hurry. Suggestion:
(i) start a new R session with no packages other than the standard autoloads;
(ii) install.packages(c("ggplot2", "plyr", "gtable", "scales"))
(iii) try a simple plot like qplot(1:3, 1:3) - the message should now be gone.
As far as Mike's message goes, I downloaded the ggthemes package from
Github late last week and have had no problems using it. Did you read
the download directions in the README.md file? The simplest way, which
does not require compilation, is to have the latest version of
devtools installed and do
library("devtools")
install_github("ggthemes", "jrnold")
This is what worked for me. The other option is to download the tar
ball to your machine and follow the instructions in README.md; it
doesn't appear you did as instructed.
Dennis