gpt4 book ai didi

r - Package development : How can I import data from a package, 对其进行改造,并作为数据集导出?

转载 作者:行者123 更新时间:2023-12-01 07:57:35 25 4
gpt4 key购买 nike

如何使用 roxygen2 框架从另一个包导入数据集,执行更改,然后将数据集重新导出为我自己的包中的数据集?

根据我导出数据集的经验,可以通过保存 .rda 文件(通常使用 save 函数)手动执行此过程。我想让它更具动态性,因此如果其他包在人们更新依赖包时更新数据集,我的包将相应地更新其数据集。

例如,假设我想从 tidytext 导入 stop_words 数据集,删除 SMART 类型的词典并重新导出为 停用词2。有没有办法做到这一点?当 data(package = 'MyPackage') 显示重新导出的数据集时,我会知道此解决方案有效。

我的尝试不起作用(即使数据可访问,data(package = 也不起作用):

#' Various lexicons for English stop words
#'
#' English stop words from three lexicons, as a data frame.
#' The onix sets are pulled from the tm package. Note
#' that words with non-ASCII characters have been removed. THis
#' is a reimport from the \pkg{tidytext} package's \code{stop_words}
#' data set but with the SMART lexicon filtered out.
#'
#' @format A data frame with 578 rows and 2 variables:
#' \describe{
#' \item{word}{An English word}
#' \item{lexicon}{The source of the stop word. Either "onix" or "snowball"}
#' }
#' @usage data(sam_i_am2)
#' @export
stop_words2 <- tidytext::stop_words[tidytext::stop_words[['lexicon']] != 'SMART', ]

最佳答案

我不认为这是可能的,因为 data() 只在子目录 data/ 中搜索,这不是重新导出放置数据对象的地方。

但是如果您放弃这个目标,那么您仍然可以访问新数据对象,就好像它是一个“惰性加载”数据集。但需要明确的是,这不适用于 data(stop_words2, package = "MyPackage")

#' Various lexicons for English stop words
#'
#' English stop words from three lexicons, as a data frame. The onix sets are
#' pulled from the tm package. Note that words with non-ASCII characters have
#' been removed. This is a reimport from the \pkg{tidytext} package's
#' \code{stop_words} data set but with the SMART lexicon filtered out.
#' @inherit tidytext::stop_words title description source references
#' @export
stop_words2 <- tidytext::stop_words[tidytext::stop_words[["lexicon"]] != "SMART", ]

请注意 roxygen2 使用回收原始文档组件。

考虑使用 stopwords package ,其中包含 SMART 字词等等。

关于r - Package development : How can I import data from a package, 对其进行改造,并作为数据集导出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42546514/

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