绘制数据集的一部分

时间:2014-06-11 16:41:22

标签: r ggplot2

我想绘制(使用ggplot2)表格的一部分(2列)。例如,从row1到row100。我怎么能这样做?非常感谢! 我尝试这个但它不起作用

ggplot(table) + geom_point(aes(x= Date[1:100], y = L [1:100]))

Date             L
01.01.2008 00:10      425

01.01.2008 00:20      425

01.01.2008 00:30      424

01.01.2008 00:40      425

01.01.2008 00:50      425

....

1 个答案:

答案 0 :(得分:1)

aes()之外执行子集化。

ggplot(data = table[1:100,]) + geom_point(aes(x = Date, y = L))