Skip to content
Advertisement

Convert SAS proc sql to Python(pandas)

I rewrite some code from SAS to Python using Pandas library.

I’ve got such code, and I have no idea what should I do with it?

Can you help me, beacase its too complicated for me to do it correct. I’ve changed the name of columns (for encrypt sensitive data)

This is SAS code:

This is my try in Pandas:

Advertisement

Answer

First, calling SELECT * in an aggregate GROUP BY query is not valid SQL. SAS may allow it but can yield unknown results. Usually SELECT columns should be limited to columns in GROUP BY clause.

With that said, aggregate SQL queries can generally be translated in Pandas with groupby.agg() operations with WHERE (filter before aggregation) or HAVING (filter after aggregation) conditions handled using either .loc or query.

SQL

Pandas

General

Specific

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement