saspy sasstat() results as text? #484
-
I want the results of my sas session to be in text format so I initialized my session as follows:
Then, using saspy, I fit a mixed model using the following code:
Which suggests that the model was fit But then when I run
It seems that my SASsession is reverting to results = 'Jupyter' somehow. Would anyone know what is going on? I am using reticulate to use saspy in RStudio but just wanted to know if there was still a way to view the objects of Additionally, I am wondering if there is a way to save Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey, you're right, any tabular output from the analytic methods isn't being rendered as TEXT when results='text' (non-tabular, like plots graphs ..., will only be returned as HTML). But, they will be returned as Pandas DataFrames when you use the default results='PANDAS'.
|
Beta Was this translation helpful? Give feedback.
Hey, you're right, any tabular output from the analytic methods isn't being rendered as TEXT when results='text' (non-tabular, like plots graphs ..., will only be returned as HTML). But, they will be returned as Pandas DataFrames when you use the default results='PANDAS'.