|
楼主

楼主 |
发表于 2011-8-29 11:00:25
|
只看该作者
My 10 wishes for SAS
From Dapangmao's blog on sas-analysis
<div class="separator" style="clear: both; text-align: center;"><a href="http://4.bp.blogspot.com/-NzL9W89wOqU/Tlr-wWEGPPI/AAAAAAAAAvY/WH2Nhdnxkcs/s1600/Capture.JPG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="203" src="http://4.bp.blogspot.com/-NzL9W89wOqU/Tlr-wWEGPPI/AAAAAAAAAvY/WH2Nhdnxkcs/s400/Capture.JPG" width="400" /></a></div><br />
No wonder that SAS 9.3 is one of SAS’s greatest products. Beyond it, I have 10 secret wishes and hope the far-away SAS 9.3.2 or SAS 9.4 might realize them. <br />
<br />
1. Trigger for SAS dataset<br />
A wonderful thing about SAS is that it can be used as a RDBMS with full functionality. Just one piece from the SQL language is missing in SAS - trigger. Adding triggers would bring more security for SAS datasets or data views. <br />
<br />
2. PROC PIVOT for pivot table<br />
Pivot table is a huge business success, since I found that every boss loves to do point-and-click data aggregation in Excel (why they not just use the simple PROC FREQ of SAS?). I often spend many hours to painfully decorate a pivot table. A procedure to directly export SAS’ dataset to pivot-table-contained Excel spreadsheet is going to be a big plus.<br />
<br />
3. Visible hash objects<br />
Hash object offers an efficient alternative to the hard disk based Data Step programming.<a href="http://support.sas.com/publishing/authors/burlew.html"> Michele Burlew</a>’s <a href="http://support.sas.com/publishing/bbu/new_titles2.html#burlew">new book </a>about it this fall would be a milestone for this emerging technology since SAS 9.1. If SAS windowing environment provides the views for the hash objects through the library explorer, matching or lookup on the hash objects would be better perceived. <br />
<br />
4. A multi-threading LOGISTIC procedure<br />
Last week Rick introduced how to open multiple workspace instances to<a href="http://blogs.sas.com/content/iml/2011/08/22/multithreaded-more-productive/"> make SAS/IML multi-threading</a>. For many SAS users, PROC LOGISTIC is worthy of the half price they paid for SAS. It seems that SAS is developing a <a href="http://blogs.sas.com/sgf/index.php?/archives/207-The-low-down-on-high-performance-computing-and-10-new-PROCS.html">multi-threading HPLOGISTIC procedure</a> for Teradata or in-database technology. However, a multi-threading LOGISTIC procedure is still very much desired in SAS/STAT.<br />
<br />
5. A system options for decimal places<br />
It is well known that to export the tables by ODS and then change the formats would allow displaying more decimal places for SAS’s results. However, a system option specifying the number of digits in the result would save coding time. <br />
<pre style="background-color: #ebebeb; border: 1px dashed rgb(153, 153, 153); color: #000001; font-size: 14px; line-height: 14px; overflow: auto; padding: 5px; width: 100%;"><code>
/*******************OPTION 1 ***********************************************
* From NOTE 37106 at support.sas.com/kb/37/106.html
* How can I display more or fewer decimal places in procedure results
* -- Change the decimal places for a table
****************************************************************************/
ods output parameterestimates = pe;
proc reg data = sashelp.class;
model Weight = Height;
run; quit;
proc print data = pe label noobs;
format _numeric_ 12.8 ;
run;
/*******************OPTION 2 ***********************************************
* From Robin High at <!-- m --><a class="postlink" href="http://listserv.uga.edu/cgi-bin/wa?A2=ind0704b&L=sas-l&P=73559">http://listserv.uga.edu/cgi-bin/wa?A2=i ... -l&P=73559</a><!-- m -->
* Re: How to display p value with more dicimal digits
* -- Change the decimal places for all p-values
****************************************************************************/
proc template;
define column Common.PValue;
format = pvalue12.8;
end;
run;
proc reg data = sashelp.class;
model Weight = Height;
run; quit;
</code></pre><br />
6. Supporting vector machine in SAS/STAT<br />
Although SAS Enterprise Miner 7.1 has two procedures: PROC SVM and PROC SVMSCORE, they seem primitive and <a href="http://support.sas.com/documentation/cdl/en/whatsnew/64209/HTML/default/viewer.htm#emdocwhatsnew71.htm">only apply for bivariate response variable</a>. A procedure for SVM in SAS/STAT alongside the robust GLM-based procedures there would relieve many desperate SAS coders who got projects to do SVM with SAS. <br />
<br />
7. A trial version (or learning edition)<br />
One friend of mine is still using SAS 6 and insists that it is the culminating product. If there is a trial edition of SAS 9.3 available he can taste, he probably may change his idea. A learning edition with no cost or little cost can also attract more people to start to learn SAS.<br />
<br />
8. PROC TEXTCLOUD<br />
Text cloud is a fancy visualization tool, although it does nothing about statistics. For example, Rick summarized <a href="http://blogs.sas.com/iml/index.php?/archives/112-Happy-Milestone-to-Me-My-100th-Blog-Post.html">his first 100 blog posts</a> by it. R also has a nice package ' wordcloud'. A text cloud procedure would definitely make SAS more fun. <br />
<br />
9. Random forest in Enterprise Miner<br />
Random forest is one of the popular classification methods, which has not been included in Enterprise Miner 7.1 yet. Hope in the future it could become one of the modeling nodes someday. <br />
<br />
10. Reasonably priced SAS cloud<br />
Amazon is earning a windfall of money by its cloud services. And many start-ups provide <a href="http://cloudnumbers.com/">R clouds</a>. A PC SAS or UNIX SAS cloud may be a lucrative business for SAS. And I will be happy to show SAS to my friends on iPad or Android phone. <div class="blogger-post-footer"><img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3256159328630041416-8602539222501518247?l=www.sasanalysis.com' alt='' /></div><img src="http://feeds.feedburner.com/~r/SasAnalysis/~4/nWjgd9tNPbE" height="1" width="1"/> |
|