tag:blogger.com,1999:blog-29815492.post3028162046104849377..comments2012-04-18T02:22:38.505-04:00Comments on SAS Programming for Data Mining Applications: Multi-Threaded Principle Component AnalysisLiang Xiehttp://www.blogger.com/profile/02274752582289554390[email protected]Blogger3125tag:blogger.com,1999:blog-29815492.post-55312646031838071312012-03-19T10:22:51.797-04:002012-03-19T10:22:51.797-04:00Amit: I am not aware of anyone implementing tha...Amit:<br /> I am not aware of anyone implementing that algorithm, but when I have time, I can have a try, super busy recently.<br />LiangLiang Xiehttp://www.blogger.com/profile/02274752582289554390[email protected]tag:blogger.com,1999:blog-29815492.post-51074529076502870552012-03-09T10:50:48.630-05:002012-03-09T10:50:48.630-05:00Hi, I am trying to find any implementation of Stat...Hi,<br />I am trying to find any implementation of Statistical Data depth in SAS. Do you have any SAS code to compute it (I dont have IML).<br /><br />The seminal paper for this is &quot;MULTIVARIATE ANALYSIS BY DATA DEPTH: DESCRIPTIVE STATISTICS, GRAPHICS AND INFERENCE by BY REGINA Y. LIU, JESSE M. PARELIUS AND KESAR SINGH , The Annals of Statistics 1999, Vol. 27, No. 3, 783-858&quot;Amithttp://www.blogger.com/profile/15614735994927989683[email protected]tag:blogger.com,1999:blog-29815492.post-20221447361004841192012-02-01T09:48:37.844-05:002012-02-01T09:48:37.844-05:00Nice finding! Great article -- it seems that SAS a...Nice finding! Great article -- it seems that SAS allocated the jobs equally to 4 cores.<br /><br />How about you do a benchmark, like:<br />options nothreads ;<br />proc princomp data=_junky noprint;<br /> var x:;<br />run;<br /><br />options threads cpucount=2;<br />proc princomp data=_junky noprint;<br /> var x:;<br />run;<br /><br />options threads cpucount=3;<br />proc princomp data=_junky noprint;<br /> var x:;<br />run;<br /><br />options threads cpucount=4;<br />proc princomp data=_junky noprint;<br /> var x:;<br />run;CHARLIE HUANGhttp://www.blogger.com/profile/07804101340982010383[email protected]