Showing posts with label SAS predictive modeling training. Show all posts
Showing posts with label SAS predictive modeling training. Show all posts

Thursday, 30 June 2016

Discover the advanced techniques in SAS – a book on SAS Macro language Magic : Epoch Research Institute India Pvt. Ltd. (www.epoch.co.in)

Discover the advanced techniques in SAS – a book on SAS Macro language Magic : EpochResearch Institute India Pvt Ltd. (SASAuthorised Training : Ahmedabad | Bangalore)


Here since last few times, I am in the series to update the list of some of the useful books in SAS programming  for you. And I am sure you are quite interested as two-three of your readers have provided me with their genuine feedback as where should they buy as they found it quite useful and interesting. So I thought why not I should continue this valuable series for you.

I won’t take much time of yours as you all might be very eventful with your daily programming tasks. The book that I want to introduce over here is SAS Macro language magic – Discover the advanced techniques. The author has skilfully represented within the book that even when the common tools are utilized to their full advantage they can convert into remarkable applications. Here once you go through this book, you will come to know regarding the basic knowledge of SAS macro language as well as how to apply the same knowledge in various new ways.

Tricks and secrets – Here all the tricks and secrets are disclosed and that will surely enable you to write the SAS Macros that work like magic. This book pushes the SAS macro language to the maximum. This book will help you to find out the techniques that you like and then explore it to discover what works, how it works as well as what are the possibilities. You can focus and experiment more on SAS application and at the same time you can visualize the SAS program that you want to generate.

I hope so this book would help you in discovering all the new possible SAS techniques in advanced mode. What are your suggestions after reading this book? Simply provide with feedback.

Epoch Research Institute Links:


Email us: info@epoch.co.in

SAS Training & Placement Programs with Internship: Epoch Research Institute India Largest and Oldest #SASTraining Institute (#epochsastraining)

EPOCH RESEARCH INSTITUTE OFFERS:
Authorized SAS TRAINING | SAS CERTIFICATION | SOFTWARE PURCHASE | BUINESS CONSULTING | TECHNICAL SUPPORT ON SAS || SAS STAFFING SOLUTION 

Label:
#SASELEARNING,#SASELEARNING,#SASONLINETRAINING,
#SASONLINETRAININGFORBEGINNERS,#LEARNSASPROGRAMMINGONLINE,
#SASCLINICALONLINETRAINING,#SASBASEONLINETRAINING
#BIGDATASASTRAININGEPOCH,#SASBIGDATATRAINING #EPOCHRESEARCHINSTITUTE, #SASTRAINING, EPOCH SAS FEEDBACK,

#CLINICALSAS, #CLINICALSASPROGRAMMER, #CLINICALSASPROGRAMMING

Tuesday, 17 May 2016

Introduction to one day course book for SAS programming for beginners : Epoch Research Institute India Pvt. Ltd. (www.epoch.co.in)

