Borrar filtros
Borrar filtros

to find the pvalue of arima estimation

11 visualizaciones (últimos 30 días)
Abdoulaye Camara
Abdoulaye Camara el 27 de Abr. de 2020
Respondida: Balaji el 31 de Oct. de 2023
I want to know, how to get pvalue in the arima parameters estimation?

Respuestas (1)

Balaji
Balaji el 31 de Oct. de 2023
To obtain p-values for the parameter estimates in ARIMA model estimation, you can use the 'infer' function. Here's an example:
Mdl1 = estimate(Mdl, y);
[~, ~, ~, Cov] = infer(Mdl1, y);
SE = sqrt(diag(Cov));
tStat = Mdl1.Coefficients.Estimate ./ SE;
% Compute the p-values using the cumulative distribution function (CDF) of the t-distribution
df = length(y) - numel(Mdl1.Coefficients.Estimate);
pValues = 2 * (1 - tcdf(abs(tStat), df));
Thanks,
Balaji

Categorías

Más información sobre Conditional Mean Models en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by