Showing posts with label CDM. Show all posts
Showing posts with label CDM. Show all posts

Learn Basic SAS Programming for beginners part I


This post will help you to learn basic SAS programming skills and You'll learn how SAS data sets are stored temporarily or permanently in SAS libraries. You'll also learn details about SAS data sets, which are files that contain data that is logically arranged in a form that SAS can understand. SAS programs used to access, manage, analyze, or present data. Let's begin by looking at a simple SAS program.

data clinic.admit2;
set clinic.admit;
run;
proc print data=clinic.admit2;
run;

This program creates a new SAS data set from an existing SAS data set and then prints a listing
of the new data set. A SAS data set is a data file that is formatted in a way that SAS can
understand.

Read more...

Followers

Networked Followers

TopOfBlogs

  © Copyright Techwebbee by Techwebbee 2010

Back to TOP