SlideShare uma empresa Scribd logo
1 de 31
Baixar para ler offline
Introduction to
    Data Set Options
         Mark Tabladillo, Ph.D.
Software Developer, MarkTab Consulting
Associate Faculty University of Phoenix
          Faculty,
           January 30, 2007
Introduction
• Data set options allow features during
  dataset processing
• Most SAS data set options can apply to
  either input or output SAS data sets in
  DATA steps or procedure (PROC) steps
• Data set options allow the data step to
  control variables, observations, security,
      t l    i bl     b     ti          it
  and data set attributes
Outline
• Define data set options
• Provide examples in four categories
• Di
  Discuss d t set processing rules
          data t          i     l
Outline
• Define data set options
• Provide examples in four categories
• Di
  Discuss d t set processing rules
          data t          i     l
Definition
• Data set options specify actions that
  apply only to the SAS data set with which
  they appear
       appear.




http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
Syntax
• Specify a data set option in parentheses
  after a SAS data set name. To specify
  several data set options separate them
                   options,
  with spaces.
  (option-1=value-1<...option-n=value-n>)
  (option 1=value 1< option n=value n>)




http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
Outline
• Define data set options
• Provide examples in four categories
• Di
  Discuss d t set processing rules
          data t          i     l
Quick Examples
• Data set options enable us to perform
  operations such as these:
    – Renaming variables
    – Selecting only the first or last n observations
      for processing
    – Dropping variables from processing or from
      the output data set
    – Specifying a password for a data set
    – Adding dataset labels
http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
Common Option Categories
•   Variable Control
•   Observation Control
•   Security
    S     it
•   Data Set Attributes
Examples Dataset
data work.sales (drop=i randomState);
        length state $2 sales 8 randomState 3;
        do i = 1 to 2500;
                  randomState = round(rand('gaussian',3,1)+0.5);
                  if randomState in (1,2,3,4,5) then do;
                           select(randomState);
                             l t( d St t )
                                     when(1) state='TN';
                                     when(2) state='AL';
                                     when(3) state='GA';
                                          ( )            ;
                                     when(4) state='FL';
                                     when(5) state='MS';
                           end;
                           sales = int(rand('gaussian' 1000000 500000));
                                   int(rand('gaussian',1000000,500000));
                           output work.sales;
                  end;
        end;
        run;
List of Common Options
              SAS Data Set Option      Description


Variable      DROP= Data Set           Excludes variables from
   Control      Option                   processing or from output SAS
                                         data sets
              KEEP= Data Set           Specifies variables for processing
                Option
                 p                       or for writing to output SAS data
                                                      g       p
                                         sets

              RENAME= Data Set         Changes the name of a variable
                Option
                O i




http://support.sas.com/onlinedoc/913/getDoc/en/lrdict.hlp/a000104210.htm
Examples: Variable Control
 data work salesReformat;
      work.salesReformat;
         set work.sales (drop=sales);
         run;

 data work.salesReformat2;
         set work.sales (keep=state);
         run;

 proc sort data=work.sales (rename=(state=salesState))
         out=work.salesReformat3 (drop=sales);
         by salesState;
         run;
List of Common Options
              SAS Data Set Option      Description



Observation   FIRSTOBS= Data Set       Specifies which observation SAS
  Control        Option                  processes first

              IN= Data Set Option      Creates a variable that indicates
                                          whether the data set contributed
                                          data to the current observation
              OBS= Data Set Option     Specifies when to stop processing
                                         obse a o s
                                         observations

              WHERE= Data Set          Selects observations that meet the
                Option                    specified condition


http://support.sas.com/onlinedoc/913/getDoc/en/lrdict.hlp/a000104210.htm
Examples: Observation Control
   * (obs - firstobs) + 1 = results;
   data work.selectObs1;
               set work.sales (firstobs=1 obs=200);
                              (                  );
               run;

   data work.selectObs2;
            set work.sales (firstobs=200 obs=400);
                           (                    );
            run;

   proc print data=work.sales (obs=25);
             run;
                ;

   proc freq data=work.sales (firstobs=1);
             tables state;
             run;;

   proc means data=work.sales (obs=max);
           class state;
                    ;
           var sales;
           run;
Examples: Observation Control
  data work combineObs1;
       work.combineObs1;
          set work.selectObs1 (in=in1) work.selectObs2 (in=in2);
          length source $12;
          if in1 then source = 'Dataset One';
          else if in2 then source = 'Dataset Two';
          run;

  data work combineObs2;
       work.combineObs2;
          set work.selectObs1 (in=in1) work.selectObs2 (in=in2);
          if in1 and in2 then output;
          run;
List of Common Options
           SAS Data Set Option         Description

Security   ALTER= Data Set Option      Assigns an alter password to a SAS file and
                                          enables access to a password-
                                          protected SAS file
           ENCRYPT= Data Set           Encrypts SAS data files
             Option
           PW= Data Set Option         Assigns a read, write, or alter password to a
                                          SAS file and enables access to a
                                          password-protected SAS file
           READ= Data Set Option       Assigns a read password to a SAS file and
                                          enables access to a read-protected
                                          SAS file
           WRITE= Data Set Option      Assigns a write password to a SAS file and
                                          enables access to a write-protected
                                          SAS file


