如何打开函数名称补全功能?

发布于 2024-12-19 10:17:22 字数 246 浏览 1 评论 0原文

在高尔夫运动中,人们试图用尽可能少的字符来完成一个谜题,通常只使用基本语言。在 R 中打高尔夫球的一个 技巧 是使用部分完成,例如 rle(...)$length 可以缩短为 rle(...)$l。如何在 R 中打开函数名称补全,最好使用尽可能少的字符?

In golfing, one tries to complete a puzzle in as few characters as possible, generally using the base language only. One trick for golfing in R is to use partial completion so that e.g. rle(...)$length can be shortened to rle(...)$l. How does one turn on function name completion in R, preferably in as few characters as possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

太傻旳人生 2024-12-26 10:17:22
`?` <- function(object){
    object <- deparse(substitute(object))
    splt <- strsplit(object,"(",fixed=TRUE)[[1]]
    object <- splt[1]
    if(length(splt)>1)
        func <- paste("(",splt[2],collapse="")
    else
        func <- ""
    envs <- sapply(search(),as.environment)
    objs <- do.call("c",lapply(envs,function(x) ls(envir=x,all.names=TRUE)))
    matches <- objs[grep(object,objs)]
    objectMatch <- matches[which.min(nchar(matches))][1]
    res <- eval(parse(text=paste(objectMatch,func,collapse="")), envir = parent.frame())
    res
}

这会重载 help 运算符以提供与所提供的正则表达式匹配的最短对象。例如:

> ?as.ch
function (x, ...)  .Primitive("as.character")
> a<-1
> ?as.ch(a)
[1] "1"
`?` <- function(object){
    object <- deparse(substitute(object))
    splt <- strsplit(object,"(",fixed=TRUE)[[1]]
    object <- splt[1]
    if(length(splt)>1)
        func <- paste("(",splt[2],collapse="")
    else
        func <- ""
    envs <- sapply(search(),as.environment)
    objs <- do.call("c",lapply(envs,function(x) ls(envir=x,all.names=TRUE)))
    matches <- objs[grep(object,objs)]
    objectMatch <- matches[which.min(nchar(matches))][1]
    res <- eval(parse(text=paste(objectMatch,func,collapse="")), envir = parent.frame())
    res
}

This overloads the help operator to provide the shortest object matching the regular expression provided. For example:

> ?as.ch
function (x, ...)  .Primitive("as.character")
> a<-1
> ?as.ch(a)
[1] "1"
能怎样 2024-12-26 10:17:22

受到@Ian 的启发,这是@Ian 答案的高尔夫版本。
概念类似,但使用一些 R 风格的 hack(即调用树操作)

`?`<-function(o)with(x<-as.list(substitute(o)),do.call(apropos(paste("^",deparse(x[[1]]),sep=""))[1],x[-1]))

尝试:

> ?me(1:5)
[1] 3
> a<-1;?as.ch(a)
[1] "1"
> 

对于高尔夫,R 需要 function 的快捷方式。

Inspired by @Ian, here is a golf version of @Ian's answer.
The concept is similar but use some R-ish hack (i.e., call tree manipulation)

`?`<-function(o)with(x<-as.list(substitute(o)),do.call(apropos(paste("^",deparse(x[[1]]),sep=""))[1],x[-1]))

try:

> ?me(1:5)
[1] 3
> a<-1;?as.ch(a)
[1] "1"
> 

for golf, R needs a shortcut of function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文