3
我試圖在ggplot2
中使用grid.text
將文本框添加到我的圖中。該圖自行運行良好,但是當我添加grid.text
命令時,出現錯誤「不知道如何將o添加到圖」。如果使用last_plot()
,我仍然會收到錯誤信息,但該信件會顯示在圖表上 - 但不會隨着剩下的圖表保存。數據集和命令如下:錯誤將grid.text添加到ggplot
foldchange order
1.583591249 1c
1.973c
1.339505031 1c
0.776845711 2c
1.004515622 2c
1.225864907 2c
13.27371225 3c
7.599476289 3c
10.74132453 3c
3.347536996 4c
4.286202467 4c
3.612756449 4c
17.40825874 5c
20.61039144 5c
ggplot(test, aes(order, foldchange)) + geom_point() #this part works fine
+ grid.text(label="a", x=.18, y=.9) + #this part gives me the error
在此先感謝!
謝謝!太棒了! –