/*Diagrama de dispersión o Scatterplot usando
SAS/INSIGHT*/
*Importando cars.xls al editor de SAS;
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.:
Publicar un comentario