1 The SAS System 14:26 Friday, September 10, 2021 NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M0) Licensed to CAMPUS - KBH. UNI. - LINUX, Site 50803698. NOTE: This session is executing on the Linux 3.10.0-1160.31.1.el7.x86_64 (LIN X64) platform. NOTE: Updated analytical products: SAS/STAT 12.3 (maintenance) SAS/ETS 12.3 (maintenance) SAS/OR 12.3 (maintenance) SAS/IML 12.3 (maintenance) SAS/QC 12.3 (maintenance) WARNING: Your system is scheduled to expire on October 5, 2021, which is 25 days from now. The SAS System will no longer function on or after that date. Please contact your SAS Installation Representative to obtain your updated SAS Installation Data (SID) file, which includes SETINIT information. To locate the name of your SAS Installation Representative go to http://support.sas.com/repfinder and provide your site number 50803698 and company name as CAMPUS - KBH. UNI. - LINUX. On the SAS REP list provided, locate the REP for operating system LIN X64. NOTE: Additional host information: Linux LIN X64 3.10.0-1160.31.1.el7.x86_64 #1 SMP Wed May 26 20:18:08 UTC 2021 x86_64 Red Hat Enterprise Linux Server release 7.9 (Maipo) You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. NOTE: SAS initialization used: real time 0.19 seconds cpu time 0.03 seconds 1 proc import datafile="/home/ifsv/jkh933/public_html/BasicStatistics/datasets/viet.csv" out=v dbms=csv replace; WARNING: The Base SAS Software product with which IMPORT is associated will be expiring soon, and is currently in warning mode to indicate this upcoming expiration. Please run PROC SETINIT to obtain more information on your warning period. 2 run; 3 /********************************************************************** 4 * PRODUCT: SAS 5 * VERSION: 9.4 6 * CREATOR: External File Interface 7 * DATE: 10SEP21 8 * DESC: Generated SAS Datastep Code 2 The SAS System 14:26 Friday, September 10, 2021 9 * TEMPLATE SOURCE: (None Specified.) 10 ***********************************************************************/ 11 data WORK.V ; 12 %let _EFIERR_ = 0; /* set the ERROR detection macro variable */ 13 infile '/home/ifsv/jkh933/public_html/BasicStatistics/datasets/viet.csv' delimiter = ',' MISSOVER DSD lrecl=32767 13 ! firstobs=2 ; 14 informat smoke01 best32. ; 15 informat iq best32. ; 16 informat FEV1 best32. ; 17 format smoke01 best12. ; 18 format iq best12. ; 19 format FEV1 best12. ; 20 input 21 smoke01 22 iq 23 FEV1 24 ; 25 if _ERROR_ then call symputx('_EFIERR_',1); /* set ERROR detection macro variable */ 26 run; NOTE: The infile '/home/ifsv/jkh933/public_html/BasicStatistics/datasets/viet.csv' is: Filename=/home/ifsv/jkh933/public_html/BasicStatistics/datasets/viet.csv, Owner Name=jkh933, Group Name=ifsv_gg_users_biostat, Access Permission=-rwxr-xr-x, Last Modified=Fri Sep 10 14:22:13 2021, File Size (bytes)=1347 NOTE: 87 records were read from the infile '/home/ifsv/jkh933/public_html/BasicStatistics/datasets/viet.csv'. The minimum record length was 12. The maximum record length was 15. NOTE: The data set WORK.V has 87 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.00 seconds 87 rows created in WORK.V from /home/ifsv/jkh933/public_html/BasicStatistics/datasets/viet.csv. NOTE: WORK.V data set was successfully created. NOTE: The data set WORK.V has 87 observations and 3 variables. NOTE: PROCEDURE IMPORT used (Total process time): real time 0.13 seconds cpu time 0.06 seconds 27 28 libname libdat '/home/ifsv/jkh933/public_html/BasicStatistics/datasets/'; NOTE: Libref LIBDAT was successfully assigned as follows: Engine: V9 Physical Name: /home/ifsv/jkh933/public_html/BasicStatistics/datasets 29 data libdat.viet; 30 set v; 31 run; NOTE: There were 87 observations read from the data set WORK.V. 3 The SAS System 14:26 Friday, September 10, 2021 NOTE: The data set LIBDAT.VIET has 87 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.01 seconds 32 33 proc export data=v outfile="/home/ifsv/jkh933/public_html/BasicStatistics/datasets/viet.sav" dbms=sav replace; 34 run; NOTE: The export data set has 87 observations and 3 variables. NOTE: "/home/ifsv/jkh933/public_html/BasicStatistics/datasets/viet.sav" file was successfully created. NOTE: PROCEDURE EXPORT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 35 36 37 endsas; NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.38 seconds cpu time 0.10 seconds