0
謝謝您的閱讀。我發現我無法從我現有的數據中得出線圖如下:如何使用data.frame文件在ggplot中繪製線條圖?
a=structure(list(ID = structure(1:3, .Names = c("V2", "V3", "V4"
), .Label = c(" day1", " day2", " day3"), class = "factor"),
Protein1 = structure(c(3L, 1L, 2L), .Names = c("V2",
"V3", "V4"), .Label = c("-0.651129553", "-1.613977035", "-1.915631511"
), class = "factor"), Protein2 = structure(c(3L,
1L, 2L), .Names = c("V2", "V3", "V4"), .Label = c("-1.438858662",
"-2.16361761", "-2.427593862"), class = "factor")), .Names = c("ID",
"Protein1", "Protein2"), row.names = c("V2",
"V3", "V4"), class = "data.frame")
我需要的是繪製如下圖:
我曾嘗試以下代碼但結果不好;
qplot(ID, Protein1, data=a, colour=ID, geom="line")
另外:
a1<-melt(a, id.vars="ID")
ggplot(a1,aes(ID,value))+ geom_line()+geom_point()
所以非常感謝您的關心。
非常感謝。你能幫我把這些圖例添加到劇情的內容中嗎? – Sadegh
如果您只想移動圖例(底部,右側),請使用: '+ theme(legend.justification = c(1,0),legend.position = c(1,0))' 如果您想要只寫標籤: '+ geom_text(data = a1 [a1 $ ID ==「day3」,],aes(label = variable),vjust = -1,hjust = 0)'。 要小心,我看到ID的級別是「day1」,空白字符。 – bVa
完美。謝謝。還有一點。你知道怎麼可能每行添加一個標籤而不是每個標籤的標籤?一個用於紅線的「Protein1」字和一個用於藍線的「Protein2」字。 – Sadegh