-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
48 lines (33 loc) · 1.44 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
36
37
38
39
40
41
42
43
44
45
46
47
48
---
output:
github_document:
html_preview: false
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
[![CRAN status](https://www.r-pkg.org/badges/version/lfl)](https://CRAN.R-project.org/package=lfl)
[![codecov](https://codecov.io/gh/beerda/lfl/branch/master/graph/badge.svg)](https://app.codecov.io/gh/beerda/lfl)
# lfl
The lfl package provides various algorithms related to linguistic fuzzy logic: mining for linguistic fuzzy association
rules, composition of fuzzy relations, performing perception-based logical deduction (PbLD), and forecasting
time-series using fuzzy rule-based ensemble (FRBE). The package also contains basic fuzzy-related algebraic functions
capable of handling missing values in different styles (Bochvar, Sobocinski, Kleene etc.), computation of Sugeno
integrals and fuzzy transform.
## Documentation
The complete documentation of the package is [available in this vignette](https://github.com/beerda/lfl/blob/master/vignettes/main.pdf).
## Installation
To install the stable version from CRAN, simply issue the following command within your R session:
```{r cran-installation, eval = FALSE}
install.packages("lfl")
```
If you want to install the development version instead, type:
```{r gh-installation, eval = FALSE}
install.packages("devtools")
devtools::install_github("beerda/lfl")
```