1 / 5

Quick Data Summaries in SAS

Quick Data Summaries in SAS. Start by bringing in data Use permanent data set for these examples Proc Summary Produces summaries relatively easily Designed to produce a table of output that can be manipulated further ***This is a critical difference from tabulate***

bob
Télécharger la présentation

Quick Data Summaries in SAS

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Quick Data Summaries in SAS • Start by bringing in data • Use permanent data set for these examples • Proc Summary • Produces summaries relatively easily • Designed to produce a table of output that can be manipulated further ***This is a critical difference from tabulate*** • Need to pre-sort data by any “by” groups • Need to print out results

  2. Quick Data Summaries in SAS • Basic Summary Syntax: Proc sort; By var1 var2; Run; Proc summary; By var1 var2; Var variable3; Output out=new_table mean=mean_name n=n_name….; Run; Proc print; Run;

  3. Statistics available in Proc Summary • Mean, n, standard deviation, standard deviation, variance, coefficient of variation, sum • Minimum, maximum, range, number of missing observations, median

  4. Some Quirks of Proc Summary • Whenever you use proc summary, it adds two new variables: _type_ and _freq_ (note underscores at beginning and end of variable names • _freq_ indicates the number of observations • _type_ indicates whether the output is a matrix or not • You can ignore these variables in virtually all cases • You need to remember what is the “active” dataset, or specify the dataset that summary will operate on • The active dataset is the most recently used dataset by default

  5. Shannon’s Diversity Index H= -∑ pi ln(pi)

More Related