Search Results

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

Display class data filtered by gender

Generates a report listing students from the SASHELP.CLASS table, filtered by a gender macro variable.

Code SAS
Voir

Simple extraction via PROC SQL

Selection of demographic columns from the SASHELP.CLASS table.

Code SAS
Voir

Transposing the SASHELP.CLASS table

Simple example of transposing columns into rows using the CLASS table.

Code SAS
Voir

Formatted Display of the SASHELP.CLASS Table

Generates a filtered and formatted report from the SASHELP.CLASS table.

Code SAS
Voir

Exporting Data to CSV

Exports the sashelp.class table to a CSV file.

Code SAS
Voir

Export SASHELP.CLASS data to CSV

This SAS script exports the content of the standard SASHELP.CLASS table to a CSV file named class.csv, including column headers.

Code SAS
Voir

Using SAS Macro Variable Lists to Create Dynamic Data-Driven Programs

This SAS script is designed to extract student names from the SASHELP.CLASS dataset, concatenate them into a tilde-separated list, and count the total number of students. This information is then stored in SAS macro variables for later use. The provided code is a skeleton that requires additions ...

Code SAS
Voir

Data Flow Analysis with SCAPROC

This SAS script illustrates a complete data manipulation process, from creating datasets based on SASHELP.CLASS, aggregations, sorting, merging, and SQL joins. It also uses SCAPROC macros to record and analyze the program's execution flow, allowing for the generation of a GraphViz flow diagram.

Code SAS
Voir

Table Creation with PROC DS2

This script uses PROC DS2 to create a new table named 'tatat' from the SASHELP.CLASS dataset, while initializing variables.

Code SAS
Voir

Export SASHELP.CLASS to CSV

Exporting data from the SASHELP.CLASS table to a local CSV file.