Uncategorized

David Froning 0
5 proven ways to improve field quality performance

Your customers are more demanding than ever before.  Improving field quality and your customer's experience of your product is essential to staying competitive.  However, truly understanding customer experience can be a daunting task.  These recommendations have been refined and proven in dozens of manufacturers as simple ways to rapidly improve field quality performance. 1. Think big; start small.

Data Management
David Loshin 0
Embedding event stream analytics

In my last two posts, I introduced some opportunities that arise from integrating event stream processing (ESP) within the nodes of a distributed network. We considered one type of deployment that includes the emergent Internet of Things (IoT) model in which there are numerous end nodes that monitor a set of sensors,

Learn SAS
Jim Simon 0
Weird PROC FREQ trick

Default PROC FREQ output looks like this: Suppose you don't want the two cumulative statistic columns above.  No problem.  Those can be suppressed with the NOCUM option on the TABLE statement, like this: proc freq data=sashelp.shoes; table product / nocum; run;