Please include the NObs table. It is possible that you have no valid observations.
The problem could be that you read the data incorrectly. The data you attached seem to be invalid. They look like this:
31-Dec-03 77546 1 0 1 1
31-Dec-03 10104 1 0 1 1
31-Dec-03 77284 1 0 1 1
In your CSV file, there is only one column, which contains values like
"31-Dec-03 77546 1 0 1 1"
You need to make sure that those numbers are properly read into the variables in your program. Otherwise, the y, x1, and x3 variables might contain missing values.
The other thing you can do is run the following and upload the results:
proc print data=test(obs=5);
var id date y x1 x3;
run;
... View more