Package 'MatSkew'

Title: Matrix Skew-T Parameter Estimation
Description: Performs matrix skew-t parameter estimation, Gallaugher and McNicholas (2017) <doi: 10.1002/sta4.143>.
Authors: Michael P.B. Gallaugher, Paul D. McNicholas
Maintainer: Michael P.B. Gallaugher <[email protected]>
License: GPL (>= 2)
Version: 0.1.5
Built: 2024-11-18 06:47:26 UTC
Source: CRAN

Help Index


Matrix Skew t Parameter Estimation

Description

Performs paramter estimation for the matrix variate skew-t distribution using an ECM algorithm.

Usage

Fit_Skewt(X, Tol = 0.001, max_iter = 1000)

Arguments

X

A list of matrices of the same size

Tol

The tolerance of the ECM algorithm. Defaults to 0.001

max_iter

The maximum number of iterations. Defaults to 1000

Value

Returns a list with elements M (the estimate of the location), A (the estimate of the skewness), nu (the estimate of the degrees of freedom), Sigma (the estimate of Sigma), Psi (the estimate of Psi), loglik (a vector of log likelihood values), flag (returns TRUE if a numerical issue occured, FALSE otherwise).

Examples

data(SimX)
Fit_st<-Fit_Skewt(SimX)

Simulated Data

Description

This is a simulated dataset with 100 observations from 4 by 3 matrix skew-t distribution.

Usage

data(SimX)

Format

An object of class list of length 100.