seed_ant <- read.table(...)
thatch_ant <- read.table(...)
seed_mass <- seed_ant$Mass
seed_mass[578:1195] <- 0
thatch_mass <- thatch_ant$Mass
combined <- cbind(seed_mass, thatch_mass)
combined_mass <- data.frame(combined)
ggplot(combined_mass, aes(x=combined, ylilm=c(0,350))) +
geom_histogram(alpha=0.2, position="identity")
我使seed_mass 578:1195,等于0,因为seed_mass和thatch_mass的长度不同。
我遇到ggplot问题,上面的代码返回错误'错误:美学必须是长度1或与数据相同(1195):x,ylilm'
我想通过seed_mass和thatch_mass形成两个直方图,将y轴作为质量的最大值和最小值的范围
但我的ggplot返回错误'美学必须是长度1或与数据相同(1195):x,ylilm'