0
我有一個數據幀(可以轉換爲陣列,反之亦然爲了方便的任務),其看起來像迭代繪製數據幀與ggplot中的R
ID FACTOR VAL1 VAL2 VAL3 VAL4
Apple Fruits 0.0056 -0.0025 0.0039 -0.0037
Orange Fruits 0.0067 -0.0039 0.0023 -0.0021
Carrot Veggies 0.008 -0.0037 0.0095 -0.007
Spinach Veggies 0.0067 -0.0086 0.0024 -0.0042
Cucumber Veggies 0.0056 -0.0049 -0.0202 -0.0099
Grapes Fruits 0.0055 -0.0044 0.0028 -0.0049
我希望能夠繪製VAL1
到在由列FACTOR
,例如VAL1~VAL2
,VAL1~VAL3
,VAL~VAL4
,VAL2~VAL3
,VAL2~VAL4
,VAL3~VAL4
值分解所有組合VAL4
,全部由水果或蔬菜中ggplot
因素。
此數據在文件data.txt中。
我的代碼:
val = read.table("data.txt",sep="\t",header=TRUE)
df_val<-as.data.frame(val)
headers<-vector()
for (name in names(df_val)) {
headers<-union(headers,c(name))
}
plots<- vector()
for (i in 3:5) {
plots=union(plots,c(ggplot(df_val, aes(headers[i], headers[i+1])) + geom_point(aes(colour = factor(FACTOR)))))
}
multiplot(plots,cols=3)
當我執行這個,我沒有得到任何結果,除了一些錯誤,如
mapping: colour = factor(FACTOR)
geom_point: na.rm = FALSE
stat_identity:
position_identity: (width = NULL, height = NULL)
有一個簡單的辦法呢?
將'plots'設置爲'list()',而不是'vector()'。你不需要'union()',只需'c()'。 – Gregor
我想將所有圖形追加到列表中。所以結合。 – Vignesh
我明白你想要做什麼。 「工會」對它來說是一個糟糕的工具。你應該有'plots = list()',然後'plots = c(圖,ggplot(...))'。或者甚至更好''[[i]] = ggplot(...)''。 – Gregor