http://support.sas.com/onlinedoc/913/getDoc/en/lrdict.hlp/a000104210.htm
Examples: Security
data work.secure1 (alter=NoErrors);
        set work.sales;
        run;

data work.secure2;
        set work.sales (alter=NoErrors);
            work sales
        run;

* Note: A SAS password does not control access to a SAS file beyond the SAS
system.
system You should use the operating system-supplied utilities and file-system
                                        system supplied               file system
security controls in order to control access to SAS files outside of SAS.;
data work.secure3 (encrypt=yes pw=Scramble);
        set work.sales;
        run;

proc sort data=work.secure3 (pw=scramble) out=work.secure4;
        by state sales;
          y           ;
        run;
List of Common Options
              SAS Data Set Option      Description
Data Set      COMPRESS= Data Set       Controls the compression of
Attributes      Option                   observations in an output SAS data
                                         set
              GENMAX= Data Set         Requests generations for a data set
                Option                   and specifies the maximum number
                                         of versions
              INDEX D
              INDEX= Data S
                          Set          D fi
                                       Defines i d
                                                indexes when a SAS d
                                                         h         data set
                 Option                   is created

              LABEL= Data Set          Specifies a label for the SAS data set
                Option




http://support.sas.com/onlinedoc/913/getDoc/en/lrdict.hlp/a000104210.htm
Examples: Data Set Attributes
data work.compress1 (compress=yes label=quot;Attempt at Compressionquot;);
        set work.sales;
        run;

data work masterSalesDataset (genmax=3);
     work.masterSalesDataset (genmax 3);
        set work.sales;
        run;

d t work.masterSalesDataset;
data   k     t S l D t     t
       set work.masterSalesDataset work.selectObs1;
       run;

data work.masterSalesDataset;
        set work.sales work.selectObs1;
        run;
Outline
• Define data set options
• Provide examples in four categories
• Di
  Discuss d t set processing rules
          data t          i     l
Input and Output Datasets
• If a data set option is associated with an
  input data set, the action applies to the
  data set that is being read.
                          read
• If the option appears in the DATA
  statement or after an output data set
  specification in a PROC step, SAS applies
  the action to the output data set
                                 set.


http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
Input and Output Datasets
   data
   d t _null_;
          ll
          run;

       ;
   data;
            run;

   data _null_;
           set _null_;
                null ;
           if _n_ ge 0 then put 'hello';
           run;

   data _null_;
           if _n_ ge 0 then put 'hello';
           set _null_;
           run;
Order of Execution
• When data set options appear on both input and
  output data sets in the same DATA or PROC
  step, SAS applies data set options to input data
  sets before it evaluates programming statements
  or before it applies data set options to output
  data t
  d t sets.
• Likewise, data set options that are specified for
  the data set being created are applied after
  programming statements are processed.

http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
Order of Execution

data work.salesReformat4 (rename=(sales=monthlySales));
        set work.sales;
        sales = sales/12;
        run;

data work.salesReformat5;
        set work.sales (rename=(sales=monthlySales));
        monthlySales = monthlySales/12;
        run;
Specification Conflicts
• In some instances data set options
            instances,
  conflict when they are used in the same
  statement For example you cannot
  statement.       example,
  specify both the DROP= and KEEP=
  options for the same variable in the same
  statement.



http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
Statement Definition
• A SAS statement is a series of items that
  may include keywords, SAS names,
  special characters and operators
          characters,    operators.
• All SAS statements end with a semicolon.
• A SAS statement either requests SAS to
           t t    t ith          t       t
  perform an operation or gives information
  to th
  t the system.
            t


http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612375.htm
Timing Conflicts
• Timing can also be an issue in some
  cases. For example, if using KEEP= and
  RENAME
  RENAME= on a data set specified in the
  SET statement, KEEP= needs to use the
  original variable names, because SAS will
                    names
  process KEEP= before the data set is
  read.
  read The new names specified in
  RENAME= will apply to the programming
  statements that follow the SET statement
                                 statement.
http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
Timing Conflicts

proc sort data=work.sales (keep=sales state
rename=(sales=monthlySales))
        out=work.salesReformat6;
        out=work salesReformat6;
        by state monthlySales;
        run;

proc sort data=work.sales (rename=(sales=monthlySales)
keep=sales state)
        out=work.salesReformat7;
        by state monthlySales;
        run;
Overriding System Options
• Many system options and data set options
  share the same name and have the same
  function.
• The data set option overrides the system
  option for the data set in the step in which
    p                               p
  it appears.
• System options remain in effect for all
     y      p
  DATA and PROC steps in a SAS job or
  session, unless they are respecified.
http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
Conclusion
• DATA set options allow features during
  data step processing
• The SAS System Documentation provides
  specific details on the syntax
