-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
60 lines (42 loc) · 1.35 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
---
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%"
)
```
# scdtb
<!-- badges: start -->
<!-- badges: end -->
The goal of 'scdtb' is to provide tools for the analysis of single case design data.
## Installation
You can install the released version of 'scdtb' from [CRAN](https://CRAN.R-project.org):
```{r eval=FALSE}
install.packages("scdtb")
```
To install the development version of 'scdtb' from GitHub, use the [devtools](https://devtools.r-lib.org/) package:
```{r, eval=FALSE}
# install.packages("devtools")
devtools::install_github("mightymetrika/scdtb")
```
## Analyze Your Data
Use the scdtb() function to launch a 'shiny' application which implements many of the tools in the 'scdtb' package.
The application has the following functionalities:
* Upload a CSV file to be used as the dataset for modeling.
* View the variables available in the uploaded dataset.
* Enter the roles played by the variables in the dataset.
* Create a raw plot of the data.
* Run a mixed effect model.
* Run a crossed lag correlation analysis.
* Run a non-overlap of all pairs computation.
* Run a randomization test.
```{r, eval=FALSE}
library(scdtb)
# Launch application
scdtb()
```