Example

library(sasquatch)
sas_connect()
✔ SAS connection established.
PROC PRINT DATA = sashelp.cars (OBS = 10);
    VAR make model type origin msrp invoice;
RUN;
5                                                          The SAS System                          Tuesday, May  6, 2025 04:22:00 AM

24         ods listing close;ods html5 (id=saspy_internal) file=_tomods1 options(bitmap_mode='inline') device=svg style=HTMLBlue;
24       ! ods graphics on / outputfmt=png;
25         
26         PROC PRINT DATA = sashelp.cars (OBS = 10);
27             VAR make model type origin msrp invoice;
28         RUN;
29         
30         
31         ods html5 (id=saspy_internal) close;ods listing;
32         
6                                                          The SAS System                          Tuesday, May  6, 2025 04:22:00 AM

33