标签: 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.
我想新建一列,但运行光圈却不起作用。