Before reading into pandas my data looks like in sas dataset
Name
Alfred
Alice
After reading into pandas data is getting as
Name
b'Alfred'
b'Alice'
Why I am getting the data is different? Steps followed:
- Import pandas as pd
df=pd.read_sas(r'C:/ProgramData/Anaconda3/Python_local/class.sas7bdat',format='sas7bdat')
Need your help.