--- title: "Get started with washr" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Get started with washr} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>", eval = FALSE ) ``` The `washr` package offers an easy-to-use toolkit to publish your WASH data. This guide provides simple steps to get the package up and running on your machine. To install the latest stable version of `washr` from CRAN, use the following command in your R console: ```{r} install.packages("washr") ``` If you’d like to try out the latest features and improvements, you can install the development version of `washr` from GitHub. Make sure you have the `remotes` package installed: ```{r} # Install washr from GitHub remotes::install_github("openwashdata/washr") ``` After installing `washr`, you can start using its functions in your WASH data publication workflow! For a detailed guide on how to get set up and an overview of the package features, visit the full guide [here](https://global-health-engineering.github.io/ghedatapublishing/). Happy coding with `washr`!