I installed and configured Saspy in my Python Jupyter notebook yesterday, and it seemed to work well. Today, I added this code, but the SAS log tells me that the sasMSE dataset cannot be found. Furthermore, the code I wrote yesterday which worked well yesterday (and I didn't change that code at all today), where I tried to convert a CSV file to a SAS dataset, also has the same error today: the dataset cannot be found. I suspect there must be some issue with my connection to SAS, but I can't tell that there's anything wrong at first glance. dfMSE=pd.DataFrame(MSE)
sasMSE=sas.df2sd(dfMSE, 'cfc')
msesascode="""
data sasMSE;
set sasMSE;
MSE='0';
Breakpoint=_N_;
PROC gplot
data=sasMSE;
plot MSE*Breakpoint;
run;
"""
sas.submitLST(msesascode)
... View more