All Posts

Data Visualization
Sanjay Matange 0
Is that Annotate?

The SGPLOT procedures includes features to add annotations to your graph in many different ways.  Annotations provide you a flexible way to add features to your graph that are not available through the standard plot statements. Recently, I saw this graph on the web that caught my attention.  Clearly, this looks like

Learn SAS
Jim Simon 0
DATA STEP text file tricks

When reading a text file (common extensions: TXT, DAT; or, for the adventurous: HTML) with the DATA STEP, you should always view several lines from the text file, and compare to the record layout, before completing the INPUT statement.  There are many ways to view a text file.  I use

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;

Analytics
Tobias Nittel 0
Software stirbt - alles wird zu Software

Alles wird zu Software : Wir hören es derzeit überall - Firmen erfinden sich neu. Ob Automobil, Kraftwerk oder Einzelhändler, alle Geschäftsmodelle sollen sich vom Produkthersteller oder -verteiler, hin zum Services-Geschäft bewegen. Über die USA weiss man ja, dass fast 80% des Bruttosozialproduktes aus den Dienstleistungen kommen. Oftmals weniger bekannt

Programming Tips
Dave Naden 0
SAS Environment Manager: Importing events

An important goal of SAS Environment Manager is to communicate with existing software systems. This capability includes not only monitoring other non-SAS platform resources, but also means having the ability to respond to events from outside the SAS platform.  We’ve seen how SAS Environment Manager can generate an event for external consumption (see Scott McCauley’s

1 570 571 572 573 574 729