Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jemus42/xplainvi

A very early and experimental bit of trying something out.
https://github.com/jemus42/xplainvi

Last synced: about 1 month ago
JSON representation

A very early and experimental bit of trying something out.

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%"
)
```

# xplainvi

[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![R-CMD-check](https://github.com/jemus42/xplainvi/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/jemus42/xplainvi/actions/workflows/R-CMD-check.yaml)

The goal of xplainvi is to collect feature importance methods.

For now, it is built specifically around [mlr3](https://mlr-org.com/), as available abstractions for learners, tasks, measures, etc. greatly simplify the implementation of importance measures.

## Installation

You can install the development version of xplainvi like so:

``` r
# install.packages(pak)
pak::pak("jemus42/xplainvi")
```

## Example

This is a basic example which shows you how to solve a common problem:

```{r example}
library(xplainvi)
## basic example code
```