Search Results

158 résultats trouvés Page 2 / 16
Code SAS
Voir

Dynamic column width calculation for export

Utility script analyzing metadata and content of the SASHELP.CLASS table to determine maximum variable and data lengths, potentially to optimize column widths during export (e.g., Excel).

Code SAS
Voir

Simple graph with PROC GPLOT

This SAS script uses the GPLOT procedure to create a scatter plot of the 'weight' and 'height' variables from the SASHELP.CLASS example dataset. The initial comment block indicates relationships with other processes or documentation (pre-condition, post-condition, configuration file).

Code SAS
Voir

Creating macro variables with leading zeros via PROC SQL

Script generating a series of numbered macro variables (name01 to name19) from the data in the SASHELP.CLASS table.

Code SAS
Voir

Regression Analysis and SASHELP Metadata Exploration

This SAS script performs a simple linear regression to model weight as a function of height using the `sashelp.class` dataset. It then proceeds to explore the metadata of the `sashelp` library by listing all its members into a temporary dataset, and then specifically printing members of type 'DAT...

Code SAS
Voir

Introduction to PROC MCMC Example

This script illustrates an introductory example of using the PROC MCMC procedure for Bayesian regression analysis, modeling weight as a function of height using the SASHELP.CLASS dataset.

Code SAS
Voir

Regenerating Diagnostic Plots

This script performs a Bayesian MCMC analysis on the `sashelp.class` dataset and then generates diagnostic plots for the analysis results.

Code SAS
Voir

Test for creating and executing a SAS Viya web service

This SAS script tests the full lifecycle of a web service on SAS Viya: creation, execution via a jobflow, retrieval of the log and results, and final validation. The web service exposes the content of the `sashelp.class` dataset.

Code SAS
Voir

Folder Creation and Data Copy

This SAS script defines a macro to create a folder on the file system, then uses it to create a specified folder and copy the SASHELP.CLASS dataset into it.

Code SAS
Voir

Using Macro Variable Lists for Dynamic Programs

Dynamically creating macro variables from SASHELP.CLASS dataset and displaying them in the SAS log.

Code SAS
Voir

Regression Analysis on Class and Population Data

This SAS script performs regression analyses on the internal 'sashelp.class' dataset and on a population dataset created from literal data, using ODS to capture intermediate results.