R语言绘制卡方分布直方图
时间: 2023-11-27 21:04:09 浏览: 108
R 语言学习_直方图
5星 · 资源好评率100%
好的,以下是使用R语言绘制卡方分布直方图的代码:
```R
library(ggplot2)
x <- seq(0, 20, length=100)
y <- dchisq(x, df=5)
data <- data.frame(x=x, y=y)
ggplot(data, aes(x=x, y=y)) +
geom_histogram(binwidth=0.5, color="black", fill="white") +
geom_line(color="red", size=1) +
ggtitle("Chi-Square Distribution with df=5") +
xlab("x") + ylab("Density")
```
这段代码使用了ggplot2包来绘制直方图和密度曲线。其中,dchisq函数用于计算卡方分布的概率密度函数,geom_histogram函数用于绘制直方图,geom_line函数用于绘制密度曲线。
阅读全文