私は本の例に従っていますMachine Learning for Hackers
。R 2.15.1
とggplot 0.91
使用されます。次のエラーが発生します。
Error in continuous_scale(aesthetics, "date", identity, breaks = breaks, :
unused argument(s) (major = "5 years", format = "%Y")
In addition: Warning message:
In discrete_scale(aesthetic, "manual", pal, ...) :
"legend" argument in scale_XXX is deprecated. Use guide="none" for suppress the guide display.
私が実行しようとしたコードは
state.plot<-ggplot(all.sightings, aes(x=YearMonth,y=Sightings))+
geom_line(aes(color="darkblue"))+
facet_wrap(~State,nrow=10,ncol=5)+
theme_bw()+
scale_color_manual(values=c("darkblue"="darkblue"),legend=FALSE)+
scale_x_date(major="5 years", format="%Y")+
xlab("Time")+ylab("Number of Sightings")+
opts(title="Number of UFO sightings by Month-Year and U.S. State (1990-2010)")
私は使用library(scales)
しましたが、それは機能しませんでした。何か案は?