I need some help... I got some troubles reading my sas table in python using the pandas function read_sas. I got the following error:
"ValueError: Length of values does not match length of index".
Here is the code I run:
import pandas as pd
data=pd.read_sas("my_table.sas7bdat")
data.head()
My sas table is pretty big with 505 columns and 100 000 rows.
Thanks all for your help.