t Copula Fit
12 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am generating 100 t copula radom numbers with Rho=0.4 and Nu =5, using the copularnd function. Then I fit these random numbers back to a t copula. I do this 1000 times and I expect to see the distribution of Nu to be centered around 5. However, the estimated value of Nu takes very high values in many occasions. Any reasons?
0 comentarios
Respuestas (1)
Andrew Newell
el 8 de Mzo. de 2012
That's just a consequence of the small sample size, and consistent with the 95% confidence estimate ( nuci ) you get for nuhat if you use the following commands:
rho = 4.5; nu = 5; N=100;
U = copularnd('t',0.4,5,N);
[rhohat,nuhat,nuci] = copulafit('t',U)
If you use N=1000, you'll see much tighter bounds on nuhat.
0 comentarios
Ver también
Categorías
Más información sobre Copula Distributions and Correlated Samples en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!