Displaying 3 results from an estimated 3 matches for "plotcolor".
2011 Oct 17
1
plotting issues with PCA
...> fish.site <- scores(fish.pca,display="sites",scaling=3)
> fish.spp <-
scores(fish.pca,display="species",scaling=3)[omanfish.mrt.indval$pval<=0.05,]
> graph <- plot(fish.pca,display=c("sites","species"),type="n",scaling=3)
> plotcolor <-
c("red","green","blue","aquamarine","magenta","yellow")[site.codings]
> points(fish.site,pch=21,bg=plotcolor,cex=1.2)
#up to this point all works well but when I try to draw the polygons I cant
get the lines to colour code the sa...
2011 Nov 23
2
Suggested alternative to rgdal for Mac for making bubble plots with R 2.14?
I'm new to making bubble plots with R, so I was going to try the following:
https://stat.ethz.ch/pipermail/r-sig-geo/2009-August/006258.html
Unfortunately, it looks like rgdal is not part of 2.14. I'm not sure if it was the mirror I selected or something else is going on.
> install.packages("rgdal")
--- Please select a CRAN mirror for use in this session ---
Warning
2013 Jan 22
6
plot two time series with different length and different starting point in one figure.
Hello,
I do have two different time series A and B, they are different in length and starting point. A starts in Jan, 2012 and ends in Dec, 2012 and B starts in March, 2012 and ends in Nov, 2012.
How can I plot those two series A and B in the same plot? I.E., from Jan. 2012 - Feb, 2012, it would have one data point from A and from Mar, 2012-Nov, 2012, it would have two data points from A and B,