Русские видео

Сейчас в тренде

Иностранные видео


Скачать с ютуб How to Install a package not available in R version? в хорошем качестве

How to Install a package not available in R version? 2 года назад


Если кнопки скачивания не загрузились НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием, пожалуйста напишите в поддержку по адресу внизу страницы.
Спасибо за использование сервиса savevideohd.ru



How to Install a package not available in R version?

#Installing R Packages Not Hosted on CRAN 1.quantstrat install.packages("devtools") require(devtools) install_github("braverock/FinancialInstrument") install_github("joshuaulrich/xts") install_github("braverock/blotter") # dependency install_github("braverock/quantstrat") library(quantstrat) #2.NBSplice #3 ncdfFlow #4 nanotatoR #First, you need to install the BiocManager package install.packages("BiocManager") library(BiocManager) Installing NBSplice,ncdfFlow and nanotatoR packages at once BiocManager::install("NBSplice","ncdfFlow","nanotatoR") #5 agricoale if (!require("remotes")) install.packages("remotes") remotes::install_github("myaseen208/agricolae") #6.ggord Enable the r-universe repo options(repos = c( fawda123 = 'https://fawda123.r-universe.dev', CRAN = 'https://cloud.r-project.org')) Install ggord install.packages('ggord') #7 # Install ggpubr if(!require(devtools)) install.packages("devtools") devtools::install_github("kassambara/ggpubr") #8 Install ggbiplot library(devtools) install_github("vqv/ggbiplot") #9 foobarbaz library(remotes) install_github("cran/foobarbaz") #10 flipPlots library(devtools) install_github("Displayr/flipPlots")

Comments