美文网首页
R语言 (3) ggplot2

R语言 (3) ggplot2

作者: 无事扯淡 | 来源:发表于2017-07-31 17:53 被阅读0次

1.图像语法

Paste_Image.png ggplot2分层概念

2.基础

  • 引入ggplot2
> library(ggplot2)
  • 数据集介绍
> help(mtcars)

字段描述
A data frame with 32 observations on 11 variables.

[, 1] mpg Miles/(US) gallon
[, 2] cyl Number of cylinders
[, 3] disp Displacement (cu.in.)
[, 4] hp Gross horsepower
[, 5] drat Rear axle ratio
[, 6] wt Weight (1000 lbs)
[, 7] qsec 1/4 mile time
[, 8] vs V/S
[, 9] am Transmission (0 = automatic, 1 = manual)
[,10] gear Number of forward gears
[,11] carb Number of carburetors

3.简单示例

  • 重量与单位里程关系
> ggplot(mtcars, aes(x = wt, y = mpg)) + geom_point()
重量wt与单位里程mpg关系
  • 重量与单位里程关系(根据排气量设定颜色)
> ggplot(mtcars, aes(x = wt, y = mpg, color = disp)) +
  geom_point()
重量wt与单位里程mpg关系
  • 重量与单位里程关系(根据排气量设定点的尺寸)
ggplot(mtcars, aes(x = wt, y = mpg, size = disp)) +
  geom_point()
重量wt与单位里程mpg关系 Paste_Image.png

3.各类图像

  • 频率分布直方图(histogram)

相关文章

网友评论

      本文标题:R语言 (3) ggplot2

      本文链接:https://www.haomeiwen.com/subject/fvprlxtx.html