### Install plotthis from CRAN Source: https://github.com/pwwang/plotthis/blob/master/README.md Use install.packages to install the stable version of plotthis from CRAN. ```r install.packages("plotthis") ``` -------------------------------- ### Install plotthis from GitHub (devtools) Source: https://github.com/pwwang/plotthis/blob/master/README.md Install the latest development version of plotthis from GitHub using the devtools package. ```r devtools::install_github("pwwang/plotthis") ``` -------------------------------- ### Install plotthis from GitHub (remotes) Source: https://github.com/pwwang/plotthis/blob/master/README.md Install the latest development version of plotthis from GitHub using the remotes package. ```r remotes::install_github("pwwang/plotthis") ``` -------------------------------- ### Install plotthis using Conda Source: https://github.com/pwwang/plotthis/blob/master/README.md Install plotthis via Conda for environments managed with Anaconda or Miniconda. ```bash conda install pwwang::r-plotthis ``` -------------------------------- ### Plotthis Development Workflow Commands Source: https://github.com/pwwang/plotthis/blob/master/CLAUDE.md Commands for regenerating documentation, running tests, checking the package, and building/installing locally using devtools. ```bash # Regenerate NAMESPACE and .Rd files Rscript -e 'devtools::document()' # Run all tests Rscript -e 'devtools::test()' # Run a single test file Rscript -e 'testthat::test_file("tests/testthat/test-barplot.R")' # Check the package (full CRAN check) Rscript -e 'devtools::check()' # Build and install locally Rscript -e 'devtools::install()' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.