Last active
July 13, 2020 09:36
-
-
Save BexTuychiev/43c35346fecb296206ab2c62353afbdd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sas7bdat import SAS7BDAT | |
import pandas as pd | |
with SAS7BDAT('skinproduct.sas7bdat') as file: | |
sas_df = file.to_data_frame() | |
print(sas_df) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment