Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我编写 R 包时,我列出了几个包Import而不是Depend.
Import
Depend
我的问题是,当人们从源代码 ie 安装我的包时install.packages('pkgNmae', repo=NULL, type="source"),他们的计算机没有预先安装我导入的必要包,该命令会install.packages识别这一点吗?安装后用户可以使用我的包吗?
install.packages('pkgNmae', repo=NULL, type="source")
install.packages
我不确定我是否列出了这些软件包,Import如果需要,它们会自动安装。谢谢!
是的,如果需要,它们会自动安装。导入和依赖在安装时是相同的——它们只是在包加载时的行为上有所不同。