Contact Information
• Mark Tabladillo
  MarkTab Consulting
  http://www.marktab.com/
  http://www marktab com/

Mais conteúdo relacionado

Mais procurados

Introduction to sas
Introduction to sasIntroduction to sas
Introduction to sasAjay Ohri
 
Understanding sas data step processing.
Understanding sas data step processing.Understanding sas data step processing.
Understanding sas data step processing.Ravi Mandal, MBA
 
SAS Macros part 2
SAS Macros part 2SAS Macros part 2
SAS Macros part 2venkatam
 
Introduction to SAS
Introduction to SASIntroduction to SAS
Introduction to SASizahn
 
Introduction To Sas
Introduction To SasIntroduction To Sas
Introduction To Sashalasti
 
Base SAS Full Sample Paper
Base SAS Full Sample Paper Base SAS Full Sample Paper
Base SAS Full Sample Paper Jimmy Rana
 
SAS cheat sheet
SAS cheat sheetSAS cheat sheet
SAS cheat sheetAli Ajouz
 
SAS Access / SAS Connect
SAS Access / SAS ConnectSAS Access / SAS Connect
SAS Access / SAS Connectguest2160992
 
Proc SQL in SAS Enterprise Guide 4.3
Proc SQL in SAS Enterprise Guide 4.3Proc SQL in SAS Enterprise Guide 4.3
Proc SQL in SAS Enterprise Guide 4.3Mark Tabladillo
 
A Step-By-Step Introduction to SAS Report Procedure
A Step-By-Step Introduction to SAS Report ProcedureA Step-By-Step Introduction to SAS Report Procedure
A Step-By-Step Introduction to SAS Report ProcedureYesAnalytics
 
Utility Procedures in SAS
Utility Procedures in SASUtility Procedures in SAS
Utility Procedures in SASguest2160992
 

Mais procurados (20)

SAS Macros
SAS MacrosSAS Macros
SAS Macros
 
Sas
SasSas
Sas
 
Introduction to sas
Introduction to sasIntroduction to sas
Introduction to sas
 
SAS BASICS
SAS BASICSSAS BASICS
SAS BASICS
 
SAS Proc SQL
SAS Proc SQLSAS Proc SQL
SAS Proc SQL
 
Understanding sas data step processing.
Understanding sas data step processing.Understanding sas data step processing.
Understanding sas data step processing.
 
SAS Macros part 2
SAS Macros part 2SAS Macros part 2
SAS Macros part 2
 
Introduction to SAS
Introduction to SASIntroduction to SAS
Introduction to SAS
 
Introduction To Sas
Introduction To SasIntroduction To Sas
Introduction To Sas
 
Sas cheat
Sas cheatSas cheat
Sas cheat
 
Base SAS Full Sample Paper
Base SAS Full Sample Paper Base SAS Full Sample Paper
Base SAS Full Sample Paper
 
SAS cheat sheet
SAS cheat sheetSAS cheat sheet
SAS cheat sheet
 
SAS Access / SAS Connect
SAS Access / SAS ConnectSAS Access / SAS Connect
SAS Access / SAS Connect
 
SAS basics Step by step learning
SAS basics Step by step learningSAS basics Step by step learning
SAS basics Step by step learning
 
Sas practice programs
Sas practice programsSas practice programs
Sas practice programs
 
Proc SQL in SAS Enterprise Guide 4.3
Proc SQL in SAS Enterprise Guide 4.3Proc SQL in SAS Enterprise Guide 4.3
Proc SQL in SAS Enterprise Guide 4.3
 
SAS - overview of SAS
SAS - overview of SASSAS - overview of SAS
SAS - overview of SAS
 
Basic VSAM
Basic VSAMBasic VSAM
Basic VSAM
 
A Step-By-Step Introduction to SAS Report Procedure
A Step-By-Step Introduction to SAS Report ProcedureA Step-By-Step Introduction to SAS Report Procedure
A Step-By-Step Introduction to SAS Report Procedure
 
Utility Procedures in SAS
Utility Procedures in SASUtility Procedures in SAS
Utility Procedures in SAS
 

Destaque

Set and Merge
Set and MergeSet and Merge
Set and Mergevenkatam
 
Return of the Codes -- SAS', Windows' and Your's
Return of the Codes -- SAS', Windows' and Your'sReturn of the Codes -- SAS', Windows' and Your's
Return of the Codes -- SAS', Windows' and Your'sMark Tabladillo
 
Digital investigation
Digital investigationDigital investigation
Digital investigationlaurencowey
 
Digital investigation
Digital investigationDigital investigation
Digital investigationunnilala11
 
9. Searching & Sorting - Data Structures using C++ by Varsha Patil
9. Searching & Sorting - Data Structures using C++ by Varsha Patil9. Searching & Sorting - Data Structures using C++ by Varsha Patil
9. Searching & Sorting - Data Structures using C++ by Varsha Patilwidespreadpromotion
 
