soils
Collection of soil health data visualization and reporting tools, including a RStudio project template with everything you need to generate custom HTML and Microsoft Word reports for each participant in your soil health survey.
Science Score: 26.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.0%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
Collection of soil health data visualization and reporting tools, including a RStudio project template with everything you need to generate custom HTML and Microsoft Word reports for each participant in your soil health survey.
Basic Info
- Host: GitHub
- Owner: WA-Department-of-Agriculture
- License: other
- Language: HTML
- Default Branch: main
- Homepage: https://wa-department-of-agriculture.github.io/soils/
- Size: 177 MB
Statistics
- Stars: 13
- Watchers: 1
- Forks: 2
- Open Issues: 1
- Releases: 1
Created over 3 years ago
· Last pushed 12 months ago
Metadata Files
Readme
License
README.Rmd
--- output: github_document --- # soils {align="right" height="138"} [](https://www.repostatus.org/#active) [](https://CRAN.R-project.org/package=soils) [](https://wa-department-of-agriculture.r-universe.dev/) [](https://wa-department-of-agriculture.r-universe.dev/soils) [](https://github.com/WA-Department-of-Agriculture/soils/actions/workflows/R-CMD-check.yaml) ```{r setup, include=FALSE} knitr::opts_chunk$set( fig.align = "left", dpi = 300 ) ``` # Overview Introducing {soils}: an R package for all your soil health data visualization and reporting needs. {soils} provides an RStudio project template to generate customized, interactive soil health reports. These reports include plots and tables to show how the participant's results compare to simple averages of results from samples of the same crop, same county, and across the entire project. Any scientist leading a soil health survey can use {soils} to create custom reports for all participants. Democratize your data by giving back to the farmers and land managers who contributed soil samples to your soil sampling project. Use these reports to empower each participant to explore and better understand their data. The [Washington State Department of Agriculture](https://agr.wa.gov/departments/land-and-water/natural-resources/soil-health) and [Washington State University](https://soilhealth.wsu.edu/) developed {soils} as part of the [Washington Soil Health Initiative](https://washingtonsoilhealthinitiative.com/). Learn more about {soils} in this [blog post](https://washingtonsoilhealthinitiative.com/2024/03/soils-an-r-package-for-soil-health-reporting/) or this [webinar](https://youtu.be/_8m7fTjSEOk?si=ikrCASdchiB6rDC2). # Requirements The report template uses [Quarto](https://quarto.org/docs/get-started/), which is the [next-generation](https://quarto.org/docs/faq/rmarkdown.html) version of [R Markdown](https://quarto.org/docs/faq/rmarkdown.html). We assume you're using [RStudio v2022.07](https://dailies.rstudio.com/version/2022.07.2+576.pro12/) or later for editing and previewing Quarto documents. We **strongly recommend** you use the [latest release of RStudio](https://posit.co/download/rstudio-desktop/) for support of all Quarto features. You can also download and install the [latest version of Quarto](https://quarto.org/docs/get-started/) independently from RStudio. To render Microsoft Word (MS Word) documents, you must have MS Word installed and activated. **If you're new to Quarto and Markdown formatting syntax, first take a look at the Primers on [Quarto](https://wa-department-of-agriculture.github.io/soils/articles/quarto.html) and [Markdown](https://wa-department-of-agriculture.github.io/soils/articles/markdown.html) to learn how they're used in {soils} and get familiar with their features.** # Installation Install the development version of {soils} from our [r-universe](https://wa-department-of-agriculture.r-universe.dev/) with: ```{r install-r-universe, eval=FALSE} install.packages( "soils", repos = c("https://wa-department-of-agriculture.r-universe.dev") ) ``` Or install from GitHub with [{pak}](https://pak.r-lib.org/index.html): ```{r pak-install, eval=FALSE} # Uncomment the below line if {pak} is not installed. # install.packages("pak") pak::pkg_install("WA-Department-of-Agriculture/soils") ``` Load the example datasets and functions with: ```{r load-soils, eval=FALSE} library(soils) ``` # Usage {soils} was developed to work 'out of the box' so you can immediately install and render an example report. However, you will need to customize and edit content to fit your project. Our recommended workflow is to **1)** create a new {soils} project, **2)** try to render the example reports to make sure everything works on your system, and **3)** customize the template files to use your own data, content, and styling. We provide a series of [Primers and Tutorials](https://wa-department-of-agriculture.github.io/soils/articles/index.html) to prepare and guide you through this workflow. See below for short demo videos and links to the relevant tutorials. ## 1. Create a new {soils} project Follow along in the [**Create a {soils} project**](https://wa-department-of-agriculture.github.io/soils/articles/project.html) tutorial. Choose between two report templates: **English** or **Spanish**. [create-soils.webm](https://github.com/WA-Department-of-Agriculture/soils/assets/95007373/12a01cf7-0efc-4948-b41e-a826dd86e6f6) ## 2. Render the example reports Follow along in the [**Render the example reports**](https://wa-department-of-agriculture.github.io/soils/articles/render-example.html) tutorial. See the [**rendered example reports**](https://wa-department-of-agriculture.github.io/soils/articles/examples.html). ### HTML [render-html.webm](https://github.com/WA-Department-of-Agriculture/soils/assets/95007373/a1f680a0-bed4-495a-aae7-ba85a9fa22e3) ### MS Word [render-docx.webm](https://github.com/WA-Department-of-Agriculture/soils/assets/95007373/a617fee6-a53b-4772-ac3b-bf8d48f8fc5b) ## 3. Create reports with your own data To use your own data, customize the reports for your project, and render all reports, follow along with these tutorials: - [**Import data**](https://wa-department-of-agriculture.github.io/soils/articles/data.html) - [**Customize & write**](https://wa-department-of-agriculture.github.io/soils/articles/customize.html) - [**Render reports**](https://wa-department-of-agriculture.github.io/soils/articles/render.html) [render-reports.webm](https://github.com/WA-Department-of-Agriculture/soils/assets/95007373/b796f674-ed90-4d57-bed3-85b58c399c8f) ## Troubleshooting As you edit the content, errors are bound to occur. Read [**tips and workflows for troubleshooting**](https://wa-department-of-agriculture.github.io/soils/articles/troubleshoot.html) # Acknowledgement and citation The below acknowledgement is automatically embedded in each report: ```{r acknowledgement, echo = FALSE, results='asis'} acknowledgement <- knitr::knit_child( here::here("inst/templates/english/09_acknowledgement.qmd"), quiet = TRUE ) cat(">", acknowledgement) ``` ```{r citation-header, echo=FALSE, results='asis'} citation <- citation("soils") header <- format(citation, style = "citation")[[1]] text <- format(citation, style = "textVersion") cat(header) ``` ```{r citation-text, echo=FALSE, results='asis'} cat(">", text) ``` ## Credits {soils} adapts from existing R project templating resources and packages: - [RStudio Project Templates](https://rstudio.github.io/rstudio-extensions/rstudio_project_templates.html) - [{ratlas}](https://github.com/atlas-aai/ratlas) - [{quartotemplate}](https://github.com/Pecners/quartotemplate) - [{golem}](https://github.com/ThinkR-open/golem/) Text and figures were adapted from [WSU Extension publication #FS378E Soil Health in Washington Vineyards](https://pubs.extension.wsu.edu/soil-health-in-washington-vineyards). Report text and images were translated by Erica Tello, Eber Rivera, and Kate Smith with WSU Food Systems and Skagit County Extension as part of the USDA NRCS Innovation in Conservation program, led by Viva Farms (grant number NR22-13G004).
Owner
- Name: WSDA
- Login: WA-Department-of-Agriculture
- Kind: organization
- Location: United States of America
- Website: agr.wa.gov/AgScience
- Repositories: 1
- Profile: https://github.com/WA-Department-of-Agriculture
GitHub Events
Total
- Issues event: 1
- Watch event: 2
- Issue comment event: 1
- Push event: 24
Last Year
- Issues event: 1
- Watch event: 2
- Issue comment event: 1
- Push event: 24
Committers
Last synced: 10 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Jadey Ryan | j****n@a****v | 117 |
| Jadey Ryan | j****n@g****m | 73 |
| Jadey Ryan | J****n@a****v | 8 |
| njtierney | n****y@g****m | 3 |
Committer Domains (Top 20 + Academic)
agr.wa.gov: 2
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 3
- Total pull requests: 5
- Average time to close issues: 6 days
- Average time to close pull requests: 2 days
- Total issue authors: 1
- Total pull request authors: 2
- Average comments per issue: 2.0
- Average comments per pull request: 0.2
- Merged pull requests: 5
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 1
- Average time to close issues: N/A
- Average time to close pull requests: less than a minute
- Issue authors: 0
- Pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.0
- Merged pull requests: 1
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- jadeynryan (4)
Pull Request Authors
- jadeynryan (8)
- njtierney (2)
Top Labels
Issue Labels
bug (2)
documentation (2)
Pull Request Labels
Packages
- Total packages: 2
- Total downloads: unknown
-
Total dependent packages: 0
(may contain duplicates) -
Total dependent repositories: 0
(may contain duplicates) - Total versions: 2
proxy.golang.org: github.com/wa-department-of-agriculture/soils
- Documentation: https://pkg.go.dev/github.com/wa-department-of-agriculture/soils#section-documentation
- License: other
-
Latest release: v1.0.0
published over 2 years ago
Rankings
Dependent packages count: 5.4%
Average: 5.6%
Dependent repos count: 5.8%
Last synced:
10 months ago
proxy.golang.org: github.com/WA-Department-of-Agriculture/soils
- Documentation: https://pkg.go.dev/github.com/WA-Department-of-Agriculture/soils#section-documentation
- License: other
-
Latest release: v1.0.0
published over 2 years ago
Rankings
Dependent packages count: 5.4%
Average: 5.6%
Dependent repos count: 5.8%
Last synced:
10 months ago
Dependencies
DESCRIPTION
cran
- R >= 2.10 depends
.github/workflows/R-CMD-check.yaml
actions
- actions/checkout v3 composite
- r-lib/actions/check-r-package v2 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/pkgdown.yaml
actions
- JamesIves/github-pages-deploy-action v4.4.1 composite
- actions/checkout v3 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite