Assume the following:
I only have Python installed (and not SAS). I have an SAS table which I would like to work with in Python, this is easily done by loading a SAS table through pandas with:
pd.read_sas # See the link: https://www.marsja.se/how-to-read-sas-files-in-python-with-pandas/
Now when I am done with my analysis, I would like to export my dataframe to an SAS table, is this possible? If I would like to export my dataframe to an CSV or EXCEL file then that is easy, but now I would like to export it to an SAS table.
Note, I know that for instance in latest version of VIYA you can write Python code directly in SAS, but the question here is: Can i export a dataframe to a SAS table similarly as I could export it to any other format such as CSV or Excel?