Skip to contents

Elliptical concentration and confidence cone estimation

Usage

bingham_statistics(x, w = NULL)

Source

Borradaile, G. (2003). Spherical-Orientation Data. In: Statistics of Earth Science Data. Springer, Berlin, Heidelberg. https://doi.org/10.1007/978-3-662-05223-5_10

Arguments

x

numeric. Can be three element vector, three column array, or an object of class "line" or "plane"

w

numeric. Weights

Value

list

k

two-column vector containing the estimates for the minimum (\(k_\text{min}\)) and maximum concentration (\(k_\text{max}\)).

a95

two-column vector containing the estimates for the minimum and maximum 95% confidence cone.

beta

The shape factor of the distribution given by the ratio \(\frac{k_\text{min}}{k_\text{max}}\).

See also

Examples

set.seed(1234)
x <- rfb(100, mu = Line(120, 50), k = 15, A = diag(c(-5, 0, 5)))

stereoplot()
stereo_point(x)


bingham_statistics(x)
#> $k
#> [1] 2.442269 3.801551
#> 
#> $a95
#> [1] 8.958418 7.180384
#> 
#> $beta
#> [1] 0.6424401
#>