gpt4 book ai didi

r - 创建新 R 包时如何修复 `no visible global function definition`

转载 作者:行者123 更新时间:2023-12-05 06:00:06 25 4
gpt4 key购买 nike

我尝试构建一个使用库 tidyverse 的 R 包。

描述文件如下所示:

Package: myFirstPackage
Title: A initial package
Version: 0.0.1.0
Authors@R:
person(given = "Test",
family = "Test",
role = c("aut", "cre"),
email = "first.last@example.com",
comment = c(ORCID = "YOUR-ORCID-ID"))
Description: a description.
Imports: tidyverse
License: GPL-2
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1

所以我将 tidyverse 添加到 Imports 部分。

我的 R 代码如下所示:

myfunction<-function(){

x<-tibble(
id = c(1, 2, 3, 4),
name = c("Louisa", "Jonathan", "Luigi", "Rachel"),
female = c(TRUE, FALSE, FALSE, TRUE)
)
x %>% pull(id)
}

#' MyDemoFunction
#'
#'
#' @import tidyverse
#' @export

say_hello<-function(){
cat("here1")
myfunction()
}

同样在这里,我有导入。

我正在使用 R-Studio,当我按下 Check 时,我得到:

> checking R code for possible problems ... NOTE
myfunction: no visible global function definition for 'tibble'
myfunction: no visible global function definition for '%>%'
myfunction: no visible global function definition for 'pull'
myfunction: no visible binding for global variable 'id'
Undefined global functions or variables:
%>% id pull tibble

你找到项目的repo here .

that question问题是通过逐个函数导入解决的,但我想完整导入包:我只是想使用 tidyverse 的所有函数而不明确定义它们中的每一个。在问题here有人提到导入必须在我已有的描述中!

最佳答案

我的清洁检查解决方案。您需要 R 4.1.0 才能使用 |> 运算符。

plainSrc.R:

####This File represents a package used for Index Management

### Overall approach of this package ###
# In order to avoid a static hard coding of the index members
# we use a web-based approach based on finanzen.de from there we
# get the index members for which we offer the data.

#' @import dplyr
#'
myfunction<-function(){

x <- dplyr::tibble(
id = c(1, 2, 3, 4),
name = c("Louisa", "Jonathan", "Luigi", "Rachel"),
female = c(TRUE, FALSE, FALSE, TRUE)
)
x |> dplyr::pull(one_of("id"))
}

#' MyDemoFunction
#'
#'
#' @export
#'
say_hello<-function(){
cat("here1")
myfunction()
}

并将 DESCRIPTION 中的 Imports 从 tidyverse 更改为 dplyr。

关于r - 创建新 R 包时如何修复 `no visible global function definition`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67862802/

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