SAS programming Training
Viswa Online Trainings is one of the world’s leading online IT training providers. We deliver a comprehensive catalog of courses and online training for freshers and working professionals to help them achieve their career goals and experience our best services.
Learners : 1080
Duration : 30 Days
About Course
SAS programming understands the need for a quality training curriculum along with real-time implementation exposure as it forms the very essence of your future career in SAS Certification. Our well-structured online training course in SAS programming Training extensively covers all the core aspects of classes with an emphasis on live scenarios. Access to expert trainers and instructor-led training sessions ensures that you can easily clear your doubts and get the exact guidance that is expected from SAS programming Online Training sessions.
SAS programming Training Course Syllabus
✔ History
✔ SAS comes in ERP sector or not? Why?
✔ What is Clinical Research Study?
✔ What is SOP (Standard Operating Procedure)?
✔ What is DBMS?
✔ What is SAP (Statistical Analysis Plan)?
✔ Managing windows in window environment
✔ Why using the S-A-S in different sectors.
✔ How to use the data step to read and manipulate complex forms of data
✔ Write Data and Proc steps.
✔ Data step compile and execution
✔ Read any type of external raw data
✔ Reading raw data Environment into DATA SET using Input statement & advance INLIFE statement options
✔ Working with Data Storage in SAS libraries creation for user-defined libraries and multi-engine architecture
✔ Reading data from data set to another data set.
✔ To manage the SAS window environment used with global options.
✔ To manage existing data with controlling statements and expressions
✔ Creating Summary Information, SAS Functions, Transforming Data
✔ Changing variable types using the PUT and INPUT functions summarizing data files
✔ To expert data from data sets to delimiter files using with data set block
✔ Understand error messages in the Log and debug your program
✔ Using Do loops for repetitive calculations and processing
✔ Using Arrays to process across observations and processing
✔ Using the update statement to update data in the existing dataset.
✔ Using the MODIFY statements to update and modify data in place Merging concepts
✔ Concatenation concept in merging
✔ Interleaving concepts and merging
✔ Different kinds of match merging using MERGE statement using the contribution (IN=) option in merge concept
✔ Using ODS concept to generate reports
✔ Role of ODS concepts in reporting SAS output
✔ To generate output in different panels like RTF, HTML,PDF and XML Using ODS
✔ UTILITY PROCEDURES:
✔ IMPORT PROCEDURE
✔ EXPORT PROCEDURE
✔ DB LOAD PROCEDURE
✔ COPY PROCEDURE
✔ CPORT PROCEDURE
✔ COMFORT PROCEDURE
✔ DELETE PROCEDURE
✔ SETTING PROCEDURE
✔ OPTIONS PROCEDURE
✔ TEMPLATE PROCEDURE
✔ APPEND PROCEDURE
✔ COMPARE PROCEDURE
✔ SORT PROCEDURE
✔ DATASETS PROCEDURE
✔ PRINT TO PROCEDURE
✔ 1FORMAT PROCEDURE
✔ TRANSPOSE PROCEDURE
✔ ACCESS PROCEDURE
✔ REPORTING PROCEDURES:
✔ PRINT PROCEDURE
✔ TABULATE PROCEDURE
✔ REPORT PROCEDURE
✔ CHART PROCEDURE
✔ CHART PROCEDURE
✔ PLOT PROCEDURE
✔ GPLOT PROCEDURE
✔ STAT PROCEDURES:
✔ MEANS PROCEDURE
✔ SUMMARY PROCEDURE
✔ UNIVARIATE PROCEDURE
✔ CORR PROCEDURE
✔ FREQ PROCEDURE
✔ TEST PROCEDURE
✔ FREQ PROCEDURE
✔ RANK
✔ TEST PROCEDURE
✔ ANOVA PROCEDURE
✔ REG PROCEDURE
✔ GLM PROCEDURE
✔ Introduction to SQL Concepts
✔ Create new tables, indexes, views, and reports
✔ What are Cartesian Products, what is join
✔ Inner, FULL, OUTER, LEFT, and RIGHT Joins
Union join, Cross joins
✔ Set Operator us such as union and intersection joining multiple tables
✔ HOW TO USE SAS MACROS IN SQL
✔ How to retrieve Raw data different from DATABASES to SAS environment using SQL Statements
✔ To create tables in different databases using SAS SQL statement
✔ To manage in different databases using SAS SQL Statements
✔ Uses of pass-through facility
✔ How to communicate with other databases like Access, Oracle, DB2
✔ To control and manage other databases from SAS
✔ Macro Concepts & Advantages
✔ SAS Macro Language
✔ Macros And Macro Variables
✔ Creating Macro Variables & Using Macro Variables
✔ Creating Modular Code With Macros
✔ Invoking A Macro
✔ Adding Parameters to Macros
✔ Writing Macros With Conditional Logic
✔ Using Various Procedures in Macro Variables
✔ Nesting of Macros
✔ Multiple And Multi-Level Macros
✔ Macro Functions
Live Instructor Based Training With Software |
Lifetime access and 24×7 support |
Certification Oriented content |
Hands-On complete Real-time training |
Get a certificate on course completion |
Flexible Schedules |
Live Recorded Videos Access |
Study Material Provided |
SAS programming Training - Upcoming Batches
7th NOV 2022
8 AM IST
Coming Soon
AM IST
5th NOV 2022
8 AM IST
Coming Soon
AM IST
Don't find suitable time ?
CHOOSE YOUR OWN COMFORTABLE LEARNING EXPERIENCE
Live Virtual Training
-
Schedule your sessions at your comfortable timings.
-
Instructor-led training, Real-time projects
-
Certification Guidance.
Self-Paced Learning
-
Complete set of live-online training sessions recorded videos.
-
Learn technology at your own pace.
-
Get access for lifetime.
Corporate Training
-
Learn As A Full Day Schedule With Discussions, Exercises,
-
Practical Use Cases
-
Design Your Own Syllabus Based
SAS programming Training FAQ'S
WHERE statement can sets the criteria for any data set in a data step or a proc step.
- Using SAS Macros.
- Using a %include statement
Index function – Searches a character expression for a string of characters
SAS Statements Results
a=’ABC.DEF (X=Y)’;
b=’X=Y’;
x=index(a,b); 10
put x;
Get ahead in your career by learning SAS Programming through VISWA Online Trainings
Use the KEEP= dataset option (data statement or set statement) or KEEP statement in a data step.
eg.
Data fewdata (keep = var10 var11); Set fulldata (Keep= VAR1 VAR2 VAR3 VAR4 VAR5); Keep var6 var7; Run;
Proc sort data= Dist_County; By state district city; Run;