febrero 12, 2013

Matriz de diagramas de dispersión en SAS

/*Diagrama de dispersión o Scatterplot usando SAS/INSIGHT*/
*Importando cars.xls al editor de SAS;
proc import datafile = "C:\Users\Administrator\Desktop\cars.xls"
    out = cars;
    getnames=yes; run;

ods html;
/*Las siguiente sintaxis funcionan únicamente si SAS/INSIGHT se encuentra instalado;
  Visualizando 9 variables */
proc insight data = cars;
   scatter model mpg cylinders displacement horsepower weight acceleration year origin * model mpg cylinders displacement horsepower weight acceleration year origin;

run;


*Visualizando 3 variables;
proc insight data = cars;
   scatter mpg horsepower acceleration * mpg horsepower acceleration;
run;

ods html close;





No hay comentarios.: