how to install the packages in R from github and R-forge

install.packages('devtools')
library(devtools)
install_github("cran/FinTS")
library(FinTS)

install package from R-forge

 install.packages("xtsExtra", repos="http://R-Forge.R-project.org")

猜你喜欢

转载自blog.csdn.net/qq_26948675/article/details/81051740