使用dplyr更改新值

时间:2019-04-17 15:10:51

标签: r dplyr

使用dplyr更改新列,我遇到了一些问题。

iris

iris %>% filter(Sepal.Length < 4.5) %>% mutate(new_col = 1)

iris # doesn't make new_col.

iris <- iris %>% filter(Sepal.Length < 4.5) %>% mutate(new_col = 1) # it was not result I want.

我想新建一列,但运行光圈却不起作用。

0 个答案:

没有答案