-
Notifications
You must be signed in to change notification settings - Fork 2
/
README.Rmd
84 lines (53 loc) · 3.65 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# Welcome to StatAid
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
<!-- badges: end -->
`StatAid` is a free open-source software provided as an R package allowing clinicians and researchers to perform statistical analysis through an intuitive graphical interface. It has been developed with the R software, using the [Shiny package](https://shiny.rstudio.com/). [Golem](https://github.com/ThinkR-open/golem) has been used for package compilation and deployment.
The software guides the users through the steps of a good data analysis, including multiple features such as:
<ul><li> Exploratory data analysis: distribution, count, missing-values and outliers check</li>
<li> Descriptive analysis, simple comparative analysis and publication ready 'table 1' output </li>
<li> Publication-ready graph customization</li>
<li> Paired data analysis (matched case-control studies, repeated measures) </li>
<li> Univariate analysis and models for continuous and categorical outcome: Correlation, linear and logistic regression</li>
<li> Univariate analysis and models for time-dependent outcome: Kaplan-Meier curves and cox regression </li>
<li> Multivariate analysis and models for continuous, categorical and time-dependent outcomes </li></ul>
<li> ROC Curves </li></ul>
# Getting started
## Online version
StatAid has a ready-to-use online version available at [https://vincentalcazer.shinyapps.io/StatAid/](https://vincentalcazer.shinyapps.io/StatAid/).
## Local version
You can install the development version from [GitHub](https://github.com/VincentAlcazer/StatAid) either by cloning the repository or directly by downloading the package in R:
```{r Github install, eval = F }
install.packages("remotes")
remotes::install_github("VincentAlcazer/StatAid")
StatAid::run_app()
```
## Quick-start user guide
If you are not familiar with StatAid or just want to have an overview of the different possibilities, you can check the [StatAid's quick-start user guide](https://github.com/VincentAlcazer/StatAid/blob/master/STATAID_QUICK_START_USER_GUIDE.pdf)
## Citing StatAid
If you found StatAid useful and used it for your research, please cite the [paper published in the Journal of Open Source Software.](https://joss.theoj.org/papers/10.21105/joss.02630) [![DOI](https://joss.theoj.org/papers/10.21105/joss.02630/status.svg)](https://doi.org/10.21105/joss.02630)
# Troubleshooting and contribution
All troubleshooting and contributions can be found on the [Github page.](https://github.com/VincentAlcazer/StatAid/issues)
## Bug report
If you encounter any problem with the software or find a bug, please report it on GitHub:
- Create a [new issue](https://github.com/VincentAlcazer/StatAid/issues) on the Github page
- Try to describe the problem/bug with reproductible steps
## Feature request
To ask for new feature implementation/current feature enhancemenet:
- Create a [new issue](https://github.com/VincentAlcazer/StatAid/issues) on the Github page
- Briefly describe the research question you want to answer and the type of data you have
- If possible: provide pictures of the graph you would like to make or references from the paper you saw the analysis in.
## Contribution proposal
Contributions to new features or code enhancement are welcomed by creating a new [pull request.](https://github.com/VincentAlcazer/StatAid/pulls)