Here we show you two different ways in which you can install the shi18ny
package:
shi18ny
in your Shiny appsThe easiest way to use shi18ny
to internationalize your Shiny apps and make data science more accessible across the world is by installing the package with the devtools::install_github()
function. Note that the devtools
package needs to be installed before you can run this function.
# install.packages("devtools")
devtools::install_github("datasketch/shi18ny")
If you want to contribute to shi18ny
in any of the ways suggested in vignette("contributing")
, the steps to download, build and install the package is as follows:
git clone https://github.com/YOUR-USERNAME/shi18ny.git
shi18ny
that you just created by cloning the repository, for example:
setwd("./path/to/folder/shi18ny")
devtools
package is installed, and then build the package:
devtools::build()
devtools::install()
If you want to contribute to shi18ny
please create a local branch based on the master branch before making any of your changes. For name of this branch, please use the following naming conventions:
feature/name_of_feature
fix/name_of_fix
misc/name_of_change