我看到这个符号:%<>%
,在某人的R代码中,无法通过Google搜索找到它的功能。任何人都可以帮忙解释一下吗?
答案 0 :(得分:1)
由%<>%
,%in%
,%over%
,%*%
等百分比符号围绕的函数称为infix operators,并且如@所指出的那样RichardScriven可以在手册中找到,用反引号或引号括起来:?"%<>%"
或?`%<>%`
都应该带你到帮助页面GitHub version here; here's来源代码)
您可以定义自己的 a la :
"%+%" <- function(s1, s2) paste0(s1, s2)
"%U%" <- function(A, B) union(A, B)
等等。 {Hadley Wickham的书中Here's the relevant chapter。