***Import in Python*** ```python import pandas as pd data_url = "https://forge.scilab.org/index.php/p/rdataset/source/file/master/csv/datasets/cars.csv" df_python = pd.read_csv(data_url) df_python.drop(df_python.columns[[0]], axis=1, inplace=True) ``` ***Describe in SAS*** ```python import saspy session_sas = saspy.SASsession(cfgname='winlocal') ``` SAS Connection established. Subprocess id is 6784 ```python session_sas ``` Access Method = IOM SAS Config name = winlocal WORK Path = / SAS Version = 9.04.01M1P12042013 SASPy Version = 2.2.6 Teach me SAS = False Batch = False Results = Pandas SAS Session Encoding = WLATIN1 Python Encoding value = windows-1252 ```python df_sas = session_sas.df2sd(df_python) df_sas.describe() ```
| Variable | N | NMiss | Median | Mean | StdDev | Min | P25 | P50 | P75 | Max | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | speed | 50 | 0 | 15 | 15.40 | 5.287644 | 4 | 12 | 15 | 19 | 25 |
| 1 | dist | 50 | 0 | 36 | 42.98 | 25.769377 | 2 | 26 | 36 | 56 | 120 |