9.4 散点图
9.4.1 问题
你想要绘制一幅散点图。
9.4.2 方案
假设这是你的数据:
set.seed(955)
# 创建一些噪声数据
dat <- data.frame(cond = rep(c("A", "B"), each = 10), xvar = 1:20 +
rnorm(20, sd = 3), yvar = 1:20 + rnorm(20, sd = 3))
head(dat)
#> cond xvar yvar
#> 1 A -4.252 3.47316
#> 2 A 1.702 0.00594
#> 3 A 4.323 -0.09425
#> 4 A 1.781 2.07281
#> 5 A 11.537 1.21544
#> 6 A 6.672 3.60811
library(ggplot2)
9.4.2.1 带回归线的基本散点图
ggplot(dat, aes(x=xvar, y=yvar)) +
geom_point(shape=1) # 使用空心圆
ggplot(dat, aes(x=xvar, y=yvar)) +
geom_point(shape=1) + # 使用空心圆
geom_smooth(method=lm) # 添加回归线
# (默认包含 95% 置信区间)
ggplot(dat, aes(x=xvar, y=yvar)) +
geom_point(shape=1) + # 使用空心圆
geom_smooth(method=lm, # 添加回归线
se=FALSE) # 不加置信区域
ggplot(dat, aes(x=xvar, y=yvar)) +
geom_point(shape=1) + # 使用空心圆
geom_smooth() # 添加带置信区间的平滑拟合曲线
#> `geom_smooth()` using method = 'loess' and formula 'y ~ x'
9.4.2.2 通过其他变量设置颜色和形状
# 根据 cond 设置颜色
ggplot(dat, aes(x=xvar, y=yvar, color=cond)) + geom_point(shape=1)
# 同上,但这里带了回归线
ggplot(dat, aes(x=xvar, y=yvar, color=cond)) +
geom_point(shape=1) +
scale_colour_hue(l=50) + # 使用稍暗的调色板
geom_smooth(method=lm,
se=FALSE)
# 拓展回归线到数据区域之外(带预测效果)
ggplot(dat, aes(x=xvar, y=yvar, color=cond)) + geom_point(shape=1) +
scale_colour_hue(l=50) +
geom_smooth(method=lm,
se=FALSE,
fullrange=TRUE)
# 根据 cond 设置形状
ggplot(dat, aes(x=xvar, y=yvar, shape=cond)) + geom_point()
# 同上,但形状不同
ggplot(dat, aes(x=xvar, y=yvar, shape=cond)) + geom_point() +
scale_shape_manual(values=c(1,2)) # 使用圆和三角形
查看颜色获取更多关于颜色的信息。查看形状与线形获取更多相关内容。
9.4.2.3 处理图像元素叠加
如果你有很多数据点,或者你的数据是离散的,那么数据可能会覆盖到一起,这样就看不清楚同一个位置有多少数据了。
# 取近似值
dat$xrnd <- round(dat$xvar/5) * 5
dat$yrnd <- round(dat$yvar/5) * 5
# 让每个点都部分透明 如果情况严重,可以使用更小的值
ggplot(dat, aes(x = xrnd, y = yrnd)) + geom_point(shape = 19,
alpha = 1/4)
# 抖动点 抖动范围在 x 轴上是 1,y 轴上是 0.5
ggplot(dat, aes(x = xrnd, y = yrnd)) + geom_point(shape = 1,
position = position_jitter(width = 1, height = 0.5))