Fro.CI {bnmonitor}R Documentation

Frobenius norm for CI

Description

Fro.CI returns the Frobenius norm between an object of class CI and its update after a model-preserving parameter variation.

Usage

## S3 method for class 'CI'
Fro(x, type, entry, delta, log = TRUE, ...)

Arguments

x

object of class CI.

type

character string. Type of model-preserving co-variation: either "total", "partial", row, column or all. If all the Frobenius norm is computed for every type of co-variation matrix.

entry

a vector of length 2 indicating the entry of the covariance matrix to vary.

delta

numeric vector with positive elements, including the variation parameters that act multiplicatively.

log

boolean value. If TRUE, the logarithm of the Frobenius norm is returned. Set by default to TRUE.

...

additional arguments for compatibility.

Details

Computation of the Frobenius norm between a Bayesian network and its updated version after a model-preserving variation.

Value

A dataframe including in the first column the variations performed, and in the following columns the corresponding Frobenius norms for the chosen model-preserving co-variations.

References

C. Görgen & M. Leonelli (2020), Model-preserving sensitivity analysis for families of Gaussian distributions. Journal of Machine Learning Research, 21: 1-32.

See Also

KL.GBN, KL.CI, Fro.GBN, Jeffreys.GBN, Jeffreys.CI

Examples

Fro(synthetic_ci,"total",c(1,1),seq(0.9,1.1,0.01))
Fro(synthetic_ci,"partial",c(1,4),seq(0.9,1.1,0.01))
Fro(synthetic_ci,"column",c(1,2),seq(0.9,1.1,0.01))
Fro(synthetic_ci,"row",c(3,2),seq(0.9,1.1,0.01))


[Package bnmonitor version 0.1.4 Index]