作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对 R 相当陌生,我正在尝试理解 %>%
运算符和“.
”(点)占位符的用法。作为一个简单的示例,以下代码有效
library(magrittr)
library(ensurer)
ensure_data.frame <- ensures_that(is.data.frame(.))
data.frame(x = 5) %>% ensure_data.frame
ensure_data.frame <- ensures_that(. %>% is.data.frame)
data.frame(x = 5) %>% ensure_data.frame
最佳答案
“问题”是 magrittr 有一个匿名函数的简写符号:
. %>% is.data.frame
function(.) is.data.frame(.)
(.) %>% is.data.frame
.
不同的任何其他方式
is.data.frame(.)
与
. %>% is.data.frame
一样富有表现力, 和
data %>%
some_action %>%
lapply(. %>% some_other_action %>% final_action)
data %>%
some_action %>%
lapply(function(.) final_action(some_other_action(.)))
关于r - 结合管道和 magrittr 点 (.) 占位符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36716710/
我是一名优秀的程序员,十分优秀!