run_sas(sas_code, results = c("TEXT", "HTML"), sas_session = get_sas_session())
Named list with following elements:
LOG
: string
of SAS execution log.
LST
: string
of SAS execution result, in html or txt format.
(character
)
sas code to be executed.
(character
)
sas code execution results type.
(saspy.sasbase.SASsession
) SAS session.
run_sas
will run sas code through SAS session.
The results is a named list of LST
and LOG
.
The result part will be stored in LST
, and log will be stored in LOG
.
If results
argument is "TEXT", then results are in text format;
if results
argument is "HTML", then results are in html format.