我想绘制(使用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
....
答案 0 :(得分:1)
在aes()
之外执行子集化。
ggplot(data = table[1:100,]) + geom_point(aes(x = Date, y = L))