ggplot2:当y是因子时,如何使用geom_line()连接所有点?

时间:2018-03-03 22:27:12

标签: r ggplot2

我希望按照x values的顺序连接所有点。如果y values不是离散的(因子),它可以正常工作:

df = read.csv("result.csv")
qplot(x=1:100, y=df$process[1:100]) + geom_point() +
    geom_line() +
    ggtitle("First 100 Process Schedule") + xlab("Quanta") + ylab("Process")

f1

y values更改为系数后,geom_line()仅连接共享相同y value的点。我想知道如何使情节看起来像第一个情节,但有分解y vaules

df = read.csv("result.csv")
df$process = factor(df$process)
qplot(x=1:100, y=df$process[1:100]) + geom_point() +
    geom_line() +
    ggtitle("First 100 Process Schedule") + xlab("Quanta") + ylab("Process")

f2

0 个答案:

没有答案