Hi,
I'm simply trying to read an existing dataset into a matrix, but keep recieving the same error, that I can't fix.
The message is: ERROR: A dataset field name is not a valid IML symbol name.
Here's the code:
proc iml;
use points;
read all var _ALL_ into runs;
close points;
print runs;
What's triggering the error?