Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

74 readme for package #87

Merged
merged 4 commits into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,28 @@ knitr::opts_chunk$set(
[![R-CMD-check](https://github.com/signaturescience/rplanes/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/signaturescience/rplanes/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->

> **DEVELOPMENT STATUS**: The `rplanes` package is being actively developed. As of v0.0.1 the package is under alpha release. Users should be aware that there may be significant changes to the API in this phase.

## Introduction

The `rplanes` package (**pl**ausibility **an**alysis of **e**pidemiological **s**ignals) provides functionality to prepare data and analyze plausibility of both forecasted and reported epidemiological signals. The functions implement a set of plausibility algorithms that are agnostic to geographic and time resolutions and are calculated independently and then presented as a combined score.


## Installation

``` r
#install.pacakges("remotes")
remotes::install_github("signaturescience/rplanes")
remotes::install_github("signaturescience/rplanes", build_vignettes=TRUE)
```

## Getting Started

The `rplanes` package includes vignettes describing package features in detail. To get started, refer to the "Basic Usage" vignette on the [package website](https://signaturescience.github.io/rplanes/articles/basic-usage.html) or in the R console:

```r
vignette("basic-usage", package="rplanes")
```

## Contributing

Please use GitHub issues to report bugs or request features. Contributions will be reviewed via pull requests.
35 changes: 34 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,47 @@

# rplanes

<a href="https://signaturescience.github.io/rplanes/"><img src="man/figures/logo.png" align="right" height="139" alt="rplanes website" /></a>

<!-- badges: start -->

[![R-CMD-check](https://github.com/signaturescience/rplanes/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/signaturescience/rplanes/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->

> **DEVELOPMENT STATUS**: The `rplanes` package is being actively
> developed. As of v0.0.1 the package is under alpha release. Users
> should be aware that there may be significant changes to the API in
> this phase.

## Introduction

The `rplanes` package (**pl**ausibility **an**alysis of
**e**pidemiological **s**ignals) provides functionality to prepare data
and analyze plausibility of both forecasted and reported epidemiological
signals. The functions implement a set of plausibility algorithms that
are agnostic to geographic and time resolutions and are calculated
independently and then presented as a combined score.

## Installation

``` r
#install.pacakges("remotes")
remotes::install_github("signaturescience/rplanes")
remotes::install_github("signaturescience/rplanes", build_vignettes=TRUE)
```

## Getting Started

The `rplanes` package includes vignettes describing package features in
detail. To get started, refer to the “Basic Usage” vignette on the
[package
website](https://signaturescience.github.io/rplanes/articles/basic-usage.html)
or in the R console:

``` r
vignette("basic-usage", package="rplanes")
```

## Contributing

Please use GitHub issues to report bugs or request features.
Contributions will be reviewed via pull requests.