gpt4 book ai didi

r - 在我创建的 R 数据包中找不到数据集

转载 作者:行者123 更新时间:2023-12-04 02:43:58 25 4
gpt4 key购买 nike

我正在构建一个包含多个数据集的 R 包。我将数据集保存为我的“数据”文件夹中的 .RData 对象,并且每个数据集都有使用 roxygen2 生成的文档。当我安装包时,加载它并尝试调用数据集,

devtools::install_github("jamesmartherus/nhldata")
library(nhldata)

data(teams)

我收到这个错误:

In data("teams") : data set ‘teams’ not found

这是我的 DESCRIPTION 文件的内容:

Package: nhldata
Title: Easy Access to Basic NHL Data
Version: 0.1.0
Authors@R: person("James", "Martherus", email = "james@martherus.com",
role = c("aut", "cre"))
Description: Includes several datasets of NHL statistics including skater, goalie, and team statistics by season.
Depends: R (>= 3.5.0)
License: MIT
LazyData: true
RoxygenNote: 6.1.1
Encoding: UTF-8

这是我的文档文件的最小版本:

\docType{data}
\name{teams}
\alias{teams}
\title{NHL Team Statistics 2007-2019}
\format{A data frame with 362 rows and 28 variables:
\describe{
\item{team}{Team name}
\item{season}{Season}
. . .
}}
\source{
\url{http://corsica.hockey/team-stats/}
}
\usage{
data(teams)
}
\description{
A dataset containing season-level statistics for NHL teams for all
game states (5v5, PP, PK). Includes regular season.
}
\keyword{datasets}

为什么我无法访问数据集?

最佳答案

R 更喜欢它的数据集(./data/ 中的东西)有一个文字 .rda 文件结尾。

我克隆了你的代码库并运行了 devtools::check(...),除此之外还看到了:

   Subdirectory 'data' contains no data sets.

当我将所有 .Rdata 文件重命名为 .rda 并重新加载时,它可以工作。

关于r - 在我创建的 R 数据包中找不到数据集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58030750/

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