在ggplot中使用aes(x = y)是什么意思

时间:2018-11-23 04:46:48

标签: r ggplot2

您可以按照第Code for Workshop: Introduction to Machine Learning with R页的代码进行操作。

gather(bc_data, x, y, clump_thickness:mitosis) %>%
 ggplot(aes(x = y, color = classes, fill = classes)) +
  geom_density(alpha = 0.3) +
  facet_wrap( ~ x, scales = "free", ncol = 3)

让我感到困惑的是aes(x = y)x左侧的=是参数名称,而右侧的y是从gather()向下传递的值?如果是这样,y中原始参数中aes()的值是什么?

了解它的正确方法是什么?

0 个答案:

没有答案