Learn SAS

Learn about the latest tips, tutorials, upcoming events and certifications

Learn SAS
Rick Wicklin 0
IF-THEN logic with matrix expressions

In the SAS DATA step, all variables are scalar quantities. Consequently, an IF-THEN/ELSE statement that evaluates a logical expression is unambiguous. For example, the following DATA step statements print "c=5 is TRUE" to the log if the variable c is equal to 5: if c=5 then put "c=5 is TRUE";

Learn SAS
Rick Wicklin 0
What is an empty matrix?

At the beginning of my book Statistical Programming with SAS/IML Software I give the following programming tip (p. 25): Do not confuse an empty matrix with a matrix that contains missing values or with a zero matrix. An empty matrix has no rows and no columns. A matrix that contains

Learn SAS
Rick Wicklin 0
Five tips from Simulating Data with SAS

Data simulation is a fundamental technique in statistical programming and research. My book Simulating Data with SAS is an accessible how-to book that describes the most useful algorithms and the best programming techniques for efficient data simulation in SAS. Here are five lessons you can learn by reading it: Learn strategies

Learn SAS
Maggie Miller 0
Top 10 SAS Training Post blogs

December is all about traditions. Some of mine include holiday shopping, baking (I really mean eating) Christmas cookies and putting together my annual list of most read blogs on the SAS Training Post. So as traditions go… here’s my list of the top 10 most read blogs in 2014. How

Learn SAS
Shelley Sessoms 0
Fulfilling goals

We all have goals…personal, professional, stretch goals, goals that will move us forward quickly. I’ve talked to many people who have a goal of someday writing a book. They always say “someday” in a wistful tone, because they never feel like they’ll have enough time or knowledge to be an

1 32 33 34 35 36 47

Back to Top