Data Sets You Free: Analytics for Content Strategy
Data Sets You Free: Analytics for Content StrategyData Sets You Free: Analytics for Content Strategy
Data Sets You Free: Analytics for Content StrategyJonathon Colman
 

Destaque (9)

Set and Merge
Set and MergeSet and Merge
Set and Merge
 
Return of the Codes -- SAS', Windows' and Your's
Return of the Codes -- SAS', Windows' and Your'sReturn of the Codes -- SAS', Windows' and Your's
Return of the Codes -- SAS', Windows' and Your's
 
Set, merge, and update
Set, merge, and updateSet, merge, and update
Set, merge, and update
 
Digital investigation
Digital investigationDigital investigation
Digital investigation
 
Set Theory In C++
Set Theory In C++Set Theory In C++
Set Theory In C++
 
Digital investigation
Digital investigationDigital investigation
Digital investigation
 
Hashing
HashingHashing
Hashing
 
9. Searching & Sorting - Data Structures using C++ by Varsha Patil
9. Searching & Sorting - Data Structures using C++ by Varsha Patil9. Searching & Sorting - Data Structures using C++ by Varsha Patil
9. Searching & Sorting - Data Structures using C++ by Varsha Patil
 
Data Sets You Free: Analytics for Content Strategy
Data Sets You Free: Analytics for Content StrategyData Sets You Free: Analytics for Content Strategy
Data Sets You Free: Analytics for Content Strategy
 

Semelhante a Introduction to SAS Data Set Options

Sas-training-in-mumbai
Sas-training-in-mumbaiSas-training-in-mumbai
Sas-training-in-mumbaiUnmesh Baile
 
Data handling in r
Data handling in rData handling in r
Data handling in rAbhik Seal
 
Prog1 chap1 and chap 2
Prog1 chap1 and chap 2Prog1 chap1 and chap 2
Prog1 chap1 and chap 2rowensCap
 
SAS and R Code for Basic Statistics
SAS and R Code for Basic StatisticsSAS and R Code for Basic Statistics
SAS and R Code for Basic StatisticsAvjinder (Avi) Kaler
 
SAS and R Code for Basic Statistics
SAS and R Code for Basic StatisticsSAS and R Code for Basic Statistics
SAS and R Code for Basic StatisticsAvjinder (Avi) Kaler
 
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)Serban Tanasa
 
Introducción al Software Analítico SAS
Introducción al Software Analítico SASIntroducción al Software Analítico SAS
Introducción al Software Analítico SASJorge Rodríguez M.
 
Sas Talk To R Users Group
Sas Talk To R Users GroupSas Talk To R Users Group
Sas Talk To R Users Groupgeorgette1200
 
A Divine Data Comedy
A Divine Data ComedyA Divine Data Comedy
A Divine Data ComedyMike Harris
 
Calling r from sas (msug meeting, feb 17, 2018) revised
Calling r from sas (msug meeting, feb 17, 2018)   revisedCalling r from sas (msug meeting, feb 17, 2018)   revised
Calling r from sas (msug meeting, feb 17, 2018) revisedBarry DeCicco
 
Draft sas and r and sas (may, 2018 asa meeting)
Draft sas and r and sas (may, 2018 asa meeting)Draft sas and r and sas (may, 2018 asa meeting)
Draft sas and r and sas (may, 2018 asa meeting)Barry DeCicco
 
Tony jambu (obscure) tools of the trade for tuning oracle sq ls
Tony jambu   (obscure) tools of the trade for tuning oracle sq lsTony jambu   (obscure) tools of the trade for tuning oracle sq ls
Tony jambu (obscure) tools of the trade for tuning oracle sq lsInSync Conference
 
Introduction to-sas-1211594349119006-8
Introduction to-sas-1211594349119006-8Introduction to-sas-1211594349119006-8
Introduction to-sas-1211594349119006-8thotakoti
 
Slice for Distributed Persistence (JavaOne 2010)
Slice for Distributed Persistence (JavaOne 2010)Slice for Distributed Persistence (JavaOne 2010)
Slice for Distributed Persistence (JavaOne 2010)Pinaki Poddar
 
SAS Global Forum 2008 presentation
SAS Global Forum 2008 presentationSAS Global Forum 2008 presentation
SAS Global Forum 2008 presentationandrearoofe
 

Semelhante a Introduction to SAS Data Set Options (20)

Sas-training-in-mumbai
Sas-training-in-mumbaiSas-training-in-mumbai
Sas-training-in-mumbai
 
SAS Internal Training
SAS Internal TrainingSAS Internal Training
SAS Internal Training
 
Sas classes in mumbai
Sas classes in mumbaiSas classes in mumbai
Sas classes in mumbai
 
Data handling in r
Data handling in rData handling in r
Data handling in r
 
Prog1 chap1 and chap 2
Prog1 chap1 and chap 2Prog1 chap1 and chap 2
Prog1 chap1 and chap 2
 
SAS and R Code for Basic Statistics
SAS and R Code for Basic StatisticsSAS and R Code for Basic Statistics
SAS and R Code for Basic Statistics
 
