所以我有一个函数,可以从几个向量中创建一个小标题。它工作正常,但是当我尝试运行devtools :: check()来检查我的软件包时,出现以下错误:
如果我没有输入@importFrom语句,而只是tidyverse的Depends,则会出现错误:
Error in tibble(key = replace, val = replaceValue) :
could not find function "tibble"
如果我将@importFrom tibble tibble放入,则会收到错误消息:
Namespace dependency not required: 'tibble'
如何在我的程序包中将此功能作为自己的功能的一部分:
现状:
#' @param inputString The text string to process
#' @param list of words to iterate through
#' @keywords Withdrawal
#' @importFrom fuzzyjoin regex_left_join
#' @importFrom tibble tibble
#' @export
myfunction<-function(inputString,list){
d1 <- tibble(key = replace, val = replaceValue)
}