[Thread Prev][Thread Next][Index]

Re: [ferret_users] Trend error and significance



Hello Siva,

to create the trend of your data set, is rather easy: run the regresst operation and before that define p and q as it is said in the JNL.

yes? let p = t[gt=maxm] !suppose my var is maxm with 40 data points in time (its 1D)
yes? let q = maxm
yes? go regresst
yes? plot/vs p,qhat !plot the trendline

to have the significance as well is a bit more complex problem, which i solved with the following: i used the correlation to decide whether the trendline is significant or not using Student's t-test.

yes? let bigr=(rsquare^0.5)*(slope/abs(slope)) !the empirical correlation. the regresst counted its square and i want to decide whether the bigr is positive or negative using slope (its also created after regresst)
yes? let f=40-2 !the number of points is 40, and f is the degrees of freedom
yes? let ttest=((bigr)/((1-(bigr^2))^0.5))*(f^0.5) !this is a t-test value using correlation.
yes? list ttest

We need to look at the two-tailed (or one) t-table and find the desired critical t. If ttest is greater then the critical t-value the trend IS SIGNIFICANT.
yes? let sign=if abs(ttest) ge 1.69 then 1 !1.69 is the value of 90% confidence interval in the two-tailed t-test table.

If you needed more info about this issue, let me know.
Hope this helps (for others as well),

Peter

On Fri, Aug 7, 2009 at 5:51 PM, yangxing zheng <yangxingz@xxxxxxxxx> wrote:
Hi Siva,

    I think David Wang has provided a method that posted couple months ago. I copy the message for you, as shown below:

-------------------------------------------
BTW, there is a caveat that the approximation of 95% confidence interval by "two sigma" can only be used when the degree of freedom is sufficient large. This student's t-table makes it clear (t = slope/sigmab).

http://www.ncsu.edu/chemistry/resource/t-table.html

D.

On Thu, Mar 5, 2009 at 7:08 PM, David Wang <climater@xxxxxxxxx> wrote:
Hi Ferreters,

I recently wanted to calculate the 95% confidence interval for a linear regression by the way of regresst.jnl, and found it's quite straightforward. There is a question on this in the archive that remains unanswered (http://www.pmel.noaa.gov/maillists/tmap/ferret_users/fu_2006/msg00428.html). So I put forth my two cents here risking everybody has already known it.

The idea is that 95% confidence interval is about "two sigma" (http://en.wikipedia.org/wiki/Uncertainty#Measurements). So the problem boils down to estimating the sampling standard deviation of the regression slope. Following Wilks's book (statistical methods in atmospheric science, chapter 6.2), the sampling distribution for slope is Gaussian and its sampling standard deviation is given in the equation 6.18b. In Ferret, after regresst.jnl, issue the following two commands:

let >let sigmab = ((qvar/pvar-slope*slope)/(ones[t=@sum]-2))^0.5

And the 95% error bar is 2*sigmab. If the confidence interval at a different significance level (say, 90%) is desirable, one can simply go to the lookup table for the t-test and figure out how many "sigma" s/he needs.

HTH,
D.
--------------------------------------------------------------------------------
--- On Fri, 8/7/09, siva <sivamtech07@xxxxxxxxxxxxxx> wrote:

From: siva <sivamtech07@xxxxxxxxxxxxxx>
Subject: [ferret_users] Trend error and significance
To: ferret_users@xxxxxxxx
Date: Friday, August 7, 2009, 9:04 PM


Hi all,

I want to do trend analysis.

Actually i am able to get trend of a particular variable, using regresst.jnl. But there is no variable inside this JNL, defining trend error and confidence level of the trend.

Is there any function/JNL for getting these?

Thanks in advance..

Regards

S.Siva Reddy
Senior Research Fellow
UCESS/INCOIS
University of Hyderabad
Hyderabad
Mob:9908248120



[Thread Prev][Thread Next][Index]

Contact Us
Dept of Commerce / NOAA / OAR / PMEL / TMAP

Privacy Policy | Disclaimer | Accessibility Statement