I'm trying to work in SAS with python (using saspy). I've just connected to remote machine with SSH and its okay. Also, I've found table that I need and everything seems to be fine. The problem occurs when I try to get the head() of dataset or describe it. The code and errors are below.
I guess something wrong with output format or options that I include in config file (I mentioned only this 'options' : ["-fullstimer "] ).
sas = saspy.SASsession(cfgname='ssh')
dataset = sas.sasdata('tablename','libname')
dataset.head()
Internal code execution failed: ERROR 22-322: Syntax error, expecting one of the following: ;, ANTIALIAS, ANTIALIASMAX, BORDER, DISCRETEMAX, GROUPMAX,
just happened to notice this. I have to remember to search here to find things. Any chance you can just open an issue on saspy: https://github.com/sassoftware/saspy/issues then I can more easily help you figure out what's going on.
To start with, can you show the actual code and output? Aslo submit the SASsession object and the SASdata object with that run:
Thanks! Tom
BTW, I have to search our communities site to find things too. Posting an issue to saspy is the best way to get help, FWIW.