📜  如何在 r 中为多个图形绘制一个 ogive - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:56.655000             🧑  作者: Mango

代码示例1
# 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")
# }