1.箱型图:
代码:
setwd("F:\\R语言\\Code\\Chapter 1\\Data Files")
metals <- read.csv("metals.csv", header = TRUE)
boxplot(
#数据集
metals,
#横坐标说明
xlab = "Metals",
#纵坐标说明
ylab = "Atmospheric Concentration in ng per cubic metre",
#图形说明
main = "Atmospheric Metal Concentrations in London"
)
- 效果:

2.直方图:
- 代码:
#直方图
#产生随机数-2 --- +2
hist(rnorm(1000))
#岛屿数据集
islands
hist(islands)
效果:


5089

被折叠的 条评论
为什么被折叠?



