Hi community,
I want to import a tab delimited file into sas. there are a variable containing percentage values, like 6.9873% or -12.0945%. SAS recognizes this variable as character when I import the file. I need this variable to be numeric, so I did the following:
newvar=input(oldvar,percent2.6);
However when I look at the data, the code doesn't convert the format consistently, for example:
oldvar newvar
12.6545% 12.6545
9.5451% 0.095451
I appreciate any and all suggestions.
@ballardw I think OP had a wider character variable that put the percent sign outside of the informat reach.
Use newvar=input(oldvar, percent20.);
@DavyJones wrote:
Hi community,
I want to import a tab delimited file into sas. there are a variable containing percentage values, like 6.9873% or -12.0945%. SAS recognizes this variable as character when I import the file. I need this variable to be numeric, so I did the following:
newvar=input(oldvar,percent2.6);
However when I look at the data, the code doesn't convert the format consistently, for example:
oldvar newvar
12.6545% 12.6545
9.5451% 0.095451
I appreciate any and all suggestions.
A brief discussion why you get apparently inconsistent results. When an informat is used with decimals as you have then the first digits(preceding the decimal are the overall length of the expected value and with percent you add 2 to account for potenial leading negative sign and the trailing percent sign. Then the digits after the decimal indicate the number digits that should follow the decimal in the input data.
I am not sure that you posted the actual code you were running as I get notably different results.
data example; x='9.5451%'; y='12.6545%'; numx = input(x,percent2.6); put numx= best16. ; numx2 = input (x,percent9.6); put numx2= best16.; numy = input(y,percent2.6); put numy= best16.; numy2 = input (y,percent9.6); put numy2= best16.; run;
@ballardw I think OP had a wider character variable that put the percent sign outside of the informat reach.
Thanks for your comments. Yes, you are right. The source of the problem was not converting the percent numbers from character to numeric, but it was importing the data into SAS. Apparantly, as I didn't determine the length of the variable properly, the percentage sign has been removed for some values while kept for the others.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.