search for: actual_h

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

Did you mean: actual_l
2010 Jul 07
3
Boxplots over a Scatterplot
...ata<-read.table(file="#a file in my working directory", sep=",", header=T) #specifies a dataframe foram<-data.frame(emdata) #calculates actual dimensions in mm foram$actual_l<-foram$length/foram$magnification foram$actual_w<-foram$width/foram$magnification foram$actual_h<-foram$height/foram$magnification #takes logs of all dimensions foram$logl<-log10(foram$actual_l) foram$logw<-log10(foram$actual_w) foram$logh<-log10(foram$actual_h) #Generates scatterplot plot(foram$stage, foram$logl, ylab="log max size", xlab="stage", cex=....