This SAS script demonstrates the use of PROC MODECLUS for cluster analysis on unidimensional data, exploring the impact of the THRESHOLD parameter on clustering results, and visualizes the results with PROC SGPLOT.
This SAS script demonstrates the use of the MODECLUS procedure for cluster analysis and the SGPLOT procedure for visualizing the results on an internally generated dataset.
Demonstration of legend customization capabilities in SAS graphics, including symbol dimension management and Unicode character integration.
Script generating random data to create a custom scatter plot.
This script performs a survival analysis on SASHELP.BMT data, generates survival curve data via PROC LIFETEST, then uses PROC SGPLOT to create multiple visualizations of the Kaplan-Meier curve with subjects at risk tables.
This script generates data simulating tumor size variation and creates two 'waterfall plot' bar charts with PROC SGPLOT to visualize these changes.
This SAS script defines and uses two macros to analyze and visualize the distribution and the empirical cumulative distribution function (ECDF) of a numerical variable. It compares an approach using PROC UNIVARIATE with a manual approach combining a DATA STEP and PROC SGPLOT.
This script illustrates the creation of an ODS document containing multiple reports and a graph. It prepares data from SASHELP, then generates tables with PROC REPORT and a bar chart with PROC SGPLOT, all stored within an ODS DOCUMENT.
proc sgplot data = bmi; vbar bmi; run;
proc sgplot data = bmi; vbar bmi / datalabel; run;