Re: [R] changing x and y ranges in a PCA plot created by library(labdsv)

2016-08-08 Thread David Winsemius
> On Aug 8, 2016, at 12:48 AM, Mohsen Sharafatmandrad > wrote: > > I want to change x and y ranges in a PCA plot created by library(labdsv). > When I run "plot(o.pca, xlim=c(-2, 3), ylim=c(-2, 4))", nothing will > change. Script is as fallow: > > > > raw<-

[R] changing x and y ranges in a PCA plot created by library(labdsv)

2016-08-08 Thread Mohsen Sharafatmandrad
I want to change x and y ranges in a PCA plot created by library(labdsv). When I run "plot(o.pca, xlim=c(-2, 3), ylim=c(-2, 4))", nothing will change. Script is as fallow: raw<- matrix(c(1,2,2.5,2.5,1,0.5,0,1,2,4,3,1),nrow=6) colnames(raw)<- c("s1","s2") rownames(raw)<-

Re: [R] changing x and y ranges in a PCA plot created by library(labdsv)

2016-08-07 Thread William Dunlap via R-help
labdsv::plot.pca() does not pass its unrecognized arguments (in ...) to plot(). You can fix this by adding the argument ... to its call to plot(), right after 'main = title', in plot.pca or by mailing the maintainer > maintainer("labdsv") [1] "David W. Roberts " and

Re: [R] changing x and y ranges in a PCA plot created by library(labdsv)

2016-08-07 Thread stephen sefick
Can you provide code and data (with dput)? You will likely get an answer more quickly. On Sun, Aug 7, 2016 at 4:34 AM, Mohsen Sharafatmandrad < mohsen.sharafatmand...@gmail.com> wrote: > Hi, > > I want to change x and y ranges in a PCA plot created by library(labdsv). > When I run "plot(o.pca,

[R] changing x and y ranges in a PCA plot created by library(labdsv)

2016-08-07 Thread Mohsen Sharafatmandrad
Hi, I want to change x and y ranges in a PCA plot created by library(labdsv). When I run "plot(o.pca, xlim=c(-2, 3), ylim=c(-2, 4))", nothing will change. I really appreciate if somebody can help on this. Cheers [[alternative HTML version deleted]]