# 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"))
ChinaT_NE <- mle(ChinaT)
# Display model estimates
print(coef(ChinaT_NE))
if (FALSE) {
# Estimate Skew-Normal distribution parameters by maximum likelihood
ChinaT_SNE <- mle(ChinaT,Model="SKNormal")
# Display model estimates
print(coef(ChinaT_SNE,ParType="Centr"))
print(coef(ChinaT_SNE,ParType="Direct"))
}
Run the code above in your browser using DataLab