Skip to contents

Execute SAS code in current session and render html output.

Usage

sas_run_string(input)

Arguments

input

string; SAS code to run.

Value

htmlwidget; HTML5 output.

See also

Other code execution functions: sas_run_file(), sas_run_selected()

Examples

if (FALSE) { # \dontrun{
sas_connect()
sas_run_string("PROC MEANS DATA = sashelp.cars;RUN;")
} # }