Create Oracle Tables

libname oradb Oracle User=orauser Password=xxxxxxx Path=”@orapth”; proc sql;&nbsp &nbsp &nbsp create table oradb.dsn as&nbsp &nbsp &nbsp 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…