SAS Base Programming Training

Base SAS (Statistical Analysis System) training is a good way to enter into the data analytics industry. You will also work on real-life projects and prepare for the SAS Certified Base Programmer certification exam under SAS Base Programming Online Training.

  • 25000
  • 30000
  • Course Includes
  • Live Class Practical Oriented Training
  • 60 + Hrs Instructor LED Training
  • 45 + Hrs Practical Exercise
  • 25 + Hrs Project Work & Assignment
  • Timely Doubt Resolution
  • Dedicated Student Success Mentor
  • Certification & Job Assistance
  • Free Access to Workshop & Webinar
  • No Cost EMI Option


Have Query ?

What you will learn

  • Writing SAS program. Reading and customizing data sets
  • Reading data from raw data files, database, and spreadsheet. Formatting and manipulating data
  • Merging SAS data-sets. Generating reports
  • Selecting variables and writing observations. Executing data transformation
  • Using the PUTLOG statement for debugging. Perform Do loop and SAS arrays processing for data iteratively
  • Restructuring and combining data sets Creating permanent formats. Familiarity with other SAS languages

Requirements

  • The candidates with basic understanding of programming language, EXCEL, and SQL can undergo this training.

Description

|| About SAS Base Programming Training Course

Base SAS (Statistical Analysis System) training is a good way to enter into the data analytics industry. This Base SAS Programming online training course provides the concepts along with hands-on experience on writing SAS programs, understanding data sets, sub-setting data sets, creating summary reports with different procedures, controlling input and output. Participants build proficiency in data manipulation and debugging techniques. The training will drive the trainees through SAS windowing environment for executing conditional code, SAS array processing; and introduces other SAS languages.

 

Base SAS is software that performs powerful statistical analysis on data that can be retrieved from multiple sources. It offers a point-and-click user interface with graphics for simpler tasks and SAS language for more technical ones.This course focuses on Base SAS, a software suite for big data analysis that has been the industry standard for decades. SAS performs data analysis in two steps. First, it compiles and organizes raw data into tables, and then it analyzes the data and produces reports in the form of statistics or graphics. It is able to perform more than 300 procedures on data—just about anything and everything that a major company would want to do with data. Base SAS Certification online training program starts off with a quick review of the basic concepts used in data analysis and statistics. It then introduces datasets and how they are put together, covering SAS libraries and tools.

Course Content

Lecture-1 SAS Programs

·      Introduction to SAS programs

·      Submitting a SAS program

·      Working with SAS program syntax          

·      Practical Exercise              

Lecture-2 Create temporary and permanent SAS data sets.

·      Use a DATA step to create a SAS data set from an existing SAS data set.

·      Example: Data Mylib.NewData;

           Set Mylib.OldData;

                      <other SAS statements>

                       Run;

Lecture-3 Investigate SAS data libraries using base SAS utility procedures.

·      Use a LIBNAME statement to assign a library reference name to a SAS library.

·      Investigate a library programmatically using the CONTENTS procedure.

·      Practical Exercise              

Lecture-4 Combine SAS data sets.

·      Concatenate data sets.

·      Merge data sets one-to-one.

·      Merge data sets one-to-many.

·      Practical Exercise              

Lecture-5 Access an Excel workbook.

·      Use the SAS/ACCESS XLSX engine to read an .xlsx file.

·      Practical Exercise              

Lecture-6 Create and manipulate SAS date values.

·      Explain how SAS stores date and time values.

·      Use SAS date and time formats to specify how the values are displayed.

·      Practical Exercise              

Lecture-7 Export data to create standard and comma-delimited raw data files.

·      Create a simple raw data file by using the EXPORT procedure as an alternative to the DATA step.

·      Practical Exercise              

Lecture-8 Control which observations and variables in a SAS data set are processed and output.

·      Use the WHERE statement in the DATA step to select observations to be processed.

·      Subset variables to be output by using the DROP and KEEP statements.

·      Use the DROP= and KEEP= data set options to specify columns to be processed and/or output.

·      Practical Exercise              

Lecture-9 Sort observations in a SAS data set.

·      Use the SORT Procedure to re-order observations in place or output to a new dataset.

·      Practical Exercise              

Lecture-10 Conditionally execute SAS statements.

·      Use IF-THEN/ELSE statements to process data conditionally.

·      Use DO and END statements to execute multiple statements conditionally.

·      Practical Exercise              

Lecture-11 Use assignment statements in the DATA step.

·      Create new variables and assign a value.

·      Assign a new value to an existing variable.

·      Assign the value of an expression to a variable.

·      Assign a constant date value to a variable.

·      Practical Exercise              

Lecture-12 Modify variable attributes using options and statements in the DATA step.

·      Change the names of variables by using the RENAME= data set option.

·      Use LABEL and FORMAT statements to modify attributes in a DATA step.

·      Define the length of a variable using the LENGTH statement.

·      Practical Exercise              

Lecture-13 Accumulate sub-totals and totals using DATA step statements.

·      Use the BY statement to aggregate by subgroups.

·      Practical Exercise              

