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.

Examples

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