Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将数据帧通过管道传递给参数管道点的函数?
mpg %>% rbind(., . %>% rev())
rep(xi, length.out = nvar) 中的错误:尝试复制“closure”类型的对象
另一个例子:
mpg %>% { . %>% arrange(manufacturer) }
具有以下组件的功能序列: 安排(。,制造商) 使用“功能”来提取各个功能。
具有以下组件的功能序列:
使用“功能”来提取各个功能。
将要使用管道的点括在括号中,例如(.):
(.)
mpg %>% rbind(., (.) %>% rev())
或者,对于 lambda 函数:
mpg %>% { (.) %>% arrange(manufacturer) }