Science Score: 49.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 2 DOI reference(s) in README
  • Academic publication links
    Links to: zenodo.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (11.8%) to scientific vocabulary
Last synced: 9 months ago · JSON representation

Repository

Basic Info
Statistics
  • Stars: 9
  • Watchers: 1
  • Forks: 4
  • Open Issues: 7
  • Releases: 6
Created over 3 years ago · Last pushed 11 months ago
Metadata Files
Readme Changelog License

README.Rmd

---
output: 
  github_document:
    html_preview: true
---

```{r, include=FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-"
)
```



```{r, logo, include=FALSE}
library(hexSticker)
library(ggplot2)

dbinorm <- function(x, p, dif) {
  p * dnorm(x, 0, 1) + (1 - p) * dnorm(x, dif, 1)
}
dbinorm_scaled <- function(x, scaling, ...) {
  dbinorm(x, ...) * scaling
}
dnorm_scaled <- function(x, scaling, ...) {
  dnorm(x, ...) * scaling
}

dratio <- function(x, p, dif, mu, sd) {
  dbinorm(x, p, dif) / dnorm(x, mu, sd)
}

subplot <- ggplot() +
  stat_function(aes(col = "frac(italic(P[n](x)), italic(P[d](x)))"),
    fun = dratio, args = list(p = 0.4, dif = 3, mu = 3, sd = 2),
    alpha = 0.9, size = 0.9
  ) +
  stat_function(
    fun = dbinorm_scaled, args = list(p = 0.4, dif = 3, scaling = 10),
    alpha = 0.3, col = "white", linewidth = 0.3, linetype = "dashed"
  ) +
  stat_function(
    fun = dnorm_scaled, args = list(scaling = 10, mean = 3, sd = 2),
    alpha = 0.3, col = "white", linewidth = 0.3, linetype = "dashed"
  ) +
  theme_void() +
  hexSticker::theme_transparent() +
  scale_color_manual(name = NULL, values = c("#d8e5e8"), labels = scales::parse_format()) +
  theme(
    panel.background = element_rect(fill = "transparent"),
    plot.background = element_rect(fill = "transparent"),
    legend.position = "inside",
    legend.position.inside = c(1.15, 0.53),
    legend.text = element_text(colour = "white", size = 100),
    margins = margin(20, 20, 20, 20)
  ) +
  guides(color = guide_legend(override.aes = list(linetype = 0))) +
  xlim(-5, 8.6)

(ggplot() +
  geom_hexagon(size = 2.5, fill = "#034e57", color = "#93effa") +
  geom_subview(subview = subplot, x = 1, y = 1, width = 1.4, height = 1.4) +
  geom_pkgname("densityratio", size = 52, color = "#de0277", y = 1.4) +
  theme_sticker()) |>
  ggsave("man/figures/logo.png", plot = _)
```

# densityratio densityratio logo


