我正在使用ggplot2
说明。这是我的第一个显示csv文件数据的代码
w <- read.csv(file="test.csv", head=TRUE, sep=",")
p <- ggplot(data=w, aes(x=start, y=current, color=cpu))
p + layer(geom="point", geom_params=list(size=2))
这是文件的一部分
start,end,active,duration,current,previous,cpu,arg1,arg2,arg3,arg4,arg5,arg6,
525255,0,0,0,__sto,1756,1757,0,0,0,0,0,0,
525292,525306,14,14,s_w,1756,0,0,1,0x36cd9000,29,0x00000000,29,
525313,525317,4,4,s_w,1756,0,0,1,0x36cd9000,27,0x00000000,27,
525323,0,0,0,__sto,1751,1756,0,0,0,0,0,0,
所以为了运行它,我遵循了这些需要的步骤
1-安装ggplot2
包
install.packages(&#34; GGPLOT2&#34)
2-将ggplot2
库加载到R会话
库(&#34; GGPLOT2&#34)
3-运行存储在文件trace.r
源(&#34; trace.r&#34)
但没有任何显示。
任何关于缺少什么的想法都会受到赞赏