Use the AUTOHREF and AUTOVREF options on the PLOT statement of PROC GPLOT to draw reference lines at all major tickmarks. Create an annotate data to draw thicker reference lines at the desired tickmarks.goptions reset=all;/* Create sample data */data …
PROC LOGISTIC options: selection=, hierarchy=
An additional option that you should be aware of when using SELECTION= with a model that has the interaction as a possible variable is the HIERARCHY= option. It specifies whether and how the model hierarchy requirement is applied and whether a single e…
Create Oracle Tables
libname oradb Oracle User=orauser Password=xxxxxxx Path=”@orapth”; proc sql;      create table oradb.dsn as      select * from temp;quit;run;proc append base=oradb.dsn data=temp1 force;run;
Decision Trees in SAS Enterprise Miner and SPSS Clementine
Decision trees are included in SAS Enterprise Miner(EM). The counterpart is SPSS Clementine, which should be called IBM SPSS Modeler for precision after IBM’s acquisition of SPSS.
Recently I read a paper on the comparisons of SAS EM, SPSS Clementine and IBM Intelligent Miner on their decision tree and cluster technology:
Decision Tree Induction & Clustering Techniques […]
Bayesian Computation with SAS (1).
The book “Bayesian Computation with R” by Jim Albert is an easy to read entry level book on applied Bayesian Statistics. While the book was written for R users, it is not difficult to translate the languages between R and SAS and I believe it is a go…
We Wanted to Call It "All the Statistics You Missed in B-School"
Happy New Year!! This is a good time to think about what was going on here in SAS Education one year ago, and to introduce you to a big project that I’m really excited to “take public.”
In January 2010 (as well as throughout 2009), we kept getti…