pyreadr not working (how to import RData file to python)
pyreadr not working (how to import RData file to python) Question: I always get an empty dictionary when I import any RData file into Python using pyreadr. Here is my Python code: import pyreadr result = pyreadr.read_r(‘data.RData’) print(result.keys()) which returns odict_keys([]) I have pyreadr installed and am running Python version 3.7.11 on Mac. In the …