I changed the name and the description of the blog. Why? Because I am no longer entrenched in just SAS. It is one part of the world I world I work in. Also, I don’t have a lot of hits and I use the blog mainly as a means of documenting technical discov…
Category: SAS
SAS Certification sets up Indiana University grads for success
A year ago, Love Bisht and Hardi Gokani were working toward their master’s degrees in information systems at Indiana University’s Kelley School of Business when SAS piqued their interest. Today, they’re newly minted graduates with a powerful extra credential – SAS Certification. Love and Hardi, both India natives, encountered SAS […]
The post SAS Certification sets up Indiana University grads for success appeared first on The SAS Training Post.
Mapping the 50 US hospitals with the highest price markups
A recent study by Bai & Anderson has found that some hospitals charge 10x (ie, 1000%) higher than the standard rates set by Medicare. Many news agencies have posted the list of the 50 US hospitals that have the highest markup. But I am more visually oriented, so of course I used SAS […]
The post Mapping the 50 US hospitals with the highest price markups appeared first on The SAS Training Post.
Ask the Expert: Creating custom tasks for SAS Enterprise Guide
If you have not yet discovered the new Ask the Expert series on the SAS Training site, you are missing out on a treasure. Visit the site right now and review all of the available topics, from “Newbie” to Analytics to Visualization to good ol’ SAS programming. Go on; I’ll […]
The post Ask the Expert: Creating custom tasks for SAS Enterprise Guide appeared first on The SAS Dummy.
Tracking West Nile virus mosquitos in the US
Have you ever been bitten by a mosquito? What are the odds it carried the West Nile virus? … Perhaps a lot higher than you thought! Here’s a picture of a mosquito that kept ‘bugging’ me around my computer desk at home – good riddance, I say! The West Nile […]
The post Tracking West Nile virus mosquitos in the US appeared first on The SAS Training Post.
Estimating Analytics Software Market Share by Counting Books
Below is the latest update to The Popularity of Data Analysis Software. Books The number of books published on each software package or language reflects its relative popularity. Amazon.com offers an advanced search method which works well for all the software except R … Continue reading →![]()
Indian Baby Population in US by State
Folks, I was going thru few visualizations on Tableau’s website today and I came across this visualization Exploring the SSA Baby Names Dataset by one of the acclaimed Tableau professional….It made me thinking to explore of How many of those SSA baby names are of Indian American (Desi) descent…
I found a website online that had a list of popular Indian baby names…I read the data into SAS and made a Tableau Story out of it… Please take a few moments to play with this interesting viz…I hope you like it….
Here’s the SAS code that went into the prep of the data…
‘) then start=0;
‘
) then do; recvalst=1; hier+1;; end;
‘) then do; recvalend=1; delete; end;
‘) then do; recst=0; hier=0;; end;
‘
,”); SN=strip(record); end;
‘
,”); Name=strip(record); end;
‘
,”); Meaning=strip(record); end;
‘
,”); Gender=strip(record); end;
‘
,”); Origin=strip(record); end;
‘
,”);
‘,”);
‘) and start then do; recend=1; hier=0; output; end;
DATA STEP text file tricks
When reading a text file (common extensions: TXT, DAT; or, for the adventurous: HTML) with the DATA STEP, you should always view several lines from the text file, and compare to the record layout, before completing the INPUT statement. There are many ways to view a text file. I use […]
The post DATA STEP text file tricks appeared first on The SAS Training Post.
