FALL 2009
TECHIE TIPS
Education Profile: Lorne Rothman
Read.
User Tip: Sridevi Chandrasekaran
Read.
Have you changed companies? Do you want to modify your contact preferences? Don’t forget to update your SAS profile!

You can easily find out what's new in SAS 9.2 from new products to updates and enhancements.

Go to the SAS®9 link from our support.sas.com Web site.
For details on all of SAS' products and solutions, click here.
The SAScom blog: http://blogs.sas.com/sascom/
SAS Canada
SAS® USER PROFILE
Names: Lisa Eckler
Location: Toronto, Ontario
Company: Lisa Eckler Consulting Inc.

SAS® History (years using SAS, platforms, primary products, etc.): I’ve been using SAS products since being tossed a SAS manual during a co-op work term long, long ago. I was asked to provide SAS support for a company that had just installed it, while the only person in the organization with SAS experience went on a three-week vacation. Fortunately, I didn’t discover the enormity of what there was to learn until the end of the three weeks. I have recently celebrated 20 years in consulting, providing SAS development and support services to clients in a variety of industries and am delighted to still be learning new things about SAS.

Pets: Two lazy, middle-aged cats who completely rule the household.

Partner/Family: See pets, above.

Sports/Hobbies: These days, leisure time is all about preparing for the role of conference co-chair of NESUG 2010, which will be held in Baltimore, MD. That should be another great opportunity for SAS users to get together and share ideas.

What your ideal weekend would be: Spent outdoors in moderate weather, on or near water.

Favorite Foods: Chocolate!

If I could be anything at all (besides a SAS programmer), I would be: The innkeeper at a small oceanfront inn, enjoying leisurely morning coffee while chatting with interesting, well-traveled guests. Of course, there’d be lots of enthusiastic and energetic staff to deal with all the hard work of running a place like that.

When I’m not using SAS: I like to spend my time outdoors, on or near a large body of water – usually Lake Ontario.

One thing every SAS programmer should know (a techie tip - this could be at any level - e.g., a simple programming tip, something new you’ve learned lately, macros, whatever you think may be helpful for other SAS users):

I rarely get through a day of programming without using formats. I think everyone who analyzes data in SAS should be using formats – whether they’re standard ones for things like grouping dates or user-defined formats for categorizing data values, subsetting data based on values and highlighting unexpected values or combinations while analyzing data.

For example, using the standard SAS format, YEAR, the following code will show the count of records per calendar year. There’s no need to extract the year part of a value stored as a SAS date into a separate variable in order to categorize.

proc freq data = MY_TEST_DATASET;
tables my_date_value / list missing;
format my_date_value year4.;
run;

 

 

SAS and all other SAS Institute Inc. product or service names are registered trademarks \or trademarks of SAS Institute Inc. in the USA and other countries. ® indicates USA registration. Other brand and product names are trademarks of their respective companies. Copyright © 2009, SAS Institute Inc. All rights reserved.