R语言实战 - 基本图形- 直方图

Posted 你的踏板车要滑向哪里

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了R语言实战 - 基本图形- 直方图相关的知识,希望对你有一定的参考价值。

> par(mfrow=c(2, 2))
> 
> hist(mtcars$mpg)
> 
> hist(mtcars$mpg, breaks=12, col="red", xlab="miles per gallon",
+      main="colored histogram with 12 bins")
> 
> hist(mtcars$mpg, freq=FALSE, breaks=12, col="red", xlab="miles per gallon",
+      main="histogram, rug plot, density curve")
> rug(jitter(mtcars$mpg))
> lines(density(mtcars$mpg), col="blue", lwd=2)
> 
> x <- mtcars$mpg
> h <- hist(x, breaks=12, col="red", xlab="miles per gallon",
+           main="histogram with normal curve and box")
> xfit <- seq(min(x), max(x), length=40)
> yfit <- dnorm(xfit, mean=mean(x), sd=sd(x))
> yfit <- yfit*diff(h$mids[1:2])*length(x)
> lines(xfit, yfit, col="blue", lwd=2)
> box()
> 

 

以上是关于R语言实战 - 基本图形- 直方图的主要内容,如果未能解决你的问题,请参考以下文章

R语言可视化绘制基本图形

R语言描述性统计分析:基本统计分析

R语言实战 - 基本图形- 点图

R语言实战 - 基本图形- 饼图

[读书笔记] R语言实战 基本图形方法

R语言直方图(histogram)绘制实战