The SASData object has to_csv
and to_df_CSV
methods, but both of these write to locations on the host machine (where the SAS session is running). Is there a way to write a large SAS data table to .CSV on my local machine from a remote connection? The option on the saspy Github page was to get the DataFrame, via to_df
, and then write that to .CSV, but this won't work in my case because the SAS table is bigger than memory. Must I read and write in chunks?
saspy: write large SAS table to local csv
1.8k Views Asked by kingfischer At
2
Here's an example of what I'm suggesting.