我有一个关于 ggplot 的小问题,我想知道如何让数据点从 0 线开始,而不会在左侧、右侧和底部留下那个小间隙。
这是我的代码:
hov.dat <- structure(list(x = c(3L, 3L, 9L, 25L, 25L, 27L, 30L, 39L, 49L,
56L, 60L, 65L), y = c(55, 54, 34.33, 34, 75.66, 44, 56.55, 54,
27.34, 30.75, 19.04, 25.29)), .Names = c("x", "y"), class = "data.frame", row.names = c(NA,
-12L))
with(hov.dat, plot(x, y))
qplot(x, y, data=hov.dat, geom=c('point', 'smooth'), method='lm', formula=y ~ ns(x, 3))
谁能帮我解决我应该编写什么代码来删除图中的左侧、右侧和底部间隙(图中标有箭头)