1

Apparently pandas.read_sas can only read XPORT or SAS7BDAT format SAS files while Dispatch from wind32com.client can read .jmp format but only on windows. So is there a straightforward way to read in JMP files with Python on a Mac?

1201ProgramAlarm
  • 32,384
  • 7
  • 42
  • 56
jmdeamer
  • 337
  • 2
  • 16
  • Have you seen this question [How to read JMP \*.jmp file with Python Pandas into Pandas dataframe](https://stackoverflow.com/questions/46476460/how-to-read-jmp-jmp-file-with-python-pandas-into-pandas-dataframe)? – Jab Feb 05 '19 at 22:31
  • That's a Windows only solution – jmdeamer Feb 05 '19 at 23:44

1 Answers1

0

As of Feb 2019 it doesn't seem possible to read in .jmp files using Python on a Mac. The best option is probably to get a 30-day trial of JMP software and convert .jmp files to csv or something from there. You can also read SAS files (not .jmp) in R with haven::read_sas().

jmdeamer
  • 337
  • 2
  • 16