gpt4 book ai didi

Julia 相当于 R 的 ?? (双问号 help.search 所有包)

转载 作者:行者123 更新时间:2023-12-03 17:09:01 24 4
gpt4 key购买 nike

R你可以search the documentation通过输入问号 ?或双问号 ?? . 你如何在 Julia REPL 的手册中搜索字符串?

>?first
No documentation for ‘first’ in specified packages and libraries:
you could try ‘??first’

>??first
R控制台打开一个浏览器窗口:
enter image description here
RStudio该页面在 IDE 中打开。

The help() function and ? help operator in R provide access to thedocumentation pages for R functions, data sets, and other objects,both for packages in the standard R distribution and for contributedpackages.


help() 函数和 ?仅当您已经知道要使用的函数的名称时,运算符才有用。其他搜索方式包括 apropos??

The apropos() function searches for objects, including functions,directly accessible in the current R session that have names thatinclude a specified character string.


The ?? operator is a synonym for help.search(). The help.search()function scans the documentation for packages installed in yourlibrary. The argument to help.search() is a character string or regular expression.


附言我打算回答我自己的问题。

最佳答案

Julia 有类似的 interactive utilties . Julia 的主要文档字符串搜索工具名为 apropos。 .
要在文档中搜索有关 Julia 中“first”的信息,您可以使用 apropos("first")或等同于 ?"first" .因此?"first"大致相当于R?? .
要搜索函数和方法,您可以键入一个问号 ? , 就像 R .在 Julia REPL 中,当您键入问号时,提示会变为问号。如果您键入 "first"它搜索字符串,而如果您键入 first没有引号,您可以搜索当前加载的模块导出的变量。
插图:

help?>"first"  

# or equivalently:

julia>apropos("first")
enter image description here
help?>first 
enter image description here
如果您搜索字符串,则忽略大小写。如果要在 DataFrames 内搜索模块,类型 using DataFrames在搜索之前。
这也适用于 Visual Studio CodeAtom :
enter image description here

关于Julia 相当于 R 的 ?? (双问号 help.search 所有包),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67527985/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com