-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
36 lines (21 loc) · 1.03 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
---
output:
github_document:
toc: FALSE
---
# HunMineR
HunMineR is the companion package to the Hungarian language text mining R textbook, 'Text Mining and Artificial Intelligence with R' ([Szövegbányászat és mesterséges intelligencia R-ben](https://tankonyv.poltextlab.com/)). It contains a variety of Hungarian language corpora collected and maintained by the researchers of [Centre for Social Sciences](https://tk.hu/en), Budapest. In addition to the selected corpora we also included custom stopwords and custom dictionaries.
## Installation
The package is not available on CRAN (yet) but the development version can be downloaded from GitHub with `devtools`:
```{r, eval=FALSE}
devtools::install_github("poltextlab/HunMineR")
```
## Usage
For more info on the datasets and other included objects you can use the `?` approach:
```{r, eval=FALSE}
?data_mnb_pr
```
To access the datasets, stopwords, etc. just run their names, or store them in an object of your choosing.
```{r, eval=FALSE}
central_bank_pr <- data_mnb_pr
```