【发布时间】:2014-04-24 23:00:10
【问题描述】:
我在使用 R 中的 qplot 时遇到了一些问题。我正在尝试从数据框中绘制数据。当我执行下面的命令时,绘图会在左侧聚集(见下图)。数据框只有 963 行,所以我认为大小不是问题,但我可以在较小的数据框上使用相同的命令,它看起来不错。有什么想法吗?
library(ggplot2)
qplot(x=variable,
y=value,
data=data,
color=Classification,
main="Average MapQ Scores")
或类似:
ggplot(data = data, aes(x = variable, y = value, color = Classification) +
geom_point()
【问题讨论】:
-
@Hugh 也许添加这个作为答案...?
标签: r ggplot2 axis-labels