Introduction to one day course book for SAS programming for beginners : EpochResearch Institute India Pvt Ltd. (SASAuthorised Training : Ahmedabad | Bangalore


SAS_programming

For all the beginners in SAS programming, here is the book introducing one day course for SAS programming. This book will provide the readers with all the basic info regarding SAS programming. This includes basic data manipulation as well as statistical summaries that are available through SAS. The author has developed this book keeping in sight all the summaries for the beginners. It includes all the strong concepts regarding SAS programming. It is explained on strong basis regarding how to carry out data manipulations that real life data calls for frequently. Each and every programming technique is supported by tasks that can help to build the confidence level. It also provides with different tasks for the readers and is a complete package providing solutions too. Once you have gone through the book and have cleared the concepts, next you can learn further the advance aspects of SAS programming

So want to read this book? Kindly have a look below and kick start learning SAS programming.



Epoch Research Institute Links:

Email us: info@epoch.co.in

SAS Training & Placement Programs with Internship: Epoch Research Institute India Largest and Oldest #SASTraining Institute (#epochsastraining)

EPOCH RESEARCH INSTITUTE OFFERS:
Authorized SAS TRAINING | SAS CERTIFICATION | SOFTWARE PURCHASE | BUINESS CONSULTING | TECHNICAL SUPPORT ON SAS || SAS STAFFING SOLUTION 

Label:
#SASELEARNING,#SASELEARNING,#SASONLINETRAINING,
#SASONLINETRAININGFORBEGINNERS,#LEARNSASPROGRAMMINGONLINE,
#SASCLINICALONLINETRAINING,#SASBASEONLINETRAINING
#BIGDATASASTRAININGEPOCH,#SASBIGDATATRAINING #EPOCHRESEARCHINSTITUTE, #SASTRAINING, EPOCH SAS FEEDBACK,

Thursday, 14 April 2016

PROC REPORT versus other Base SAS procedures : Epoch Research Institute India Pvt. Ltd. (www.epoch.co.in)

PROC REPORT versus other Base SAS procedures : EpochResearch Institute India Pvt Ltd. (SASAuthorised Training : Ahmedabad | Bangalore)

Jane Eslinger
Jane Eslinger

When you’re making a report, how do you choose which procedure to use?  The answer is – it depends.
It depends on:
  • whether you are doing an ad hoc analysis or creating a final report that many people will see
  • whether you will run statistical tests with your data or if you just want to see it
  • your level of comfort and if you already have working code
Most of my work involves creating final reports that will be distributed to many users.  I am a PROC REPORT specialist, so 90% of the time, I use PROC REPORT to create these reports.
Here is why:

PROC REPORT versus PROC MEANS/PROC SUMMARY

PROC MEANS is a wonderful, powerful procedure in its own right.  It is an excellent tool for creating data sets of statistics that get fed into DATA steps or other procedures.  I use PROC MEANS extensively, but not as my final reporting procedure.
PROC MEANS can’t:
  • give me percentages
  • do traffic lighting
  • add, subtract, multiply, or divide two variables
  • create new variables
PROC MEANS can give you an overall total and a total for CLASS and BY variables, but so can PROC REPORT.

PROC REPORT versus PROC FREQ

PROC FREQ is really good at creating a small data set of counts that I can use later.  It is a very quick way of calculating percentages, which might be easier than trying to calculate them in PROC REPORT.  However, starting with PROC REPORT is better for me, just in case I am asked to make changes to the final output and the changes require something that PROC FREQ can’t do.
PROC FREQ does not:
  • support the STYLE option, so I can’t apply traffic lighting
  • calculate simple statistics, like median or mean
  • add informative text
PROC REPORT versus PROC PRINT

I like PROC PRINT because it provides a simple, clean way of displaying data.  But, in my way of thinking, PROC REPORT can do everything PROC PRINT can do and more.
PROC PRINT can only provide the N statistic and a sum of the numeric variables, either for BY groups or the overall data set.
It cannot:
  • calculate other statistics
  • add, subtract, multiply, or divide two variables
  • create new variables
  • apply traffic lighting colors based on the value of another valuable
  • apply attributes at the row level (only the column level)
PROC REPORT versus PROC TABULATE

For me, PROC TABULATE is the closest competitor to PROC REPORT.  Both are powerful and produce excellent output.  However, I think PROC REPORT has a slight advantage over PROC TABULATE because of its DATA step capabilities. 
PROC TABULATE does:
  • calculate row, group, and column percentages using a statistical keyword; PROC REPORT does not
  • calculate totals for individual CLASS variables, as well as the combination of CLASS variables with very simple code
  • stack variables in a column
  • apply style changes such as traffic lighting, but not based on the value of another variable
PROC TABULATE does not:
  • add, subtract, multiply, or divide two variables (Note: you can divide in some cases)
  • have the ability to create new variables
  • insert text in the middle of the table
  • give much control over the headers
I have found that PROC REPORT offers me more flexibility, so I instinctively start with it. You might have a different opinion of which procedure is best to use.  That is ok!  If you have a PROC PRINT step that does everything you need then, by all means, keep using the PROC PRINT step (or FREQ/MEANS/TABULATE).  Don’t change your code for no reason!
But, if the procedure you are currently using does not give you everything you need, then change it.  It might take less time to change the procedure than to write code to restructure the data to fit the current procedure.

Practice using other procedures to expand your programming skills.  For example, if you have a PROC MEANS step you use a lot, see if you can create the same output using PROC TABULATE or PROC REPORT.  When you become familiar with other procedures, you can switch between them.  You will also internalize which procedure will be the best choice for certain tasks.

For anyone attending this year’s SAS Global Forum, I will be in the Quad throughout the event. Feel free to find me, I would love to talk with you about this topic!

Source : 
http://blogs.sas.com/content/sastraining/2016/04/07/proc-report-versus-base-sas-procedures/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+TheSasTrainingPost+%28The+SAS+Training+Post%29

Epoch Research Insitute Links:

Email us: info@epoch.co.in

SAS Training & Placement Programs with Internship: Epoch Research Institute India Largest and Oldest #SASTraining Institute (#epochsastraining)

EPOCH RESEARCH INSTITUTE OFFERS:
Authorized SAS TRAINING | SAS CERTIFICATION | SOFTWARE PURCHASE | BUINESS CONSULTING | TECHNICAL SUPPORT ON SAS || SAS STAFFING SOLUTION 

Label:
#SASELEARNING,#SASELEARNING,#SASONLINETRAINING,
#SASONLINETRAININGFORBEGINNERS,#LEARNSASPROGRAMMINGONLINE,
#SASCLINICALONLINETRAINING,#SASBASEONLINETRAINING
#BIGDATASASTRAININGEPOCH,#SASBIGDATATRAINING #EPOCHRESEARCHINSTITUTE, #SASTRAINING, EPOCH SAS FEEDBACK,
#CLINICALSAS #CLINICALSASPROGRAMMING #LEARNCLINICALSAS
#LEARNCLINICALSASPROGRAMMING

Thursday, 17 March 2016

Discover the advanced techniques in SAS – a book on SAS Macro language Magic : Epoch Research Institute India Pvt. Ltd. (www.epoch.co.in)

Discover the advanced techniques in SAS – a book on SAS Macro language Magic : EpochResearch Institute India Pvt Ltd. (SASAuthorised Training : Ahmedabad | Bangalore)


Here since last few times, I am in the series to update the list of some of the useful books in SAS programming for you. And I am sure you are quite interested as two-three of your readers have provided me with their genuine feedback as where should they buy as they found it quite useful and interesting. So I thought why not I should continue this valuable series for you.

I won’t take much time of yours as you all might be very eventful with your daily programming tasks. The book that I want to introduce over here is SAS Macro language magic – Discover the advanced techniques. The author has skilfully represented within the book that even when the common tools are utilized to their full advantage they can convert into remarkable applications. Here once you go through this book, you will come to know regarding the basic knowledge of SAS macro language as well as how to apply the same knowledge in various new ways.

Tricks and secrets – Here all the tricks and secrets are disclosed and that will surely enable you to write the SAS Macros that work like magic. This book pushes the SAS macro language to the maximum. This book will help you to find out the techniques that you like and then explore it to discover what works, how it works as well as what are the possibilities. You can focus and experiment more on SAS application and at the same time you can visualize the SAS program that you want to generate.

I hope so this book would help you in discovering all the new possible SAS techniques in advanced mode. What are your suggestions after reading this book? Simply provide with feedback.

Epoch Research Insitute Links:

Email us: info@epoch.co.in

SAS Training & Placement Programs with Internship: Epoch Research Institute India Largest and Oldest #SASTraining Institute (#epochsastraining)

EPOCH RESEARCH INSTITUTE OFFERS:
Authorized SAS TRAINING | SAS CERTIFICATION | SOFTWARE PURCHASE | BUINESS CONSULTING | TECHNICAL SUPPORT ON SAS || SAS STAFFING SOLUTION 

Label:
#SASELEARNING,#SASELEARNING,#SASONLINETRAINING,
#SASONLINETRAININGFORBEGINNERS,#LEARNSASPROGRAMMINGONLINE,
#SASCLINICALONLINETRAINING,#SASBASEONLINETRAINING
#BIGDATASASTRAININGEPOCH,#SASBIGDATATRAINING #EPOCHRESEARCHINSTITUTE, #SASTRAINING, #EPOCH SAS FEEDBACK,#CLINICALSAS, #CLINICALSASPROGRAMMING, #CLINICALSASPROGRAMMER

Friday, 26 February 2016

Introduction to one day course book for SAS programming for beginners : Epoch Research Institute India Pvt. Ltd. (www.epoch.co.in)

Introduction to one day course book for SAS programming for beginners : EpochResearch Institute India Pvt Ltd. (SASAuthorised Training : Ahmedabad | Bangalore


SAS_programming

For all the beginners in SAS programming, here is the book introducing one day course for SAS programming. This book will provide the readers with all the basic info regarding SAS programming. This includes basic data manipulation as well as statistical summaries that are available through SAS. The author has developed this book keeping in sight all the summaries for the beginners. It includes all the strong concepts regarding SAS programming. It is explained on strong basis regarding how to carry out data manipulations that real life data calls for frequently. Each and every programming technique is supported by tasks that can help to build the confidence level. It also provides with different tasks for the readers and is a complete package providing solutions too. Once you have gone through the book and have cleared the concepts, next you can learn further the advance aspects of SAS programming

So want to read this book? Kindly have a look below and kick start learning SAS programming.



Epoch Research Insitute Links:

Email us: info@epoch.co.in
SAS Training & Placement Programs with Internship: Epoch Research Institute India Largest and Oldest #SASTraining Institute (#epochsastraining)

EPOCH RESEARCH INSTITUTE OFFERS:
Authorized SAS TRAINING | SAS CERTIFICATION | SOFTWARE PURCHASE | BUINESS CONSULTING | TECHNICAL SUPPORT ON SAS || SAS STAFFING SOLUTION 

Label:
#SASELEARNING,#SASELEARNING,#SASONLINETRAINING,
#SASONLINETRAININGFORBEGINNERS,#LEARNSASPROGRAMMINGONLINE,
#SASCLINICALONLINETRAINING,#SASBASEONLINETRAINING
#BIGDATASASTRAININGEPOCH,#SASBIGDATATRAINING #EPOCHRESEARCHINSTITUTE, #SASTRAINING, #EPOCH SAS FEEDBACK,
#CLINICALSASPROGRAMMING, #EPOCHCLINICALSASPROGRAMMING.

How to code in Python with SAS 9.4 by Epoch Research Institute

The SAS® platform is now open to be accessed from open-source clients such as Python, Lua, Java, the R language, and REST APIs to leverage...