search for: tomatos4

Displaying 1 result from an estimated 1 matches for "tomatos4".

Did you mean: tomato4
2013 May 03
1
A problem of splitting the right screen in 3 or more independent vertical boxes:
...because each plant has its own unit of measure. Let's say wheat is measured in ton, tomato in pound and cucumbers as counts. :-) x<-rnorm(1000,mean=0,sd=1,main="Right screen") wheat1<-rnorm(100,mean=0,sd=1) wheat2<-rnorm(150,mean=0,sd=2) tomatos3<-rnorm(200,mean=0,sd=3) tomatos4<-rnorm(250,mean=0,sd=4) cucumbers5<-rnorm(300,mean=0,sd=5) cucumbers6<-rnorm(400,mean=0,sd=6) par(mfrow=c(1,2)) hist(x, main="Left screen OK") boxplot(wheat1,wheat2,tomatos3,tomatos4,cucumbers5,cucumbers6) title ("Right screen: boxplot with plants") Thank you in adva...