Answering my own question; Here's quick and dirty python code: import pandas as pd FILE_PATH = "(directory containing file)" FILE = "ABC" # filename itself (without suffix) # Note: might need to substitute the column name of the index (in quotes) for "None" here df = pd.read_sas(FILE_PATH + FILE + '.XPT', index=None) df.to_csv(FILE_PATH + FILE + '.csv')
... View more