1320 PROC EXPAND DATA=COVIDmontests1 OUT = COVIDmontests2
1321 FROM=DAY TO =DAY METHOD=NONE;
1322 BY overallSAG_ID;
1323 ID COLLECTION_DATE;
1324 CONVERT poscount = MOVESUM7 / TRANSFORMIN =(SETMISS 0) TRANSFORMOUT = (MOVSUM 7);
1325 CONVERT poscount = MOVEAVE7 / TRANSFORMIN =(SETMISS 0) TRANSFORMOUT =(MOVAVE 7);
1326 RUN;
WARNING: 1 observations have been omitted before observation number 6 in data set
WORK.COVIDMONTESTS1 according to the FROM=DAY specification and the ID variable values.
The current ID is COLLECTION_DATE=10/13/2020, the previous is COLLECTION_DATE=10/11/2020.
WARNING: 1 observations have been omitted before observation number 16 in data set
WORK.COVIDMONTESTS1 according to the FROM=DAY specification and the ID variable values.
The current ID is COLLECTION_DATE=10/24/2020, the previous is COLLECTION_DATE=10/22/2020.
NOTE: The above message was for the following BY group:
overallSAG_ID=1011
WARNING: 1 observations have been omitted before observation number 73 in data set
WORK.COVIDMONTESTS1 according to the FROM=DAY specification and the ID variable values.
The current ID is COLLECTION_DATE=10/25/2020, the previous is COLLECTION_DATE=10/23/2020.
NOTE: The above message was for the following BY group:
overallSAG_ID=1022
WARNING: 1 observations have been omitted before observation number 79 in data set
WORK.COVIDMONTESTS1 according to the FROM=DAY specification and the ID variable values.
The current ID is COLLECTION_DATE=10/12/2020, the previous is COLLECTION_DATE=10/10/2020.
NOTE: The above message was for the following BY group:
overallSAG_ID=1031
WARNING: 1 observations have been omitted before observation number 103 in data set
WORK.COVIDMONTESTS1 according to the FROM=DAY specification and the ID variable values.
The current ID is COLLECTION_DATE=10/18/2020, the previous is COLLECTION_DATE=10/16/2020.
NOTE: The above message was for the following BY group:
overallSAG_ID=1032
WARNING: 1 observations have been omitted before observation number 141 in data set
WORK.COVIDMONTESTS1 according to the FROM=DAY specification and the ID variable values.
The current ID is COLLECTION_DATE=10/19/2020, the previous is COLLECTION_DATE=10/17/2020.
NOTE: The above message was for the following BY group:
overallSAG_ID=1042
WARNING: 3 observations have been omitted before observation number 150 in data set
WORK.COVIDMONTESTS1 according to the FROM=DAY specification and the ID variable values.
The current ID is COLLECTION_DATE=10/13/2020, the previous is COLLECTION_DATE=10/09/2020.
WARNING: 1 observations have been omitted before observation number 155 in data set
WORK.COVIDMONTESTS1 according to the FROM=DAY specification and the ID variable values.
The current ID is COLLECTION_DATE=10/19/2020, the previous is COLLECTION_DATE=10/17/2020.
NOTE: The above message was for the following BY group:
overallSAG_ID=1043
WARNING: 1 observations have been omitted before observation number 183 in data set
WORK.COVIDMONTESTS1 according to the FROM=DAY specification and the ID variable values.
The current ID is COLLECTION_DATE=10/13/2020, the previous is COLLECTION_DATE=10/11/2020.
NOTE: The above message was for the following BY group:
overallSAG_ID=1052
WARNING: 2 observations have been omitted before observation number 217 in data set
WORK.COVIDMONTESTS1 according to the FROM=DAY specification and the ID variable values.
The current ID is COLLECTION_DATE=10/12/2020, the previous is COLLECTION_DATE=10/09/2020.
NOTE: Further warnings for gaps in data will not be printed.
NOTE: The above message was for the following BY group:
overallSAG_ID=1054
NOTE: The data set WORK.COVIDMONTESTS2 has 2062 observations and 6 variables.
NOTE: PROCEDURE EXPAND used (Total process time):
real time 0.06 seconds
cpu time 0.01 seconds Sure here is the log. I'm still getting errors related to the blanks but wasn't sure if that was because the errors were occurring at the By and ID statements before the setmiss option is run.
... View more