Answers for "how to plot an ogive for multiple graphs in r"

0

how to plot an ogive for multiple graphs in r

# NOT RUN {
library(agricolae)
data(growth)
h<-graph.freq(growth$height,plot=FALSE)
points<-ogive.freq(h,col="red",frame=FALSE,
xlab="Height", ylab="Accumulated relative frequency", main="ogive")
plot(points,type="b",pch=16,las=1,bty="l")
# }
Posted by: Guest on July-29-2021

Code answers related to "how to plot an ogive for multiple graphs in r"

Browse Popular Code Answers by Language