https://github.com/freguglia/bacontrees
An R packages for Bayesian Context Trees
https://github.com/freguglia/bacontrees
Last synced: 2 months ago
JSON representation
An R packages for Bayesian Context Trees
- Host: GitHub
- URL: https://github.com/freguglia/bacontrees
- Owner: Freguglia
- License: gpl-3.0
- Created: 2024-05-16T16:40:15.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-11T00:29:29.000Z (3 months ago)
- Last Synced: 2025-02-11T01:25:25.888Z (3 months ago)
- Language: R
- Size: 149 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE.md
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%"
)
```# bacontrees
[](https://github.com/Freguglia/bacontrees/actions/workflows/R-CMD-check.yaml)
`bacontrees` is an R package that provides tools to create algorithms involving
**Ba**yesian **Con**text **Trees**.
The package uses the `R6` OOP (Object-Oriented Programming) paradigm to define
classes for the main structures involved when constructing Bayesian Context Trees,
making it a highly extensible framework to develop new algorithms within this
field,
as well as define functions that work out of the box for the main methods available.## Installation
You can install the development version of bacontrees from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("Freguglia/bacontrees")
```