作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 RStudio 中,当我选中和取消选中一个包时,我看到以下命令。
library("ggplot2", lib.loc="~/R/win-library/3.4")
detach("package:ggplot2", unload=TRUE)
最佳答案
From R's official help pages (另见 R Packages - Namespaces):
Anything needed for the functioning of the namespace should be handled at load/unload times by the .onLoad and .onUnload hooks.
For example, DLLs can be loaded (unless done by a useDynLib directive in the ‘NAMESPACE’ file) and initialized in .onLoad and unloaded in .onUnload.
Use .onAttach only for actions that are needed only when the package becomes visible to the user (for example a start-up message) or need to be run after the package environment has been created.
library(pkg)
完成的fun()
语法 pkg::fun()
语法)pkg::fun()
关于r - [R] 中加载和附加的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44341788/
我是一名优秀的程序员,十分优秀!