Skip to main content

UTF character data, encoding of text

Objective and Background:  You have text data that is UTF encoded and need SAS/R to read and write datasets with that encoding.  If you have ever printed or viewed text information, and seen something like Giuffr?Ÿ’e?ƒe?Ÿƒ?ÿ?›ƒ?ªƒ?›?Ÿ’e›ƒ?ª­?Ÿƒeee, then you are running into this encoding issue.  Computers store text using numbers, with each number assigned to a particular character.  See https://en.wikipedia.org/wiki/ASCII to find that the character & is stored as 38 when using the ASCII encoding.  Unicode is popular internationally because it encodes special characters such as accented letters, and UTF-8 is a widely used version (https://en.wikipedia.org/wiki/UTF-8).  In UTF-8 the & character is stored as 26, and you can imagine how the jumbled example above arises from the confusion of what letters are being stored.

Solution 1:  Use options to request that individual datasets be read and written in a particular encoding.  In SAS, specify encoding options on the various file statements, for example:
data imdb; infile 'movies.csv' dsd lrecl=2056 pad encoding="utf-8"  firstobs=2;
 length Type $ 32;
 length Title Genre $ 500;
 input  type tile genre;
run;
In R, follow the advice here http://people.fas.harvard.edu/~izahn/posts/reading-data-with-non-native-encoding-in-r/ 

Solution 2:  If all your files are always encoded UTF-8, then create a SAS session environment:
1)  Create a shortcut that points to the supplied UTF-8 config file.  In Windows, right-click on the shortcut, choose properties, and under Target you will see something like
"C:\Program Files\SASHome\SASFoundation\9.4\sas.exe" -CONFIG "c:\ProgramFiles\SASHome\SASFoundation\9.4\nls\en\sasv9.cfg"
Change the CONFIG to point to \nls\u8\, and this supplied config file includes specific settings like
-DBCS
-LOCALE en_US
-ENCODING UTF-8
as well as other tweaks that set the default encoding, thus no need for encoding= options within your programs.  Another advantage is .sas program files will then be stored in UTF-8, so comments and explicit data are retained correctly.
R is even easier, just edit your Rprofile file to options(encoding="utf-8")

Possibility 3:  You may just want your .sas program file to be UTF-8, but all datasets are whatever default encoding is used for your country.  This is easily done within the File-Open and File-Save windows, using the encoding menu below the filename box.  When doing this, if you ever see garbled text, you know you made an error with the encoding choice.  BE careful!

Comments

Popular posts from this blog

Estimation of the Peak in Quadratic Regression

 Problem:   You are running a standard quadratic (polynomial) regression analysis, and are specifically interested in the X and Y values at the peak.  If you use standard regression software, typically there will be no option that allows the peak to be estimated, with standard errors. Example:   You are studying Growth as a function of Age.  Of particular interest is when maximum Growth occurs, and at what Age. SAS code to generate artificial data, and run the analysis is: data one; do Age=1 to 20; Growth=95 + 2.7*Age - .3*Age*Age + 5*rannor(22); end; proc nlin plots=fit; parms int=2 lin=1 quad=1; model Growth = int + lin*Age + quad*Age*Age; estimate 'Age at peak' -lin/(2*quad); estimate 'Growth at peak' int + lin*(-lin/(2*quad)) + quad*(-lin/(2*quad))*(-lin/(2*quad)); run; The standard quadratic regression model with intercept, linear and quadratic slopes, is coded into Proc NLIN which has the ability to estimate any fun...

Factorial ANOVA with control treatment not integrated into the factorial

Factorial treatment designs are popular, due to advantages of research on multiple treatment factors and how they interact.  But if the design includes a control treatment that is not part of the factorial, problems occur in estimation of least squares means.  A typical example is shown here, with 2 fertilizer and 3 irrigation treatments, giving 6 factorial treatment combinations, plus a control that is defined by a 3rd level of fertilizer, and a 4th level of irrigation: Fert1:Irrig2               Fert2:Irrig1             Fert1:Irrig1 Fert2:Irrig3               Fert1:Irrig3             Fert2:Irrig2           Control Other situations might have the control sharing a level of one of the factors, for example the control might be defined as Fert2:Irrig4.  But this still causes problems with estim...