一、错误描述Error in value[[3L]](cond) : Package ‘ggtree’ version 3.6.2 cannot be unloaded: Error in unloadNamespace(package) : 名字空间‘ggtree’是由‘ggtreeExtra’引进的,因此无法将之卸下 二、错…
使用示例如下: # 加载ggplot2包library(ggplot2)# 使用ggplot2的功能ggplot(mtcars,aes(x=mpg,y=wt))+geom_point()# 使用detach()关闭ggplot2detach("package:ggplot2",unload=TRUE) 1. 2. 3. 4. 5. 6. 7. 8. 需要注意的是,你可以通过unload=TRUE参数指示R将包从搜索路径中移除。 代码示例 下面的...
detach(""package:R包名"",unload=TRUE) #detach: remove it from the search() path of available R objects; unload=T: to attempt to unload the namespace when a package is being detached. 如果要移除所有已加载的包,可参考https://stackoverflow.com/questions/7505547/detach-all-packages-while-worki...
paste0( )函数:来凝结多行字符串: string1 <- "this is a long string + with a ‘\n’ " [1] "this is a long string \nwith \n" #如果赋值时直接在字符串中分行,那么最终会出现一个换行符"\n" a <- paste0('this is the first line ', + 'this is the second line') a [1] "thi...
全选:Ctrl+A 选择:Shift+箭头 删除行:Ctrl+D 撤销:Ctrl+Z 重做:Ctrl+Shift+Z 赋值符:Alt± 代码折叠:Alt+L 代码展开:Shift+Alt+L 保存本脚本:Ctrl+S 保存全部脚本:Ctrl+Alt+S 增加缩进:选中代码后,Tab(可包括多行) 减小缩进:选中代码后,Shift+Tab ...
install.packages(“package_name”): Install a package library(“package_name”): Load and use a package detach(“package_name”, unload = TRUE): Unload a package remove.packages(“package_name”): Remove an installed package from your computer update.packages(oldPkgs = “package_name”): Up...
detach("package: ",unload=TRUE) 2. 数据的相关知识 2.1 数据的基本类型 数字(double/numeric,缩写num) 整数(integer,缩写int):1L,2L... 虚数(complex,缩写cplx):1+2i,3-5i... 逻辑(logic,缩写logi):TRUE,FALSE 文字(character,缩写chr) 可通过以下命令快速查看数据结构(括号内填入相应变量名即可) ...
install_svn()from aSVN repository, install_url()from a URL, and install_version()from a specific version of a CRAN package. 当然一般要在前面加devtools:: if(!require(devtools))install.packages("devtools")devtools::install_github("boxuancui/DataExplorer") ...
detach()detach("package:babynames",unload=TRUE) 四. R 程序控制 判断语句 循环语句 (一) 判断语句: if 语句 if...else 语句 switch 语句 其中, 1. if 语句: 由一个布尔表达式后跟一个或多个语句组成。 if(boolean_expression){//布尔表达式为真将执行的语句} ...
detach("package:R包名", unload = TRUE) 查看R包的版本和详细信息 packageVersion("name") library(help="MASS") sessionInfo("name") R包的更新 # 更新所有的R包 update.packages() update.packages("R包名") 通过上面的函数更新R包,涉及到依赖包的时候容易出错,最好把相关R包卸载后,重新安装 ...