Hi There, I am learning SAS for R users. I am using Studio via OnDemand Academic webpage. i tried to run the code below to create a new dataset, but i did not see anything created, nor did i see any error in error section. Can someone point out what's wrong here? Code below : /*SP4R02e01 libname sp4r '/home/asiangirlhost/folders/myfolders'; DATA SP4R.Shelter2; length Name $ 25 Color $ 10 Cats $ 3; INPUT Name $ Age Weight Color $ Cats $ ; DATALINES; Pluto 3 25 Black No Lizzie 10 43 Tan Yes Pesci 10 38 Brindle No ; run; this is message from log : NOTE: ODS PDF(WEB) printed no output. (This sometimes results from failing to place a RUN statement before the ODS PDF(WEB) CLOSE statement.) 92 FILENAME _GSFNAME; NOTE: Fileref _GSFNAME has been deassigned. 93 DATA _NULL_; 94 RUN; NOTE: DATA statement used (Total process time): real time 0.00 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 461.00k OS Memory 22184.00k Timestamp 03/26/2020 10:19:50 PM Step Count 39 Switch Count 0 Page Faults 0 Page Reclaims 24 Page Swaps 0 Voluntary Context Switches 0 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 0 95 OPTIONS NOTES STIMER SOURCE SYNTAXCHECK; 96
... View more