- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@ballardw I think OP had a wider character variable that put the percent sign outside of the informat reach.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Use newvar=input(oldvar, percent20.);
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@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;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@ballardw I think OP had a wider character variable that put the percent sign outside of the informat reach.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.