SAS and R Code for Basic Statistics
SAS and R Code for Basic StatisticsSAS and R Code for Basic Statistics
SAS and R Code for Basic Statistics
 
Stata tutorial university of princeton
Stata tutorial university of princetonStata tutorial university of princeton
Stata tutorial university of princeton
 
SAS Commands
SAS CommandsSAS Commands
SAS Commands
 
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
Get up to Speed (Quick Guide to data.table in R and Pentaho PDI)
 
Introducción al Software Analítico SAS
Introducción al Software Analítico SASIntroducción al Software Analítico SAS
Introducción al Software Analítico SAS
 
SAS Online Training by Real Time Working Professionals in USA,UK,India,Middle...
SAS Online Training by Real Time Working Professionals in USA,UK,India,Middle...SAS Online Training by Real Time Working Professionals in USA,UK,India,Middle...
SAS Online Training by Real Time Working Professionals in USA,UK,India,Middle...
 
Sas Talk To R Users Group
Sas Talk To R Users GroupSas Talk To R Users Group
Sas Talk To R Users Group
 
A Divine Data Comedy
A Divine Data ComedyA Divine Data Comedy
A Divine Data Comedy
 
Calling r from sas (msug meeting, feb 17, 2018) revised
Calling r from sas (msug meeting, feb 17, 2018)   revisedCalling r from sas (msug meeting, feb 17, 2018)   revised
Calling r from sas (msug meeting, feb 17, 2018) revised
 
Draft sas and r and sas (may, 2018 asa meeting)
Draft sas and r and sas (may, 2018 asa meeting)Draft sas and r and sas (may, 2018 asa meeting)
Draft sas and r and sas (may, 2018 asa meeting)
 
Tony jambu (obscure) tools of the trade for tuning oracle sq ls
Tony jambu   (obscure) tools of the trade for tuning oracle sq lsTony jambu   (obscure) tools of the trade for tuning oracle sq ls
Tony jambu (obscure) tools of the trade for tuning oracle sq ls
 
Introduction to-sas-1211594349119006-8
Introduction to-sas-1211594349119006-8Introduction to-sas-1211594349119006-8
Introduction to-sas-1211594349119006-8
 
Slice for Distributed Persistence (JavaOne 2010)
Slice for Distributed Persistence (JavaOne 2010)Slice for Distributed Persistence (JavaOne 2010)
Slice for Distributed Persistence (JavaOne 2010)
 
SAS Global Forum 2008 presentation
SAS Global Forum 2008 presentationSAS Global Forum 2008 presentation
SAS Global Forum 2008 presentation
 

Mais de Mark Tabladillo

How to find low-cost or free data science resources 202006
How to find low-cost or free data science resources 202006How to find low-cost or free data science resources 202006
How to find low-cost or free data science resources 202006Mark Tabladillo
 
Microsoft Build 2020: Data Science Recap
Microsoft Build 2020: Data Science RecapMicrosoft Build 2020: Data Science Recap
Microsoft Build 2020: Data Science RecapMark Tabladillo
 
201909 Automated ML for Developers
201909 Automated ML for Developers201909 Automated ML for Developers
201909 Automated ML for DevelopersMark Tabladillo
 
201908 Overview of Automated ML
201908 Overview of Automated ML201908 Overview of Automated ML
201908 Overview of Automated MLMark Tabladillo
 
201906 01 Introduction to ML.NET 1.0
201906 01 Introduction to ML.NET 1.0201906 01 Introduction to ML.NET 1.0
201906 01 Introduction to ML.NET 1.0Mark Tabladillo
 
201906 04 Overview of Automated ML June 2019
201906 04 Overview of Automated ML June 2019201906 04 Overview of Automated ML June 2019
201906 04 Overview of Automated ML June 2019Mark Tabladillo
 
201906 03 Introduction to NimbusML
201906 03 Introduction to NimbusML201906 03 Introduction to NimbusML
201906 03 Introduction to NimbusMLMark Tabladillo
 
201906 02 Introduction to AutoML with ML.NET 1.0
201906 02 Introduction to AutoML with ML.NET 1.0201906 02 Introduction to AutoML with ML.NET 1.0
201906 02 Introduction to AutoML with ML.NET 1.0Mark Tabladillo
 
201905 Azure Databricks for Machine Learning
201905 Azure Databricks for Machine Learning201905 Azure Databricks for Machine Learning
201905 Azure Databricks for Machine LearningMark Tabladillo
 
201905 Azure Certification DP-100: Designing and Implementing a Data Science ...
201905 Azure Certification DP-100: Designing and Implementing a Data Science ...201905 Azure Certification DP-100: Designing and Implementing a Data Science ...
201905 Azure Certification DP-100: Designing and Implementing a Data Science ...Mark Tabladillo
 
Big Data Advanced Analytics on Microsoft Azure 201904
Big Data Advanced Analytics on Microsoft Azure 201904Big Data Advanced Analytics on Microsoft Azure 201904
Big Data Advanced Analytics on Microsoft Azure 201904Mark Tabladillo
 
