When I paste or hand-type the following code in Jupyter notebook, the code itself disappears. This occurs with SAS university edition, but not with Jupyter notebook outside of the VirtualBox, and not with Python code or markdown within the VM. %web_drop_table(WORK.IMPORT);
FILENAME REFFILE '/folders/myshortcuts/ass2--multivariate/data/pollution.csv';
PROC IMPORT DATAFILE=REFFILE
DBMS=CSV
OUT=WORK.IMPORT;
GETNAMES=YES;
RUN;
PROC CONTENTS DATA=WORK.IMPORT; RUN;
%web_open_table(WORK.IMPORT); This code is automatically produced automatically by SAS studio for import, so it shouldn't be the code itself. Tested with: SAS university edition version: university.cny.sas.com@sas:university-6p.2/6p.2.5be350ea99d3-1-2 SAS studio works Jupyter works with SAS All help is appreciated.
... View more