09-01-2015
barchan
Calcite | Level 5
Member since
05-15-2013
- 7 Posts
- 0 Likes Given
- 0 Solutions
- 7 Likes Received
-
Latest posts by barchan
Subject Views Posted 5417 05-28-2015 05:39 AM 37950 12-28-2014 07:01 PM 38056 12-15-2014 05:39 AM 130507 07-18-2014 04:34 AM 2031 04-16-2014 04:07 AM 2999 02-20-2014 08:08 AM 2679 02-20-2014 04:49 AM 2064 12-12-2013 05:11 AM 1961 12-12-2013 03:58 AM -
Activity Feed for barchan
- Got a Like for Re: Hard question: Selecting observation(s) conditionally by group. 09-01-2015 04:24 AM
- Got a Like for Re: Creating a change-variable with unique data set. 09-01-2015 04:24 AM
- Posted Re: X command and call system not working correctly on SAS Programming. 05-28-2015 05:39 AM
- Posted Re: Distribution function of a linear combination of chi-squares on SAS Communities Library. 12-28-2014 07:01 PM
- Posted Distribution function of a linear combination of chi-squares on SAS Communities Library. 12-15-2014 05:39 AM
- Posted Re: Last 5 characters from string(irrespective of the length) on SAS Programming. 07-18-2014 04:34 AM
- Posted Changing the number of decimals displayed on ODS and Base Reporting. 04-16-2014 04:07 AM
- Posted Re: Creating a change-variable with unique data set on SAS Procedures. 02-20-2014 08:08 AM
- Posted Re: Creating a change-variable with unique data set on SAS Procedures. 02-20-2014 04:49 AM
- Got a Like for Re: SUBSETTING. 12-12-2013 12:29 PM
- Posted Re: SUBSETTING on SAS Procedures. 12-12-2013 05:11 AM
- Posted Re: Hard question: Selecting observation(s) conditionally by group on SAS Programming. 12-12-2013 03:58 AM
-
My Liked Posts
Subject Likes Posted 3 12-12-2013 03:58 AM 3 02-20-2014 04:49 AM 1 12-12-2013 05:11 AM -
My Library Contributions
05-28-2015
05:39 AM
Just a hint: Are the system options XSYNC and XWAIT turned on? options xwait xsync; proc options option=(xwait xsync); run;
... View more
12-28-2014
07:01 PM
Thanks Rick, I like the graphical presentations and the simple series subroutine. The PDF can also be calculated by replacing the CDF of the gamma distribution in the module by the corresponding PDF. The numerical differentiation that you supplied was a valuable check. Regards
... View more
12-15-2014
05:39 AM
An IML module is provided for calculating the distribution function and the density of a positive linear combination of independent central chi-square variates. The cumulative distribution function (CDF) is obtained by inverting the moment generating function as described in the paper by Moschopoulos and Canada: "The distribution function of a linear combination of chi-squares" (Comp. and Maths. with Appls., Vol.10, Nº 4/5, pp 383-386, 1984) . The distribution function is expressed as an infinite series of gamma distribution functions. Similarly, the density (PDF) can be expressed as an infinite series of gamma densities. The number of terms of the series used in calculating the CDF and the PDF should be specified by the user. An upper limit of the truncation error is provided for both, PDF and CDF. Optionally, the CDF may be estimated by simulation.
... View more
- Find more articles tagged with:
- chi_square_variates
- distribution
Labels:
07-18-2014
04:34 AM
Here is another proposal: data have; input char $char20.; cards; 1234567890 123456 987654321 8888888 999999999 4242424 run; data want; set have; length char_new $5; char_new=left(reverse(char)); char_new=reverse(char_new); run; proc print data=want; run;
... View more
04-16-2014
04:07 AM
Hi, what exactly is the syntax with PROC TEMPLATE to change the number of decimals displayed in the output. For example, in the FitStatistics table of PROC REG (template Stat.REG.FitStatistics) display the value of R-square (which is cValue2 in the table) with 2 decimals instead of the usual 4 decimals. Thanks!
... View more
02-20-2014
08:08 AM
My previous code was wrong because the output in the datastep CHANGE stopped prematurely. The following is better. data hold; length portfol $4 year qtr 8 stock $4 amt 8; input portfol--amt; cards; p1 2000 1 s1 100 p1 2000 1 s2 200 p1 2000 1 s3 50 p1 2000 1 s4 100 p1 2000 2 s1 150 p1 2000 2 s3 100 p1 2000 2 s4 100 p1 2000 3 s1 200 p1 2000 3 s3 100 p1 2000 3 s4 150 p1 2000 3 s5 100 p1 2000 4 s3 100 p1 2000 4 s4 150 p1 2000 4 s5 100 p2 2000 1 s1 100 p2 2000 1 s2 200 p2 2000 1 s3 50 p2 2000 1 s4 100 p2 2000 2 s3 100 p2 2000 2 s4 100 p2 2000 3 s1 200 p2 2000 3 s3 100 p2 2000 3 s4 150 p2 2000 3 s5 100 run; data prev(rename=(amt=prev_amt)); set hold; qtr=qtr+1; year=year; if qtr=5 then do; qtr=1; year=year+1; end; run; proc sort data=hold(keep=portfol year qtr) out=qtrs nodupkey; by portfol year qtr; run; data change; merge hold prev; by portfol year qtr stock; change=max(0,amt)-max(0,prev_amt); run; data out; merge qtrs(in=_qtrs) change; by portfol year qtr; if _qtrs; run; options missing="-"; proc print data=out; by portfol year qtr; id portfol year qtr; run;
... View more
02-20-2014
04:49 AM
3 Likes
Try this one: data hold; length portfol $4 year qtr 8 stock $4 amt 8; input portfol--amt; cards; p1 2000 1 s1 100 p1 2000 1 s2 200 p1 2000 1 s3 50 p1 2000 1 s4 100 p1 2000 2 s1 150 p1 2000 2 s3 100 p1 2000 2 s4 100 p1 2000 3 s1 200 p1 2000 3 s3 100 p1 2000 3 s4 150 p1 2000 3 s5 100 run; data prev(rename=(amt=prev_amt)); set hold; qtr=qtr+1; year=year; if qtr=5 then do; qtr=1; year=year+1; end; run; data change(drop=flag); merge hold(in=_hold) prev; by portfol year qtr stock; if first.qtr & ^_hold then stop; if _N_>1 & qtr^=lag(qtr) then flag+1; if flag then do; prev_amt=max(0,prev_amt); amt=max(0,amt); change=amt-prev_amt; end; run; proc print data=change; by portfol year qtr; id portfol year qtr; run;
... View more
12-12-2013
05:11 AM
1 Like
The following code extracts the very first record and the first record after change of CODES: data want(drop=xcode flag); length xcode $4; do until(last.id); set have; by id; if first.id then do; output; xcode=codes; end; if codes^=xcode then do; if ^flag then output; flag=1; end; end; run;
... View more
12-12-2013
03:58 AM
3 Likes
Here is another: proc sort data=have; by group descending xnum; run; data want(keep=group--xmax); length group $1 xxx $100 xmax 8; do until(last.group); set have; by group; if first.group then xmax=xnum; if xnum=xmax then xxx=catx("/",xxx,x); end; run;
... View more