Post Reply 
Critical values
06-14-2017, 12:48 PM (This post was last modified: 06-14-2017 12:50 PM by Didier Lachieze.)
Post: #7
RE: Critical values
Here is a small program with the instructions provided by Claudio.

PMCC(8,0.95) returns 0.6215 in FIX 4 mode which seems to be what you expect.

Code:
EXPORT PMCC(n,cl)
BEGIN
  LOCAL t,df;
  df:=n-2;
  t:=STUDENT_ICDF(df,1-cl);
  RETURN sqrt(t^2/(t^2+df));
END;
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Critical values - ChrisHP - 06-12-2017, 06:24 PM
RE: Critical values - Tim Wessman - 06-13-2017, 06:07 PM
RE: Critical values - Claudio L. - 06-13-2017, 06:28 PM
RE: Critical values - Claudio L. - 06-13-2017, 08:57 PM
RE: Critical values - ChrisHP - 06-13-2017, 06:57 PM
RE: Critical values - ChrisHP - 06-14-2017, 12:35 PM
RE: Critical values - Didier Lachieze - 06-14-2017 12:48 PM
RE: Critical values - ChrisHP - 06-14-2017, 01:20 PM
RE: Critical values - Tim Wessman - 06-15-2017, 02:36 PM
RE: Critical values - ChrisHP - 06-15-2017, 04:31 PM



User(s) browsing this thread: 1 Guest(s)