Tag: Tech

Esri integration with SAS Visual Analytics: Geocoding

Geocoding is no longer limited to just Base SAS. You can also geocode from within Visual Analytics, thanks to the integration with the Esri geocoding api. This feature is part of the Esri Premium agreement, and became available in VA 8.3.

Esri integration with SAS Visual Analytics: Geocoding was published on SAS Users.

Summarization in CASL

Summarizing numeric data is an important step in analyzing your data. CASL provides multiple actions that generate summary statistics. This blog provides a quick overview of three of those actions: SIMPLE.SUMMARY, AGGREGATION.AGGREGATE, and DATAPREPROCESS.RUSTATS.

Summarization in CASL was published on SAS Users.

What really matters: SAS #data4good and the SAS Press team

As a company, SAS consistently supports #data4good initiatives designed to help those less fortunate around the world. SAS Press team members recently took some time to reflect on the SAS initiatives that inspired them. We thought this would be a good opportunity to introduce some of the team who work […]

What really matters: SAS #data4good and the SAS Press team was published on SAS Users.

SAS Event Stream Processing on SAS Analytics Cloud – my journey

In a previous post, Zero to SAS in 60 Seconds- SAS Machine Learning on SAS Analytics Cloud, I documented my experience with a SAS free trial on the SAS Analytics Cloud. Well, the engineers at SAS have been busy and created another free trial. The new trial covers SAS Event […]

SAS Event Stream Processing on SAS Analytics Cloud – my journey was published on SAS Users.

A DATA step compiler trick to get the record count

Years ago I saw a line of SAS code that was really puzzling. It was a statement that started with: if 0 then … ; What? This was a statement that would always be evaluated as false. Why would anyone write such a statement? Recently, I was discussing with a […]

A DATA step compiler trick to get the record count was published on SAS Users.

How the RANK procedure calculates ranks with groups and ties

The RANK procedure (PROC RANK) is useful for ranking numeric variables in a data set across observations. You often see PROC RANK used to rank data into quartiles, deciles, or percentiles. This action requires that you use the GROUPS= option in the PROC RANK statement. This blog answers three questions […]

How the RANK procedure calculates ranks with groups and ties was published on SAS Users.

Passing comma-delimited values into SAS macros and macro functions

Have you ever tried to pass comma-delimited values to SAS macro or to a SAS macro function? How can SAS distinguish commas separating parameters or arguments from commas separating parts of the values? Passing comma-delimited value as an argument to a SAS macro function Let’s say you want to extract […]

Passing comma-delimited values into SAS macros and macro functions was published on SAS Users.