Lecture-14 Use SAS functions to manipulate character data, numeric data, and SAS date values.

·      Use SAS functions such as SCAN, SUBSTR, TRIM, UPCASE, and LOWCASE to perform tasks such as the tasks shown below.

·      Replace the contents of a character value.

·      Trim trailing blanks from a character value.

·      Search a character value and extract a portion of the value.

·      Convert a character value to upper or lowercase.

·      Use SAS arithmetic, financial, and probability functions to create or modify numeric values by using the INT and ROUND functions.

·      Create SAS date values by using the functions MDY, TODAY,DATE, and TIME.

·      Extract the month, year, and interval from a SAS date value by using the functions YEAR, QTR, MONTH, and DAY.

·      Perform calculations with date and datetime values and time intervals by using the functions INTCK, INTNX, DATDIF and YRDIF.

·      Practical Exercise              

Lecture-15 Use SAS functions to convert character data to numeric and vice versa.

·      Explain the automatic conversion that SAS uses to convert values between data types.

·      Use the INPUT function to explicitly convert character data values to numeric values.

·      Practical Exercise              

Lecture-16 Process data using DO LOOPS.

·      Explain how iterative DO loops function.

·      Use DO loops to eliminate redundant code and to perform repetitive calculations.

·      Use conditional DO loops.

·      Use nested DO loops.

·      Practical Exercise              

Lecture-17 Validate and clean data.

·      Use PROC FREQ to list unique values, with the nlevel option to show the number of distinct values, with the order=freq to check for duplicate or missing values.

·      Use PROC PRINT with the WHERE statement to display observations with invalid values.

·      Use PROC MEAN to validate the range of numeric variables.

·      Use PROC UNIVARIATE to display extreme observations and missing values and with the ID statement to display the value of identifying variable

·      Practical Exercise              

Lecture-18 Generate list reports using the PRINT procedure.

·      Modify the default behavior of PROC PRINT by adding statements and options such as

·      Use the VAR statement to select and order variables.

·      Calculate totals with a SUM statement.

·      Select observations with a WHERE statement.

·      Use the ID statement to identify observations.

·      Use the BY statement to process groups.

·      Practical Exercise              

Lecture-19 Generate summary reports and frequency tables using base SAS procedures.

·      Produce one-way and two-way frequency tables with the FREQ procedure.

·      Enhance frequency tables with options.

·      Use PROC FREQ to validate data in a SAS data set.

·      Calculate summary statistics and multilevel summaries using the MEANS procedure

·      Enhance summary tables with options.

·      Identify extreme and missing values with the UNIVARIATE procedure.

·      Practical Exercise              

Lecture-20 Enhance reports through the use of user-defined formats, titles, footnotes and SAS System reporting.

·      Use the LABEL statement to define descriptive column headings.

·      Control the use of column headings with the LABEL and SPLIT=options in Proc Print output.

·      Practical Exercise              

Lecture-21 Generate reports using ODS statements.

·      Identify the Output Delivery System destinations.

·      Create HTML, PDF, RTF, and files with ODS statements.

·      Use the STYLE=option to specify a style template.

·      Create files that can be viewed in Microsoft Excel.

·      Practical Exercise              

Lecture-22 Identify and resolve programming logic errors.

·      Use the PUTLOG Statement in the Data Step to help identify logic errors.

·      Use PUTLOG to write the value of a variable, formatted values, or to write values of all variables.

·      Use PUTLOG with Conditional logic.

·      Use temporary variables N and ERROR to debug a DATA step.

·      Practical Exercise              

Lecture-23 Recognize and correct syntax errors.

·      Identify the characteristics of SAS statements.

·      Define SAS syntax rules including the typical types of syntax errors such as misspelled keywords, unmatched quotation marks, missing semicolons, and invalid options.

·      Use the log to help diagnose syntax errors in a given program.

·      Practical Exercise              

Lecture-24 Examine and resolve data errors.

·      Given a SAS program, use the log to determine the reason for a data error.

·      Practical Exercise              

Case Studies

Fees

Offline Training @ Vadodara

  • Classroom Based Training
  • Practical Based Training
  • No Cost EMI Option
35000 30000

Online Training preferred

  • Live Virtual Classroom Training
  • 1:1 Doubt Resolution Sessions
  • Recorded Live Lectures*
  • Flexible Schedule
30000 25000

Corporate Training

  • Customized Learning
  • Onsite Based Corporate Training
  • Online Corporate Training
  • Certified Corporate Training

Certification

  • Upon the completion of the Classroom training, you will have an Offline exam that will help you prepare for the Professional certification exam and score top marks. The BIT Certification is awarded upon successfully completing an offline exam after reviewed by experts
  • Upon the completion of the training, you will have an online exam that will help you prepare for the Professional certification exam and score top marks. BIT Certification is awarded upon successfully completing an online exam after reviewed by experts.
  • This course is designed to clear SAS Certifications: Exam ID A00-215 SAS Certified Associate: Programming Fundamentals Using SAS 9.4 and Exam ID A00-231 SAS Certified Specialist: Base Programming Using SAS 9.4