Code to Install and run Rcommander, togaware's rattle, JGD Deducer, (ggquickeda and ggraptR). and swirl and MLstudio
new.packages <- c("Rcmdr","RcmdrMisc","car","rattle","acepack","htmlTable","cellranger","ggraptR","ggquickeda","esquisse",""ggplotAssist,"ggThemeAssist","JGR","Deducer","DeducerExtras","swirl")
new.packages <- new.packages[!(new.packages %in% installed.packages()[,"Package"])]
if(length(new.packages)) install.packages(new.packages, dependencies = c("Depends", "Imports", "LinkingTo", "Suggests"))
library(Rcmdr)
Install all R commander plugins
#Obtain names of all packages on CRAN
names.available.packages <- rownames(available.packages())
#Extract packages names that contain Rcmdr
Rcmdr.related.packages <- names.available.packages[grep("Rcmdr", names.available.packages)]
Rcmdr.related.packages
#Install these packages
new.packages <- Rcmdr.related.packages[!(Rcmdr.related.packages %in% installed.packages()[,"Package"])]
if(length(new.packages)) install.packages(new.packages, dependencies = c("Depends", "Imports", "LinkingTo", "Suggests"))
rattle and deducer
library(rattle)
rattle()
library(JGR)
JGR()
ggploting GUIs
library(ggraptR)
ggraptR::ggraptR()
library(ggplot2)
p <- ggplot(mtcars, aes(x = hp, y = wt))# + geom_point() + geom_smooth()
names(p2) # will show you which objects are available.
plot(p2) # shows the updated plot (it is available in the first element of p2)
library("swirl");swirl()
#install.packages("sos"); library(sos); findFn("plotPairs"); vignette("sos")
MLstudio
#install.packages("devtools")
devtools::install_github("RamiKrispin/MLstudio")
#Launch the MLstudio
runML()
Comments
http://stagraph.com/Post?Id=31&Title=Powered+By+R R GUIs section. Need to look into JASP, R RED, and Radiant.
I wish Red R had been alive. It was best flow based programming for R just like orange canvas.though I have installers but discontinuation causes it bad for mention.
https://rstudio.github.io/learnr/#overview learnr will eclipse swirl
To self, look into: https://www.r-bloggers.com/introducing-xda-r-package-for-exploratory-data-analysis/ everything here https://sdrakulich.com/lil-bits/r-packages https://cran.r-project.org/web/packages/naniar/index.html https://github.com/mkearney/tidyversity
and more https://paulvanderlaken.com/2017/08/10/r-resources-cheatsheets-tutorials-books/ https://www.reddit.com/r/rstats/comments/6o9v9h/whats_your_favorite_relatively_obscure_r_package/ http://r-statistics.co/Top50-Ggplot2-Visualizations-MasterList-R-Code.html http://r-statistics.co/Top50-Ggplot2-Visualizations-MasterList-R-Code.html https://medium.com/activewizards-machine-learning-company/top-20-r-libraries-for-data-science-in-2018-infographic-956f8419f883
https://www.reddit.com/r/rstats/comments/8mpy8c/musthave_r_packages/