No, this is not about a super-expensive set of bed linens. It's about the 1000th thread (discussion topic) in the SAS Enterprise Guide discussion forum. This discussion forum began as a pilot program over two years ago, with SAS Enterprise Guide and ODS and Base Reporting among the first two
Author
In her completely random blog entry, AnnMaria says: I can’t see a lot of people who are experienced SAS programmers switching to Enterprise Guide. Yeah, we get that a lot. SAS programmers sometimes resist adopting SAS Enterprise Guide citing these (paraphrased) reasons: "I don't need a point-and-click interface to generate
As a dedicated SAS employee, I take advantage of as many offered perks as I can, and that includes attending the annual SAS Winter Party. My wife and I have not missed one since I started working here, which means that last weekend we attended for the 16th time. Every
If you use SAS for just one purpose, you might be interested to see some of its other uses around your world. This video is also a great link to share with your less-tech-savvy friends/relatives who ask the question: what is SAS and why should I care?
At SAS, our Windows client products (such as SAS Enterprise Guide and SAS Add-In for Microsoft Office) feature hundreds of Windows forms, or dialog windows, implemented with Microsoft .NET. Because we encourage customers to extend our products with their own custom tasks, I wanted to share some tips on how
SAS recently appointed a Social Media Manager for the company. Check out Dave Thomas' recent interview here. The interview question that must have been edited out: "So, why did you decide to leave Wendy's?" Just like SAS ("what's a shoe company got to do with business analytics?"), I imagine that
Today's featured topic on support.sas.com teaches you how to use SAS to work with multiple languages and character sets in a single SAS session. The ability to switch locales and languages "on the fly" depends on the improved support for Unicode within SAS 9.2. Although it's a less heralded component
Today I discovered this thoughtful blog from AnnMaria (I found it by way of her Twitter tweet). I was pleased to see SAS Enterprise Guide in the "wonder" column. Here's the entry: The Dangers and Wonders of Statistics Using SAS.
Jason posted his thoughts on using a netbook with a thin layer of applications to do the stuff that he needs to do: surf the web and work his inbox. But don't underestimate these little machines. Over on the Dell Mini forum there is a discussion among folks who use
Who knew? It turns out that Santa gets more done using SAS. Maybe he even gets his mittens dirty with a little bit of DATA step: data good_kids; set world.allchildren (where=(BEHAVIOR <> "NAUGHTY")); run; title "Nice children"; proc print data=good_kids; run;