-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.Rmd
45 lines (27 loc) · 1.03 KB
/
index.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
---
output: github_document
---
<!-- badges: start -->
[![Travis build status](https://travis-ci.com/imbi-heidelberg/DescrTab.svg?branch=master)](https://travis-ci.com/imbi-heidelberg/DescrTab)
[![Codecov test coverage](https://codecov.io/gh/imbi-heidelberg/DescrTab/branch/master/graph/badge.svg)](https://codecov.io/gh/imbi-heidelberg/DescrTab?branch=master)
<!-- badges: end -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/index-",
out.width = "100%"
)
```
# DescrTab
This package is supposed to be a good starting point for a descriptive analysis.
It generates a table of descriptive statistics with p-values for difference between the groups.
The main function is des.print for the user.
Options for the output are pdf, tex, knitr or word file.
You need TeX on your computer to use this package.
## Installation
The current development version can be installed with:
``` r
# install.packages("devtools")
devtools::install_github("imbi-heidelberg/DescrTab")
```