English

Rick Wicklin 0
Error distributions and exponential regression models

Last week I discussed ordinary least squares (OLS) regression models and showed how to illustrate the assumptions about the conditional distribution of the response variable. For a single continuous explanatory variable, the illustration is a scatter plot with a regression line and several normal probability distributions along the line. The

SAS Events
Nancy Moser 0
Users Catch the Wave at WUSS 2015

Over 400 enthusiastic SAS users gathered in San Diego September 9-11, 2015 for the 23rd annual WUSS 2015 conference. In this “digital age,” where so much of our communication is virtual and social, it was a treat to get out and meet SAS users face-to-face. The two and a half-days were packed

Rick Wicklin 0
Generate evenly spaced points in an interval

I've previously written about how to generate a sequence of evenly spaced points in an interval. Evenly spaced data is useful for scoring a regression model on an interval. In the previous articles the endpoints of the interval were hard-coded. However, it is common to want to evaluate a function

SAS Events
Maggie Miller 0
How to get your SAS on

We’ve all probably done it. It benefits others and yourself. You don’t get paid, but it always makes you feel good. Of course, I’m talking about volunteering. Jennifer Waller’s keynote presentation, “How To Get Your SAS On” was more than just a catchy title. The attendees at WUSS 2015 in

Learn SAS
Jim Simon 0
Random Sampling: What's Efficient?

Suppose you wish to select a random sample from a large SAS dataset.  No problem. The PROC SURVEYSELECT step below randomly selects a 2 percent sample: proc surveyselect data=large out=sample method=srs /* simple random sample */ n=1000000; /* sample size */ run; Do you have a SAS/STAT license?   If not,

Internet of Things
Stuart Rose 0
Flipping the data equation

Big Data has become a technology buzzword. But how is Big Data changing insurance? Historically, insurance companies have used SMALL data to make BIG decisions. Today, insurers are using BIG data for SMALL decisions. What does this mean? Traditionally, insurance companies have aggregated data to group risks into broad categories

Data Visualization
Sanjay Matange 0
Broken Axis Redux

Often when the data includes some extreme difference in measures or some outliers, the plot of the data points can get skewed due to the need to accommodate the extreme outliers.  The bulk of the observations get squeezed into a smaller region of the plot.  While this may be useful

1 212 213 214 215 216 321