我想使用ggplot2,但不知道在哪里看。我的全局开始和结束时间min(begin)
和max(end)
分别是我的x轴。我的y轴将是每个处理器,我的数据包括每个处理器编译器忙于编译或链接特定文件的时间块。我想看看处理器空闲的空白区域。我的df看起来像这样:
df <- data.frame(proc = as.factor(c('P_1', 'P_1', 'P_1', 'P_2', 'P_2', 'P_3')), begin=c(1, 20, 23 , 3, 5, 8), end=c(5, 19, 21, 4, 9, 100), what=c('compiling A', 'compiling B', 'linking A', 'compiling C', 'compiling D', 'compiling E'))
df
> df
proc begin end what
1 P_1 1 5 compiling A
2 P_1 20 19 compiling B
3 P_1 23 21 linking A
4 P_2 3 4 compiling C
5 P_2 5 9 compiling D
6 P_3 8 100 compiling E
>
我该怎么做?
答案 0 :(得分:3)
这样的东西?
library(ggplot2)
ggplot(df, aes(x=begin, xend=end, y=proc, yend=proc, colour=what)) +
geom_segment(size=5)