8 lines
173 B
Python
8 lines
173 B
Python
# pip3 install pyreadstat
|
|
import pandas as pd
|
|
import numpy as np
|
|
import pyreadstat
|
|
|
|
df, meta = pyreadstat.read_sav('/home/pi/Downloads/ESS9e03 (2018).sav')
|
|
|
|
print(df.head()) |