
Maximum Likelihood Estimation of the Watson Distribution Parameters.
Source:R/inference.R
watson-mle.RdMLE parameters describing a Watson distribution for isotropic axial vectors. From Mardia and Jupp (2000, Section 10.3.2).
Usage
watson_MLE(x, shape)
# S3 method for class 'Vec3'
watson_MLE(x, shape = NULL)
# S3 method for class 'Line'
watson_MLE(x, shape = NULL)
# S3 method for class 'Plane'
watson_MLE(x, shape = NULL)Value
A list with members
muHata line, the MLE of the mean (identical to
projected_mean()if x has a bipolar shape),kappaHata real number, the MLE of the concentration,
shapecharacter, either
'bipolar'or'girdle',d3a positive real number, the D3 from which
kappaHatwas computed, andeigenvalues(the eigenvalues of the \(\bar{T}\) matrix (orientation tensor), in descending order (see
ot_eigen()).
See also
watson_inference() for confidence regions, and rwatson() to
simulate a distribution.
Other distribution-MLE:
bingham-mle,
dist.mle,
fisher-mle
Examples
r <- watson_MLE(example_lines)
print(r)
#> $muHat
#> Line object (n = 1):
#> azimuth plunge
#> 69.09796 14.82125
#>
#> $kappaHat
#> [1] 9.815405
#>
#> $shape
#> [1] "bipolar"
#>
#> $d3
#> [1] 0.8904488
#>
#> $eigenvalues
#> [1] 0.89044880 0.06736731 0.04218389
#>
plot(example_lines)
points(r$muHat, col = 'red', pch = 16, cex = 1.5)