为什么这行代码中缺少“映射”一词?

why is the word 'mapping' missing in this line of code?

提问人:Maya 提问时间:10/19/2023 更新时间:10/19/2023 访问量:41

问:

我正在学习如何使用 ggplot 函数,我一直在学习 mapping=aes(x=x 变量,y=y 变量),但在下面的代码中使用 facet_wrap 函数时,单词映射完全丢失,但代码仍然有效。我不知道为什么?谁能解释一下?

`ggplot(data=penguins, aes(x=flipper_length_mm, y=body_mass_g))+
  geom_point(aes(color=species))+
  facet_wrap(~species)`

不知道为什么语法中缺少“映射”一词

r ggplot2 分面

评论


答: 暂无答案