简体   繁体   中英

'Object not found' error when loading party package in R

I'm trying to load the party package in R. I have all the relevant dependencies installed, but when I type library(party) , I get the error:

Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) : object 'vI' not found
Error: package or namespace load failed for ‘party’

I've never seen an error like this when loading a package before, and I'm really at a loss. Any help would be greatly appreciated.

Sys.getenv("vI_HOME")

if(Sys.getenv("vI_HOME")!="")    Sys.setenv(vI_HOME="")

library("party")

Please install party package separately . So use:

install.packages("party", dependencies=TRUE) 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM