这个错误通常发生在使用ggplot2绘图时,发现映射的变量和数据的维度不匹配。解决方法是检查映射变量是否正确,并使用函数dplyr::count来汇总数据,以便映射变量和数据匹配。
例如,我们尝试使用ggplot2绘制一个包含gender、age、count三个变量的柱形图。数据示例如下:
library(dplyr)
library(ggplot2)
data <- data.frame(gender = c("male", "female", "male", "male", "female"),
age = c(21, 32, 45, 28, 19))
count_data <- data %>%
count(gender, age) # 汇总数据
ggplot(count_data, aes(x = gender, y = count, fill = age)) + # 映射变量
geom_bar(stat = "identity", position = "dodge")
运行这段代码会出现“Aesthetics must be either length 1 or the same as the data: fill, y and axis1”错误。这是由于映射变量age和汇总后的数据维度不匹配导致的。因此,我们需要将映射变量修改为gender和fill,以便与数据维度匹配。修改后的代码如下:
ggplot(count_data, aes(x = gender, y = n, fill = age)) + # 修改为n
geom_bar(stat = "identity", position = "dodge")
n为使用dplyr::count函数汇总后的计数变量,与y的数据维度匹配。运行修改后的代码将绘制正确的柱形图。
上一篇:Aestheticsmustbeeitherlength1orthesameasthedata:fill,yandaxis1。
下一篇:Aestheticsmustbeeitherlength1orthesameasthedataPurr::Walk