[![R-CMD-check](https://github.com/thomvolker/densityratio/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/thomvolker/densityratio/actions/workflows/R-CMD-check.yaml)
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-green.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![densityratio status badge](https://thomvolker.r-universe.dev/badges/densityratio)](https://thomvolker.r-universe.dev/densityratio)
[![DOI](https://zenodo.org/badge/613441108.svg)](https://zenodo.org/badge/latestdoi/613441108)
[![CRAN status](https://www.r-pkg.org/badges/version/densityratio)](https://CRAN.R-project.org/package=densityratio)
[![codecov](https://codecov.io/gh/thomvolker/densityratio/branch/main/graph/badge.svg)](https://app.codecov.io/gh/thomvolker/densityratio)


## Overview

This package provides functionality to directly estimate a density ratio
$$r(x) = \frac{p_\text{nu}(x)}{p_{\text{de}}(x)},$$
without estimating the numerator and denominator density separately. Density ratio estimation serves many purposes, for example, prediction, outlier detection, change-point detection in time-series, importance weighting under domain adaptation (i.e., sample selection bias) and evaluation of synthetic data utility. The key idea is that differences between data distributions can be captured in their density ratio, which is estimated over the entire multivariate space of the data. Subsequently, the density ratio values can be used to summarize the dissimilarity between the two distributions in a discrepancy measure.

```{r, densities, echo=FALSE,message=FALSE,warning=FALSE,fig.height=6,fig.width=10,out.width="80%", fig.dpi=500,fig.format="png",fig.align="center"}
set.seed(1)
library(ggplot2)
library(patchwork)

dbinorm <- function(x, p, dif) {
  p * dnorm(x, 0, 1) + (1 - p) * dnorm(x, dif, 1)
}

dratio <- function(x, p, dif, mu, sd) {
  dbinorm(x, p, dif) / dnorm(x, mu, sd)
}

fit <- densityratio::ulsif(
  df_numerator = densityratio::numerator_data$x5,
  df_denominator = densityratio::denominator_data$x5,
  centers = c(densityratio::numerator_data$x5, densityratio::denominator_data$x5),
  parallel = TRUE,
  nthreads = 18
)

ggplot() +
  stat_function(aes(col = factor(1, labels = "italic(P[n](x))")),
    fun = dbinorm, args = list(p = 0.4, dif = 3),
    linewidth = 1
  ) +
  stat_function(aes(col = factor(2, labels = "italic(P[d](x))")),
    fun = dnorm, args = list(mean = 3, sd = 2),
    linewidth = 1
  ) +
  xlim(-5, 8.6) +
  scale_color_manual(
    name = NULL,
    values = c("#93effa", "#034e57"),
    labels = scales::parse_format()
  ) +
  theme_classic() +
  hexSticker::theme_transparent() +
  theme(
    legend.position = "inside",
    legend.position.inside = c(0.9, 0.9),
    text = element_text(size = 50),
    legend.text = element_text(size = 50),
    panel.background = element_rect(fill = "transparent"),
    plot.background = element_rect(fill = "transparent")
  ) +
  xlab(expression(italic(x))) +
  ylab(NULL) +
  ggplot() +
  stat_function(aes(col = "italic(r(x))"),
    fun = dratio, args = list(p = 0.4, dif = 3, mu = 3, sd = 2),
    size = 1
  ) +
  geom_line(
    aes(
      x = seq(-5, 8.6, length.out = 100),
      y = predict(fit, seq(-5, 8.6, length.out = 100)),
      col = "italic(hat(r)(x))"
    ),
    size = 1
  ) +
  xlim(-5, 8.6) +
  theme_classic() +
  hexSticker::theme_transparent() +
  scale_color_manual(
    name = NULL,
    values = c("pink", "#de0277"),
    labels = scales::parse_format()
  ) +
  theme(
    legend.position = "inside",
    legend.position.inside = c(0.9, 0.9),
    text = element_text(size = 50),
    legend.text = element_text(size = 50),
    panel.background = element_rect(fill = "transparent"),
    plot.background = element_rect(fill = "transparent")
  ) +
  xlab(expression(italic(x))) +
  ylab(NULL)
```


### Features

* __Fast__: Computationally intensive code is executed in `C++` using `Rcpp` and `RcppArmadillo`.
* __Automatic__: Good default hyperparameters that can be optimized in cross-validation (we do recommend understanding those parameters before using `densityratio` in practice).
* __Complete__: Several density ratio estimation methods, such as unconstrained least-squares importance fitting (`ulsif()`), Kullback-Leibler importance estimation procedure (`kliep()`), kernel mean matching (`kmm()`), ratio of estimated densities (`naive()`), spectral density ratio estimation (`spectral()` and least-squares heterodistributional subspace search (`lhss()`).
* __User-friendly__: Simple user interface, default `predict()`, `print()` and `summary()` functions for all density ratio estimation methods; built-in data sets for quick testing.


## Installation

You can install the stable release of `densityratio` from [CRAN](https://CRAN.R-project.org/package=densityratio) with:

``` r
install.packages('densityratio')
```

For the development version, use:

``` r
remotes::install_github("thomvolker/densityratio")
```

## Usage

The package contains several functions to estimate the density ratio between the numerator data and the denominator data. To illustrate the functionality, we make use of the in-built simulated data sets `numerator_data` and `denominator_data`, that both consist of the same five variables.

### Minimal example

```{r, example-univ}
library(densityratio)

head(numerator_data)

fit <- ulsif(
  df_numerator = numerator_data$x5,
  df_denominator = denominator_data$x5,
  nsigma = 5,
  nlambda = 5
)

class(fit)
```

We can ask for the `summary()` of the estimated density ratio object, that contains the optimal kernel weights (optimized using cross-validation) and a measure of discrepancy between the numerator and denominator densities.

```{r, summary-univ}
summary(fit)
```

To formally evaluate whether the numerator and denominator densities differ significantly, you can perform a two-sample homogeneity test as follows.

```{r, summary-univ-test}
summary(fit, test = TRUE)
```

The probability that numerator and denominator samples share a common data generating mechanism is very small.

The `ulsif`-object also contains the (hyper-)parameters used in estimating the density ratio, such as the centers used in constructing the Gaussian kernels (`fit$centers`), the different bandwidth parameters (`fit$sigma`) and the regularization parameters (`fit$lambda`). 
Using these variables, we can obtain the estimated density ratio using `predict()`.


```{r, plot-univ, fig.height=6, fig.width=10, out.width="80%", fig.dpi=500, fig.format="png", fig.align="center"}
# obtain predictions for the numerator samples

newx5 <- seq(from = -3, to = 6, by = 0.05)
pred <- predict(fit, newdata = newx5)

ggplot() +
  geom_point(aes(x = newx5, y = pred, col = "ulsif estimates")) +
  stat_function(
    mapping = aes(col = "True density ratio"),
    fun = dratio,
    args = list(p = 0.4, dif = 3, mu = 3, sd = 2),
    linewidth = 1
  ) +
  theme_classic() +
  scale_color_manual(name = NULL, values = c("#de0277", "purple")) +
  theme(
    legend.position = "inside",
    legend.position.inside = c(0.8, 0.9),
    text = element_text(size = 50),
    legend.text = element_text(size = 50),
  )
```

### Scaling

By default, all functions in the `densityratio` package standardize the data to the numerator means and standard deviations. This is done to ensure that the importance of each variable in the kernel estimates is not dependent on the scale of the data. By setting `scale = "denominator"` one can scale the data to the means and standard deviations of the denominator data, and by setting `scale = FALSE` the data remains on the original scale.


### Categorical data

All of the functions in the `densityratio` package accept categorical variables types. However, note that internally, these variables are one-hot encoded, which can lead to a high-dimensional feature-space. 


```{r, cat-data}
summary(numerator_data$x1)
summary(denominator_data$x1)

fit_cat <- ulsif(
  df_numerator = numerator_data$x1,
  df_denominator = denominator_data$x1
)

aggregate(
  predict(fit_cat) ~ numerator_data$x1,
  FUN = unique
)

table(numerator_data$x1) / table(denominator_data$x1)
```

This transformation can give a reasonable estimate of the ratio of proportions in the different data sets (although there is some regularization applied such that the estimated odds are closer to one than seen in the real data).


### Full data example

After transforming all variables to numeric variables, it is possible to calculate the density ratio over the entire multivariate space of the data.

```{r, full-data-example}
fit_all <- ulsif(
  df_numerator = numerator_data,
  df_denominator = denominator_data
)

summary(fit_all, test = TRUE, parallel = TRUE)
```


### Other density ratio estimation functions

Besides `ulsif()`, the package contains several other functions to estimate a density ratio. 

* `naive()` estimates the numerator and denominator densities separately, and subsequently takes there ratio. 
* `kliep()` estimates the density ratio directly through the Kullback-Leibler importance estimation procedure.
* `kmm()` estimates the density ratio through kernel mean matching.
* `lhss()` estimates the density ratio in a subspace where the two distributions are most different using least-squares heterodistributional subspace search.
* `spectral()` estimates the density ratio using a spectral series approach.

We display `kliep()` and `naive()` as examples here. The other functions are discussed in the [Get Started vignette](https://thomvolker.github.io/densityratio/articles/densityratio.html). 

```{r, plot-methods, warning=FALSE, fig.height=6, fig.width=10, out.width="80%", fig.dpi=500, fig.format="png", fig.align="center"}
fit_naive <- naive(
  df_numerator = numerator_data$x5,
  df_denominator = denominator_data$x5
)

fit_kliep <- kliep(
  df_numerator = numerator_data$x5,
  df_denominator = denominator_data$x5
)


pred_naive <- predict(fit_naive, newdata = newx5)
pred_kliep <- predict(fit_kliep, newdata = newx5)


ggplot(data = NULL, aes(x = newx5)) +
  geom_point(aes(y = pred, col = "ulsif estimates")) +
  geom_point(aes(y = pred_naive, col = "naive estimates")) +
  geom_point(aes(y = pred_kliep, col = "kliep estimates")) +
  stat_function(aes(x = NULL, col = "True density ratio"),
    fun = dratio, args = list(p = 0.4, dif = 3, mu = 3, sd = 2),
    linewidth = 1
  ) +
  theme_classic() +
  scale_color_manual(name = NULL, values = c("pink", "#512970", "#de0277", "purple")) +
  theme(
    legend.position = "inside",
    legend.position.inside = c(0.8, 0.9),
    text = element_text(size = 50),
    legend.text = element_text(size = 50),
  )
```

The figure directly shows that `ulsif()` and `kliep()` come rather close to the true density ratio function in this example, and outperform the `naive()` solution. 

## Contributions

This package is still in development, and I'll be happy to take feedback and suggestions. Please submit these through [GitHub Issues](https://github.com/thomvolker/densityratio/issues). 

## Resources


__Books__

* General information about the density ratio estimation framework: Sugiyama, Suzuki and Kanamori (2012). [Density Ratio Estimation in Machine Learning](https://www.cambridge.org/core/books/density-ratio-estimation-in-machine-learning/BCBEA6AEAADD66569B1E85DDDEAA7648)


__Papers__

* Density ratio estimation for the evaluation of the utility of synthetic data: Volker, De Wolf and Van Kesteren (2023). [Assessing the utility of synthetic data: A density ratio perspective](https://unece.org/statistics/documents/2023/08/working-documents/assessing-utility-synthetic-data-density-ratio)

* Density ratio estimation for covariate shift: Huang, Smola, Gretton, Borgwardt and Schölkopf (2007). [Correcting sample selection bias by unlabeled data](https://proceedings.neurips.cc/paper/2006/file/a2186aa7c086b46ad4e8bf81e2a3a19b-Paper.pdf)

* High-dimensional density ratio estimation through a spectral series approach: Izbicki, Lee and Schafer (2014). [High-dimensional density ratio estimation with extensions to approximate likelihood computation](https://proceedings.mlr.press/v33/izbicki14.pdf)

* Least-squares density ratio estimation: Sugiyama, Hido and Kanamori (2009). [A least-squares approach to direct importance estimation](https://www.jmlr.org/papers/volume10/kanamori09a/kanamori09a.pdf)

## How to cite

Volker, T.B., Poses, C. & Van Kesteren, E.J. (2023). densityratio: Distribution comparison through density ratio estimation. 





Owner

  • Name: Thom Volker
  • Login: thomvolker
  • Kind: user
  • Location: Utrecht
  • Company: Utrecht University

MSc Methodology and Statistics

GitHub Events

Total
  • Create event: 4
  • Release event: 4
  • Issues event: 10
  • Watch event: 4
  • Issue comment event: 7
  • Push event: 70
  • Pull request event: 3
  • Fork event: 1
Last Year
  • Create event: 4
  • Release event: 4
  • Issues event: 10
  • Watch event: 4
  • Issue comment event: 7
  • Push event: 70
  • Pull request event: 3
  • Fork event: 1

Packages

  • Total packages: 1
  • Total downloads:
    • cran 318 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 3
  • Total maintainers: 1
cran.r-project.org: densityratio

Distribution Comparison Through Density Ratio Estimation

  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 318 Last month
Rankings
Dependent packages count: 26.5%
Dependent repos count: 32.6%
Average: 48.6%
Downloads: 86.7%
Last synced: 11 months ago

Dependencies

.github/workflows/R-CMD-check.yaml actions
  • actions/checkout v3 composite
  • r-lib/actions/check-r-package v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
DESCRIPTION cran
  • R >= 2.10 depends
  • Rcpp * imports
  • expm * imports
  • pbapply * imports
  • pracma * imports
  • quadprog * imports
  • testthat >= 3.0.0 suggests