commandline session
> library(ggplot2)
Loading required package: reshape
Loading required package: plyr
Attaching package: ‘reshape’
The following object(s) are masked from ‘package:plyr’:
rename, round_any
Loading required package: grid
Loading required package: proto
> lscalls usecspercall qplot(lscalls,usecspercall,geom="line")
> plot(lscalls,usecspercall,geom="line")
Warning messages:
1: In plot.window(...) : "geom" is not a graphical parameter
2: In plot.xy(xy, type, ...) : "geom" is not a graphical parameter
3: In axis(side = side, at = at, labels = labels, ...) :
"geom" is not a graphical parameter
4: In axis(side = side, at = at, labels = labels, ...) :
"geom" is not a graphical parameter
5: In box(...) : "geom" is not a graphical parameter
6: In title(...) : "geom" is not a graphical parameter
> png(file="Rlsplot.png")
> plot(lscalls,usecspercall,geom="point")
Warning messages:
1: In plot.window(...) : "geom" is not a graphical parameter
2: In plot.xy(xy, type, ...) : "geom" is not a graphical parameter
3: In axis(side = side, at = at, labels = labels, ...) :
"geom" is not a graphical parameter
4: In axis(side = side, at = at, labels = labels, ...) :
"geom" is not a graphical parameter
5: In box(...) : "geom" is not a graphical parameter
6: In title(...) : "geom" is not a graphical parameter
> dev.off()
null device
1
> ggplot(lscalls,usecspercall,geom="point")
Error in ggplot.data.frame(fortify(data), mapping, ...) :
Mapping should be created with aes or aes_string
>