Managing Enterprise Data Science 201904
Managing Enterprise Data Science 201904Managing Enterprise Data Science 201904
Managing Enterprise Data Science 201904Mark Tabladillo
 
Training of Python scikit-learn models on Azure
Training of Python scikit-learn models on AzureTraining of Python scikit-learn models on Azure
Training of Python scikit-learn models on AzureMark Tabladillo
 
Big Data Adavnced Analytics on Microsoft Azure
Big Data Adavnced Analytics on Microsoft AzureBig Data Adavnced Analytics on Microsoft Azure
Big Data Adavnced Analytics on Microsoft AzureMark Tabladillo
 
Advanced Analytics with Power BI 201808
Advanced Analytics with Power BI 201808Advanced Analytics with Power BI 201808
Advanced Analytics with Power BI 201808Mark Tabladillo
 
Microsoft Cognitive Toolkit (Atlanta Code Camp 2017)
Microsoft Cognitive Toolkit (Atlanta Code Camp 2017)Microsoft Cognitive Toolkit (Atlanta Code Camp 2017)
Microsoft Cognitive Toolkit (Atlanta Code Camp 2017)Mark Tabladillo
 
Machine learning services with SQL Server 2017
Machine learning services with SQL Server 2017Machine learning services with SQL Server 2017
Machine learning services with SQL Server 2017Mark Tabladillo
 
Microsoft Technologies for Data Science 201612
Microsoft Technologies for Data Science 201612Microsoft Technologies for Data Science 201612
Microsoft Technologies for Data Science 201612Mark Tabladillo
 
How Big Companies plan to use Our Big Data 201610
How Big Companies plan to use Our Big Data 201610How Big Companies plan to use Our Big Data 201610
How Big Companies plan to use Our Big Data 201610Mark Tabladillo
 
Georgia Tech Data Science Hackathon September 2016
Georgia Tech Data Science Hackathon September 2016Georgia Tech Data Science Hackathon September 2016
Georgia Tech Data Science Hackathon September 2016Mark Tabladillo
 

Mais de Mark Tabladillo (20)

How to find low-cost or free data science resources 202006
How to find low-cost or free data science resources 202006How to find low-cost or free data science resources 202006
How to find low-cost or free data science resources 202006
 
Microsoft Build 2020: Data Science Recap
Microsoft Build 2020: Data Science RecapMicrosoft Build 2020: Data Science Recap
Microsoft Build 2020: Data Science Recap
 
201909 Automated ML for Developers
201909 Automated ML for Developers201909 Automated ML for Developers
201909 Automated ML for Developers
 
201908 Overview of Automated ML
201908 Overview of Automated ML201908 Overview of Automated ML
201908 Overview of Automated ML
 
201906 01 Introduction to ML.NET 1.0
201906 01 Introduction to ML.NET 1.0201906 01 Introduction to ML.NET 1.0
201906 01 Introduction to ML.NET 1.0
 
201906 04 Overview of Automated ML June 2019
201906 04 Overview of Automated ML June 2019201906 04 Overview of Automated ML June 2019
201906 04 Overview of Automated ML June 2019
 
201906 03 Introduction to NimbusML
201906 03 Introduction to NimbusML201906 03 Introduction to NimbusML
201906 03 Introduction to NimbusML
 
201906 02 Introduction to AutoML with ML.NET 1.0
201906 02 Introduction to AutoML with ML.NET 1.0201906 02 Introduction to AutoML with ML.NET 1.0
201906 02 Introduction to AutoML with ML.NET 1.0
 
201905 Azure Databricks for Machine Learning
201905 Azure Databricks for Machine Learning201905 Azure Databricks for Machine Learning
201905 Azure Databricks for Machine Learning
 
201905 Azure Certification DP-100: Designing and Implementing a Data Science ...
201905 Azure Certification DP-100: Designing and Implementing a Data Science ...201905 Azure Certification DP-100: Designing and Implementing a Data Science ...
201905 Azure Certification DP-100: Designing and Implementing a Data Science ...
 
Big Data Advanced Analytics on Microsoft Azure 201904
Big Data Advanced Analytics on Microsoft Azure 201904Big Data Advanced Analytics on Microsoft Azure 201904
Big Data Advanced Analytics on Microsoft Azure 201904
 
Managing Enterprise Data Science 201904
Managing Enterprise Data Science 201904Managing Enterprise Data Science 201904
Managing Enterprise Data Science 201904
 
Training of Python scikit-learn models on Azure
Training of Python scikit-learn models on AzureTraining of Python scikit-learn models on Azure
Training of Python scikit-learn models on Azure
 
Big Data Adavnced Analytics on Microsoft Azure
Big Data Adavnced Analytics on Microsoft AzureBig Data Adavnced Analytics on Microsoft Azure
Big Data Adavnced Analytics on Microsoft Azure
 
