开发者

In R: how to access the index in library(help = "pcks_name")?

开发者 https://www.devze.com 2023-03-18 23:41 出处:网络
I would like to 开发者_运维知识库access the list of functions and their descriptions that is given in

I would like to 开发者_运维知识库access the list of functions and their descriptions that is given in

library(help = "pcks_name")

My ideal would be to have this list exported into a file (txt, html, pdf).

Thanks.


You could do

res <- library(help="MASS")
class(res) <- "list"

and access res$info[[2]]

0

精彩评论

暂无评论...
验证码 换一张
取 消