Hello,
I have a variable that is formatted $3. Within this variable there is a value ' .' which was causing me some confusion. Initially I thought '.' was the null value for numeric, not character. However it seems this value has 2 spaces in front of it, hence ' .' , which lead me to believe it was a character
Also, when I enter the following tests:
if variable = ' .';
if variable =.;
Both return true.
Please help me to understand what this value is that I have here. What is a practical approach from a data hygiene perspective for cleaning this? How is a character variable identified as being equal to both a character value and a numeric value at the same time?
Best regards,
Mike
They both test true because variable is converted to numeric when tested against missing numeric dot. See note below.
As far as "what it is" it is exactly what it appears to be, 2 space and a period. You can test and set to blank if LEFT(VARIABLE) eq '.' then variable=' ';
They both test true because variable is converted to numeric when tested against missing numeric dot. See note below.
As far as "what it is" it is exactly what it appears to be, 2 space and a period. You can test and set to blank if LEFT(VARIABLE) eq '.' then variable=' ';
Thank you, this clarification is helpful. I didn't realize SAS would automatically convert to numeric like that. I overlooked it in the log. This is valuable information to have.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.