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

后端 未结 2 1271
感动是毒
感动是毒 2020-12-21 09:58

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:

Er         


        
相关标签:
2条回答
  • 2020-12-21 10:42

    Please install party package separately. So use:

    install.packages("party", dependencies=TRUE) 
    
    0 讨论(0)
  • 2020-12-21 10:48
    Sys.getenv("vI_HOME")
    
    if(Sys.getenv("vI_HOME")!="")    Sys.setenv(vI_HOME="")
    
    library("party")
    
    0 讨论(0)
提交回复
热议问题