32. Comparison with SAS
Comparison with SAS
For potential users coming from SAS this page is meant to demonstrate how different SAS operations would be performed in pandas.
If you’re new to pandas, you might want to first read through 10 Minutes to pandas to familiarize yourself with the library.
As is customary, we import pandas and numpy as follows:
In [1]: import pandas as pd In [2]: import numpy as np
Note
Throughout this tutorial, the pandas DataFrame
will be displayed by calling df.head()
, which displays the first N (default 5) rows of the DataFrame
. This is often used in interactive w