Advanced Analytics with Power BI 201808
Advanced Analytics with Power BI 201808Advanced Analytics with Power BI 201808
Advanced Analytics with Power BI 201808
 
Microsoft Cognitive Toolkit (Atlanta Code Camp 2017)
Microsoft Cognitive Toolkit (Atlanta Code Camp 2017)Microsoft Cognitive Toolkit (Atlanta Code Camp 2017)
Microsoft Cognitive Toolkit (Atlanta Code Camp 2017)
 
Machine learning services with SQL Server 2017
Machine learning services with SQL Server 2017Machine learning services with SQL Server 2017
Machine learning services with SQL Server 2017
 
Microsoft Technologies for Data Science 201612
Microsoft Technologies for Data Science 201612Microsoft Technologies for Data Science 201612
Microsoft Technologies for Data Science 201612
 
How Big Companies plan to use Our Big Data 201610
How Big Companies plan to use Our Big Data 201610How Big Companies plan to use Our Big Data 201610
How Big Companies plan to use Our Big Data 201610
 
Georgia Tech Data Science Hackathon September 2016
Georgia Tech Data Science Hackathon September 2016Georgia Tech Data Science Hackathon September 2016
Georgia Tech Data Science Hackathon September 2016
 

Último

Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 

Último (20)

Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 

