Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jjesusfilho/justop
https://github.com/jjesusfilho/justop
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jjesusfilho/justop
- Owner: jjesusfilho
- License: other
- Created: 2022-01-13T16:08:34.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-13T22:23:20.000Z (almost 3 years ago)
- Last Synced: 2024-06-21T14:28:19.851Z (5 months ago)
- Language: R
- Size: 484 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- awesome-nlpbr - stopwords para uso em jurimetria
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# justop
[![R-CMD-check](https://github.com/jjesusfilho/justop/workflows/R-CMD-check/badge.svg)](https://github.com/jjesusfilho/justop/actions)
O objetivo deste pacote é disponibilizar coletâneas de stopwords para uso em jurimetria. A proposta é construir, aos poucos, diferentes grupos de stopwords: institucionais, nomes de pessoas, nomes de juízes etc.
Os nomes dos dataframes estejam em português, mas a coluna com os nomes é sempre chamada "word" porque isso facilita na hora de dar um anti_join com o pacote tidytext.
## Instalação
``` r
remotes::install_github("jjesusfilho/justop")
```## Exemplo
Para ver os conjuntos de dados disponíveis, entre no índice de funções do pacote:
```r
help(package= "justop")
```Por exemplo, se você quiser ver os nomes mais comuns da lingua portuguesa no Brasil a fim de removê-las da sua base de julgados:
```r
library(justop)
View(nomes)
```