我知道有一些帖子 这个主题。但他们没有帮助我。我只使用一个数据集,但仍然会发生此错误。
ggplot2 doesn't know how to deal with data of class uneval
wellmixed<-read.table("param_analysis_Spatial.txt",skip=1)
wellmixed[is.na(wellmixed)] <- 0
wellmixed %>%
group_by(V2) %>%
arrange(V1) %>%
mutate(ymin = (V1 + lag(V1))/2
, ymax = (V1 + lead(V1))/2
, xmin = V2 - 0.005
, xmax = V2 + 0.005
, ymin = ifelse(is.na(ymin), 0, ymin)
, ymax = ifelse(is.na(ymax), 0.16, ymax)
) %>%
+ ggplot(aes(xmin = xmin
, xmax = xmax
, ymin = ymin
, ymax = ymax
, fill = V7)) +
geom_rect(data=wellmixed)
是因为%&gt;%?
答案 0 :(得分:0)
当ggplot()中的第一个参数不是data.frame时,会收到ggplot2 doesn't know how to deal with data of class uneval
消息。
如果ggplot()中的第一个参数是你的美学,那么你需要写:
ggplot(mapping = aes(...your aesthetics...) )