Introduction to SAS Data Set Options

  • 1. Introduction to Data Set Options Mark Tabladillo, Ph.D. Software Developer, MarkTab Consulting Associate Faculty University of Phoenix Faculty, January 30, 2007
  • 2. Introduction • Data set options allow features during dataset processing • Most SAS data set options can apply to either input or output SAS data sets in DATA steps or procedure (PROC) steps • Data set options allow the data step to control variables, observations, security, t l i bl b ti it and data set attributes
  • 3. Outline • Define data set options • Provide examples in four categories • Di Discuss d t set processing rules data t i l
  • 4. Outline • Define data set options • Provide examples in four categories • Di Discuss d t set processing rules data t i l
  • 5. Definition • Data set options specify actions that apply only to the SAS data set with which they appear appear. http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
  • 6. Syntax • Specify a data set option in parentheses after a SAS data set name. To specify several data set options separate them options, with spaces. (option-1=value-1<...option-n=value-n>) (option 1=value 1< option n=value n>) http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
  • 7. Outline • Define data set options • Provide examples in four categories • Di Discuss d t set processing rules data t i l
  • 8. Quick Examples • Data set options enable us to perform operations such as these: – Renaming variables – Selecting only the first or last n observations for processing – Dropping variables from processing or from the output data set – Specifying a password for a data set – Adding dataset labels http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
  • 9. Common Option Categories • Variable Control • Observation Control • Security S it • Data Set Attributes
  • 10. Examples Dataset data work.sales (drop=i randomState); length state $2 sales 8 randomState 3; do i = 1 to 2500; randomState = round(rand('gaussian',3,1)+0.5); if randomState in (1,2,3,4,5) then do; select(randomState); l t( d St t ) when(1) state='TN'; when(2) state='AL'; when(3) state='GA'; ( ) ; when(4) state='FL'; when(5) state='MS'; end; sales = int(rand('gaussian' 1000000 500000)); int(rand('gaussian',1000000,500000)); output work.sales; end; end; run;
  • 11. List of Common Options SAS Data Set Option Description Variable DROP= Data Set Excludes variables from Control Option processing or from output SAS data sets KEEP= Data Set Specifies variables for processing Option p or for writing to output SAS data g p sets RENAME= Data Set Changes the name of a variable Option O i http://support.sas.com/onlinedoc/913/getDoc/en/lrdict.hlp/a000104210.htm
  • 12. Examples: Variable Control data work salesReformat; work.salesReformat; set work.sales (drop=sales); run; data work.salesReformat2; set work.sales (keep=state); run; proc sort data=work.sales (rename=(state=salesState)) out=work.salesReformat3 (drop=sales); by salesState; run;
  • 13. List of Common Options SAS Data Set Option Description Observation FIRSTOBS= Data Set Specifies which observation SAS Control Option processes first IN= Data Set Option Creates a variable that indicates whether the data set contributed data to the current observation OBS= Data Set Option Specifies when to stop processing obse a o s observations WHERE= Data Set Selects observations that meet the Option specified condition http://support.sas.com/onlinedoc/913/getDoc/en/lrdict.hlp/a000104210.htm
  • 14. Examples: Observation Control * (obs - firstobs) + 1 = results; data work.selectObs1; set work.sales (firstobs=1 obs=200); ( ); run; data work.selectObs2; set work.sales (firstobs=200 obs=400); ( ); run; proc print data=work.sales (obs=25); run; ; proc freq data=work.sales (firstobs=1); tables state; run;; proc means data=work.sales (obs=max); class state; ; var sales; run;
  • 15. Examples: Observation Control data work combineObs1; work.combineObs1; set work.selectObs1 (in=in1) work.selectObs2 (in=in2); length source $12; if in1 then source = 'Dataset One'; else if in2 then source = 'Dataset Two'; run; data work combineObs2; work.combineObs2; set work.selectObs1 (in=in1) work.selectObs2 (in=in2); if in1 and in2 then output; run;
  • 16. List of Common Options SAS Data Set Option Description Security ALTER= Data Set Option Assigns an alter password to a SAS file and enables access to a password- protected SAS file ENCRYPT= Data Set Encrypts SAS data files Option PW= Data Set Option Assigns a read, write, or alter password to a SAS file and enables access to a password-protected SAS file READ= Data Set Option Assigns a read password to a SAS file and enables access to a read-protected SAS file WRITE= Data Set Option Assigns a write password to a SAS file and enables access to a write-protected SAS file http://support.sas.com/onlinedoc/913/getDoc/en/lrdict.hlp/a000104210.htm
  • 17. Examples: Security data work.secure1 (alter=NoErrors); set work.sales; run; data work.secure2; set work.sales (alter=NoErrors); work sales run; * Note: A SAS password does not control access to a SAS file beyond the SAS system. system You should use the operating system-supplied utilities and file-system system supplied file system security controls in order to control access to SAS files outside of SAS.; data work.secure3 (encrypt=yes pw=Scramble); set work.sales; run; proc sort data=work.secure3 (pw=scramble) out=work.secure4; by state sales; y ; run;
  • 18. List of Common Options SAS Data Set Option Description Data Set COMPRESS= Data Set Controls the compression of Attributes Option observations in an output SAS data set GENMAX= Data Set Requests generations for a data set Option and specifies the maximum number of versions INDEX D INDEX= Data S Set D fi Defines i d indexes when a SAS d h data set Option is created LABEL= Data Set Specifies a label for the SAS data set Option http://support.sas.com/onlinedoc/913/getDoc/en/lrdict.hlp/a000104210.htm
  • 19. Examples: Data Set Attributes data work.compress1 (compress=yes label=quot;Attempt at Compressionquot;); set work.sales; run; data work masterSalesDataset (genmax=3); work.masterSalesDataset (genmax 3); set work.sales; run; d t work.masterSalesDataset; data k t S l D t t set work.masterSalesDataset work.selectObs1; run; data work.masterSalesDataset; set work.sales work.selectObs1; run;
  • 20. Outline • Define data set options • Provide examples in four categories • Di Discuss d t set processing rules data t i l
  • 21. Input and Output Datasets • If a data set option is associated with an input data set, the action applies to the data set that is being read. read • If the option appears in the DATA statement or after an output data set specification in a PROC step, SAS applies the action to the output data set set. http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
  • 22. Input and Output Datasets data d t _null_; ll run; ; data; run; data _null_; set _null_; null ; if _n_ ge 0 then put 'hello'; run; data _null_; if _n_ ge 0 then put 'hello'; set _null_; run;
  • 23. Order of Execution • When data set options appear on both input and output data sets in the same DATA or PROC step, SAS applies data set options to input data sets before it evaluates programming statements or before it applies data set options to output data t d t sets. • Likewise, data set options that are specified for the data set being created are applied after programming statements are processed. http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
  • 24. Order of Execution data work.salesReformat4 (rename=(sales=monthlySales)); set work.sales; sales = sales/12; run; data work.salesReformat5; set work.sales (rename=(sales=monthlySales)); monthlySales = monthlySales/12; run;
  • 25. Specification Conflicts • In some instances data set options instances, conflict when they are used in the same statement For example you cannot statement. example, specify both the DROP= and KEEP= options for the same variable in the same statement. http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
  • 26. Statement Definition • A SAS statement is a series of items that may include keywords, SAS names, special characters and operators characters, operators. • All SAS statements end with a semicolon. • A SAS statement either requests SAS to t t t ith t t perform an operation or gives information to th t the system. t http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612375.htm
  • 27. Timing Conflicts • Timing can also be an issue in some cases. For example, if using KEEP= and RENAME RENAME= on a data set specified in the SET statement, KEEP= needs to use the original variable names, because SAS will names process KEEP= before the data set is read. read The new names specified in RENAME= will apply to the programming statements that follow the SET statement statement. http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
  • 28. Timing Conflicts proc sort data=work.sales (keep=sales state rename=(sales=monthlySales)) out=work.salesReformat6; out=work salesReformat6; by state monthlySales; run; proc sort data=work.sales (rename=(sales=monthlySales) keep=sales state) out=work.salesReformat7; by state monthlySales; run;
  • 29. Overriding System Options • Many system options and data set options share the same name and have the same function. • The data set option overrides the system option for the data set in the step in which p p it appears. • System options remain in effect for all y p DATA and PROC steps in a SAS job or session, unless they are respecified. http://support.sas.com/onlinedoc/913/getDoc/en/lrcon.hlp/a002612367.htm
  • 30. Conclusion • DATA set options allow features during data step processing • The SAS System Documentation provides specific details on the syntax
  • 31. Contact Information • Mark Tabladillo MarkTab Consulting http://www.marktab.com/ http://www marktab com/