Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 ggplot2 绘制此图像:
问题是:在 X 轴上是范围。我想做的事情:我想让每个点/线/与范围(写在 X 轴上)一样大。
那可能吗?我的代码如下所示:
ggplot(data, aes(as.character(paste(data$V3,data$V4,sep="-")), means, color = factor(numSamp),group = 1))+ geom_point()+ stat_smooth(method = "lm")
干杯,
马里奥