在ggplot aes()函数R中有什么用?

时间:2018-02-08 01:09:30

标签: r

我有一个代码如下。 n是针对y轴定义的。这里的意思是什么。

orders %>% count(order_number) %>% ggplot(aes(order_number,n))  

此致 菲利普

1 个答案:

答案 0 :(得分:0)

另一种写作方式是

data <- orders %>% count(order_number)

ggplot(data, aes(x = order_number,y = n))

所以在这里你创建了两列,order_number和n的数据。然后,您使用ggplot绘制该数据,并在aes括号中为x轴指定一个变量,为y轴指定一个变量。