https://github.com/latlio/tidytextextensions
Extension of tidytext to provide other term frequency calculators
https://github.com/latlio/tidytextextensions
natural-language-processing r text-ming tidy-data tidyverse
Last synced: about 1 year ago
JSON representation
Extension of tidytext to provide other term frequency calculators
- Host: GitHub
- URL: https://github.com/latlio/tidytextextensions
- Owner: latlio
- License: other
- Created: 2022-08-01T12:33:43.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-08-01T14:04:27.000Z (almost 4 years ago)
- Last Synced: 2025-04-01T23:36:59.525Z (about 1 year ago)
- Topics: natural-language-processing, r, text-ming, tidy-data, tidyverse
- Language: R
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- 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%"
)
```
# tidytextextensions
The goal of tidytextextensions is to provide a suite of tidy functions that calculate additional term frequency formulations. Designed to be an extension of 'tidytext'.
## Installation
You can install the development version of tidytextextensions from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("latlio/tidytextextensions")
```
## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(tidytextextensions)
## basic example code
```