パッケージを作成しようとしています。関数の1つにggplot2
ライブラリを使用します。rパッケージのインポートでインポートがインポートされない
:私はデベロッパーツールからload_all()
またはdocument()
を実行するたびに
Package: MyPackage
Title: What the Package Does (one line, title case)
Version: 0.0.0.9000
[email protected]: person("Sebastian", "Zeki", email = "[email protected]", role = c("aut", "cre"))
Description: What the package does (one paragraph).
Depends: R (>= 3.4.0)
Imports:
ggplot2
License: What license is it under?
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1
以下のようDESCRIPTION
にImports:ggplot2
を
#' @param x the dataframe
#' @param Column the dataframe
#' @param Code the dataframe
#' @keywords Appointment filtering
#' @import ggplot2
#' @importFrom magrittr '%>%'
#' @importFrom dplyr arrange group_by summarise
#' @import rlang
#' @export
と書かれたが、私はエラーを取得します:
Error in ggplot(....) :
could not find function "ggplot"
私はNAMESPACE
ファイルがggplotが含まれていないことに気づいたが、本他の輸入を持っていませんが、私は手動でNAMESPACE
に追加したときに、私はというエラーを取得しています
Error in importIntoEnv(pkgenv, exports, nsenv, exports) :
cannot add bindings to a locked environment
私は何を見逃していますか?