- Joined
- Jun 27, 2017
- Professional Status
- Certified General Appraiser
- State
- California
If you don't want to wait for CRAN to install earthUI into its library, you should be able to install directly from the Github public repository:
⏺ Here are the install instructions by OS:
macOS
# Required packages (installed automatically, but just in case)
install.packages(c("earth", "ggplot2", "readxl", "shiny"))
# Recommended optional packages (for full functionality)
install.packages(c("bslib", "callr", "DBI", "DT", "jsonlite", "knitr", "plotly", "quarto", "rmarkdown", "RSQLite", "showtext", "sysfonts"))
# Install earthUI
remotes::install_github("wcraytor/earthUI", subdir = "pkg")
#No system libraries needed — Xcode command line tools (xcode-select --install) covers everything.
Windows
1. Install https://cran.r-project.org/bin/windows/Rtools/ (matches your R version)
2. Then in R:
install.packages(c("earth", "ggplot2", "readxl", "shiny"))
install.packages(c("bslib", "callr", "DBI", "DT", "jsonlite", "knitr", "plotly", "quarto", "rmarkdown", "RSQLite", "showtext", "sysfonts"))
remotes::install_github("wcraytor/earthUI", subdir = "pkg")
Linux (Ubuntu/Debian)
# System libraries needed by R packages
sudo apt-get install -y \
libcurl4-openssl-dev \
libssl-dev \
libxml2-dev \
libfreetype6-dev \
libpng-dev
\ libfontconfig1-dev
Then in R (or RStudio)
install.packages(c("earth", "ggplot2", "readxl", "shiny"))
install.packages(c("bslib", "callr", "DBI", "DT", "jsonlite", "knitr", "plotly", "quarto", "rmarkdown", "RSQLite", "showtext", "sysfonts"))
remotes::install_github("wcraytor/earthUI", subdir = "pkg")
Linux (Fedora/RHEL)
sudo dnf install -y \
libcurl-devel \
openssl-devel \
libxml2-devel \
freetype-devel \
libpng-devel \
fontconfig-devel
Then in R (or RStudio)
install.packages(c("earth", "ggplot2", "readxl", "shiny"))
install.packages(c("bslib", "callr", "DBI", "DT", "jsonlite", "knitr", "plotly", "quarto", "rmarkdown", "RSQLite", "showtext", "sysfonts"))
remotes::install_github("wcraytor/earthUI", subdir = "pkg")
⏺ Here are the install instructions by OS:
macOS
# Required packages (installed automatically, but just in case)
install.packages(c("earth", "ggplot2", "readxl", "shiny"))
# Recommended optional packages (for full functionality)
install.packages(c("bslib", "callr", "DBI", "DT", "jsonlite", "knitr", "plotly", "quarto", "rmarkdown", "RSQLite", "showtext", "sysfonts"))
# Install earthUI
remotes::install_github("wcraytor/earthUI", subdir = "pkg")
#No system libraries needed — Xcode command line tools (xcode-select --install) covers everything.
Windows
1. Install https://cran.r-project.org/bin/windows/Rtools/ (matches your R version)
2. Then in R:
install.packages(c("earth", "ggplot2", "readxl", "shiny"))
install.packages(c("bslib", "callr", "DBI", "DT", "jsonlite", "knitr", "plotly", "quarto", "rmarkdown", "RSQLite", "showtext", "sysfonts"))
remotes::install_github("wcraytor/earthUI", subdir = "pkg")
Linux (Ubuntu/Debian)
# System libraries needed by R packages
sudo apt-get install -y \
libcurl4-openssl-dev \
libssl-dev \
libxml2-dev \
libfreetype6-dev \
libpng-dev
\ libfontconfig1-dev
Then in R (or RStudio)
install.packages(c("earth", "ggplot2", "readxl", "shiny"))
install.packages(c("bslib", "callr", "DBI", "DT", "jsonlite", "knitr", "plotly", "quarto", "rmarkdown", "RSQLite", "showtext", "sysfonts"))
remotes::install_github("wcraytor/earthUI", subdir = "pkg")
Linux (Fedora/RHEL)
sudo dnf install -y \
libcurl-devel \
openssl-devel \
libxml2-devel \
freetype-devel \
libpng-devel \
fontconfig-devel
Then in R (or RStudio)
install.packages(c("earth", "ggplot2", "readxl", "shiny"))
install.packages(c("bslib", "callr", "DBI", "DT", "jsonlite", "knitr", "plotly", "quarto", "rmarkdown", "RSQLite", "showtext", "sysfonts"))
remotes::install_github("wcraytor/earthUI", subdir = "pkg")
