An open API service indexing awesome lists of open source software.

https://github.com/mkearney/tidycat

🎓 Tidy categorical tools for academics
https://github.com/mkearney/tidycat

categorical-data chisq-test chisquare-test quantitative-methods rstats statistics t-test tidyversity

Last synced: about 2 months ago
JSON representation

🎓 Tidy categorical tools for academics

Awesome Lists containing this project

README

          

---
output: github_document
---

```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%",
eval = TRUE
)
options(width = 100)
polcom <- tidyversity::polcom
```
# tidycat

[![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)

🎓 Tidy tools for academics

## \*\*\* This package is in very early development. Feedback is encouraged!!! \*\*\*

## Installation

Install the development version from [Github](https://github.com/mkearney/tidycat) with:

```{r install, eval=FALSE}
## install devtools if not already
if (!requireNamespace("devtools", quietly = TRUE)) {
install.packages("devtools")
}
## install tidycat from Github
devtools::install_github("mkearney/tidycat")
```

Load the package (it, of course, plays nicely with tidyverse).

```{r library}
## load tidyverse
library(tidyverse)

## load tidycat
library(tidycat)
```

### t-tests

```{r ttest}
polcom %>%
tidy_ttest(pp_ideology ~ follow_trump) %>%
tidy_summary()
```