标签: r plot ggplot2
是否可以仅绘制一些列的值,例如100的前10个甚至只有50到60行的值?
答案 0 :(得分:1)
plot(column_x[1:10]) plot(column_x[50:60])
答案 1 :(得分:0)
我发现答案很快here。它应该是x <- df$variable[1:10]。
x <- df$variable[1:10]