[R] getting p-values from fitted ARIMA

2010-11-03 Thread h0453497
Hi I fitted an ARIMA model using the function arima(). The output consists of the fitted coefficients with their standard errors. However i need information about the significance of the coefficients, like p-values. I hope you can help me on that issue... ciao Stefan

Re: [R] getting p-values from fitted ARIMA

2010-11-03 Thread Jorge Ivan Velez
Hi Stefan, Take a look at https://stat.ethz.ch/pipermail/r-help/2009-June/202173.html HTH, Jorge On Wed, Nov 3, 2010 at 2:50 PM, wrote: Hi I fitted an ARIMA model using the function arima(). The output consists of the fitted coefficients with their standard errors. However i need

Re: [R] getting p-values from fitted ARIMA

2010-11-03 Thread Achim Zeileis
On Wed, 3 Nov 2010, h0453...@wu.ac.at wrote: Hi I fitted an ARIMA model using the function arima(). The output consists of the fitted coefficients with their standard errors. However i need information about the significance of the coefficients, like p-values. I hope you can help me on

Re: [R] getting p values

2010-01-13 Thread S Ellison
Duncan Murdoch murd...@stats.uwo.ca 12/01/2010 18:07:46 I need to get the p values for a table with 15000 entries of t values. ... Put the t values into a vector, then use pt() in an appropriate way ... and don't forget any necessary correction for multiple comparisons; see ?p.adjust

[R] getting p values

2010-01-12 Thread Rosario Garcia Gil
Dear colleges I need to get the p values for a table with 15000 entries of t values. Does any of you know how to do it? I can, of course, get one by one but that is not sensible. Thanks Rosario __ R-help@r-project.org mailing list

Re: [R] getting p values

2010-01-12 Thread Duncan Murdoch
On 12/01/2010 10:47 AM, Rosario Garcia Gil wrote: Dear colleges I need to get the p values for a table with 15000 entries of t values. Does any of you know how to do it? I can, of course, get one by one but that is not sensible. Put the t values into a vector, then use pt() in an