RobMxtDEst-methods | R Documentation |
RobMxtDEst estimates mixtures of distribution for interval-valued data using robust methods.
## S4 method for signature 'IData'
RobMxtDEst(Sdt, grouping, Mxt=c("Hom","Het"), CovEstMet=c("Pooled","Globdev"),
CovCase=1:4, SelCrit=c("BIC","AIC"), Robcontrol=RobEstControl(),
l1medpar=NULL, ...)
Sdt |
An IData object representing interval-valued entities. |
grouping |
Factor indicating the group to which each observation belongs to. |
Mxt |
Indicates the type of mixing distributions to be considered. Current alternatives are “Hom” (homocedastic) and “Het” (hetereocedasic). |
CovEstMet |
Method used to estimate the common covariance matrix. Alternatives are “Pooled” (default) for a pooled average of the the robust within-groups covariance estimates, and “Globdev” for a global estimate based on all deviations from the groups multivariate l_1 medians. |
CovCase |
Configuration of the variance-covariance matrix: a set of integers between 1 and 4. |
SelCrit |
The model selection criterion. |
Robcontrol |
A control object (S4) of class |
l1medpar |
List of named arguments to be passed to the function |
... |
Other named arguments. |
An object of class IdtMxNDRE, containing the estimation results.
Brito, P., Duarte Silva, A. P. (2012), Modelling Interval Data with Normal and Skew-Normal Distributions. Journal of Applied Statistics 39(1), 3–20.
Duarte Silva, A.P., Filzmoser, P. and Brito, P. (2017), Outlier detection in interval data. Advances in Data Analysis and Classification, 1–38.
Todorov V. and Filzmoser P. (2009), An Object Oriented Framework for Robust Multivariate Analysis. Journal of Statistical Software 32(3), 1–47.
IdtMxNDRE
, RobEstControl
.
# Create an Interval-Data object containing the intervals for 899 observations
# on the temperatures by quarter in 60 Chinese meteorological stations.
ChinaT <- IData(ChinaTemp[1:8],VarNames=c("T1","T2","T3","T4"))
## Not run:
# Estimate robustly an homoscedastic mixture, with mixture components defined by regions
ChinaHomMxtRobE <- RobMxtDEst(ChinaT,ChinaTemp$GeoReg)
print(ChinaHomMxtRobE)
# Estimate robustly an heteroscedastic mixture, with mixture components defined by regions
ChinaHetMxtRobE <- RobMxtDEst(ChinaT,ChinaTemp$GeoReg,Mxt="Het")
print(ChinaHetMxtRobE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.