Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrc-ide/naomi.utils
Utility Functions For Naomi Datasets
https://github.com/mrc-ide/naomi.utils
Last synced: 2 months ago
JSON representation
Utility Functions For Naomi Datasets
- Host: GitHub
- URL: https://github.com/mrc-ide/naomi.utils
- Owner: mrc-ide
- License: other
- Created: 2020-11-19T18:32:40.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-21T11:30:12.000Z (10 months ago)
- Last Synced: 2024-03-21T12:40:28.971Z (10 months ago)
- Language: R
- Size: 134 KB
- Stars: 0
- Watchers: 8
- Forks: 4
- Open Issues: 7
-
Metadata Files:
- Readme: README.Rmd
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Support: .github/SUPPORT.md
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# naomi.utils
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![CRAN status](https://www.r-pkg.org/badges/version/naomi.utils)](https://CRAN.R-project.org/package=naomi.utils)The goal of naomi.utils is to ...
## Installation
You can install the released version of naomi.utils from [CRAN](https://CRAN.R-project.org) with:
``` r
install.packages("naomi.utils")
```## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(naomi.utils)
## basic example code
```What is special about using `README.Rmd` instead of just `README.md`? You can include R chunks like so:
```{r cars}
summary(cars)
```You'll still need to render `README.Rmd` regularly, to keep `README.md` up-to-date.
You can also embed plots, for example:
```{r pressure, echo = FALSE}
plot(pressure)
```In that case, don't forget to commit and push the resulting figure files, so they display on GitHub!