Search Results

121 résultats trouvés Page 8 / 13
Code SAS
Voir

100% Stacked Bar Chart (3D) with SGPLOT

proc sgplot data=my_data noautolegend pad=(left=10% right=15%); label catpct='PERCENT'; styleattrs datacolors=(cx9999ff cx993366 cxffffcc); vbar category / response=catpct stat=sum group=series barwidth=.6 dataskin=sheen /*

Code SAS
Voir

Generation of Connected Scatterplots with SGPLOT

proc sgplot data=iris; title 'Fisher (1936) Iris Data'; series x=petallength y=petalwidth; run;

Code SAS
Voir

Generation of Connected Scatterplots with SGPLOT

ods graphics / reset = all attrpriority=color border = no width =500px height =300px imagename = "connected_scatterplot2" imagefmt = png outputfmt = png antialiasmax = 10000; proc sgplot data=iris; title 'Fisher (1936) Iris Data'; series x=petallength y=petalwidth / group=species DATASKIN=PRESS...

Code SAS
Voir

Density Plot with PROC SGPLOT

ods listing gpath="/home/mySASData/resources_github/Graph/Distribution/img" image_dpi=200; *---------------------------------------------------; ods graphics / reset = all attrpriority=color border = no width = 600px height = 400px imagename = "density1" imagefmt = png outputfmt = png antial...

Code SAS
Voir

Density Plot with PROC SGPLOT

*---------------------------------------------------; ods graphics / reset = all attrpriority=color border = no width = 600px height = 400px imagename = "density2" imagefmt = png outputfmt = png antialiasmax = 10000; title '2# Distribution of two numerical variables MSRP and Invoice from the...

Code SAS
Voir

Measles Cases and MMR Vaccination Coverage by Year

ods graphics / reset attrpriority=color width=5in height=3in imagename='2_1_Measels'; title 'Measles Cases and MMR Uptake by Year'; proc sgplot data=Measles noborder; vbar year / response=vaccine nostatlabel y2axis fillattrs=(color=green) filltype=gradient baselineattrs=(thicknes...

Code SAS
Voir

Non-parametric analysis of candidate incomes

proc sgplot data=work.repincome; vbox income / category=candidate; run; proc sgplot data=work.repincome; scatter y=income x=candidate; run;

Code SAS
Voir

Longitudinal Analysis and Mixed Model

proc sgplot data = geneout; scatter x = Hours y = mean; series x = Hours y = mean / group=characteristics; title 'Homework 5 Question 1'; title2 'Mean IFITM3 by Hours'; run; title; title2;

Code SAS
Voir

Generating Heatmaps with SGPLOT and SGPANEL

proc sgplot data=sashelp.heart; heatmap x=weight y=cholesterol; run;

Code SAS
Voir

Documentation Example for PROC HPNLMOD

proc sgplot data=b noautolegend; yaxis label='Observed or Predicted'; refline 0.7775 / axis=y label="Plateau" labelpos=min; refline 12.7477 / axis=x label="Join point" labelpos=min; scatter y=y x=x; series y=yp x=x; run;