Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cimentadaj/lifetableprojection
Shiny App for Life Table Projections
https://github.com/cimentadaj/lifetableprojection
Last synced: 5 days ago
JSON representation
Shiny App for Life Table Projections
- Host: GitHub
- URL: https://github.com/cimentadaj/lifetableprojection
- Owner: cimentadaj
- License: other
- Created: 2023-11-09T16:15:45.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-23T17:17:47.000Z (21 days ago)
- Last Synced: 2024-10-24T00:55:22.272Z (21 days ago)
- Language: R
- Size: 301 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
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%"
)
```# lifetableprojection
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
This package aims to create a shiny webapp to make lifetable projections available to users which are not familiar with R. The web application allows to upload data, validate it and conduct lifetable projections.
## Installation
You can install the development version of lifetableprojection from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("cimentadaj/lifetableprojection")
```## Example
This is a basic example which shows you how to solve a common problem:
```{r example, eval = FALSE}
library(lifetableprojection)
run_app()
```