我正在尝试使用以下代码绘制具有多个方面的堆积条形图:
dat <- read.csv(file="./fig1.csv", header=TRUE)
dat2 <- melt(dat, id.var = "id")
ggplot(dat2, aes(x=id, y=value, fill = variable)) +
geom_bar(stat="identity") +
facet_grid(. ~ col1) +
geom_col(position = position_stack(reverse = TRUE))
以下是我的数据的最小化示例:
id col1 col2 col3 col4 col5
1 1 0.2 0.1 0.1 0.1
2 1 0.2 0.1 0.2 0.1
3 1 0.2 0.2 0.2 0.1
4 2 0.1 0.1 0.2 0.1
5 2 0.1 0.1 0.1 0.2
但是,我一直收到以下错误。我认为问题来自facet_grid(. ~ col1)
,更具体地说是使用col1
。
Error in combine_vars(data, params$plot_env, cols, drop = params$drop) :
At least one layer must contain all variables used for facetting
有谁知道如何解决这个问题?
答案 0 :(得分:1)
col1
函数中不包含melt
作为变量,因此它将与其余列一起融合。只需在col1
函数中包含melt
作为变量。
dat2 <- melt(dat, id.var=c("id", "col1"))