Category: SAS

Adventures of a SAS detective and the fantastic FIND function

Did I trick you into seeing what this blog is about with its mysterious title? I am going to talk about how to use the FIND function to search text values. The FIND function searches for substrings in character values. For example, you might want to extract all email addresses […]

Adventures of a SAS detective and the fantastic FIND function was published on SAS Users.

How to filter variables by percentage of missing values or duplicate values in SAS

This article discusses how to use SAS to filter variables in a dataset based on the percentage of missing values or duplicate values. The missing value statistics can be implemented by either DATA step programming on your own or reusing the existing powerful PROC FREQ.

How to filter variables by percentage of missing values or duplicate values in SAS was published on SAS Users.

Machine Learning with SASPy: Exploring and Preparing your data – Part 3

Parts 1 and 2 of this blog post discussed exploring and preparing your data using SASPy. To recap, Part 1 discussed how to explore data using the SASPy interface with Python. Part 2 continued with an explanation of how to prepare your data to use it with a machine-learning model. […]

Machine Learning with SASPy: Exploring and Preparing your data – Part 3 was published on SAS Users.

Adding SAS® procedures to the SASPy interface to Python

Bringing the power of SAS to your Python scripts can be a game changer. An easy way to do that is by using SASPy, a Python interface to SAS allowing Python developers to use SAS® procedures within Python. However, not all SAS procedures are included in the SASPy library. So, […]

Adding SAS® procedures to the SASPy interface to Python was published on SAS Users.