I have a csv with polish characters in it but when I am importing in SAS , certain polish characters are being replaced by "?" or any other random variable , How do I handle this. I have a list of all the possible polish characters and I dont mind it being replaced by its english counterpart
相关问题
- Delete the group that none of its observation cont
- Reading data from a SAS data source in .Net
- Simple way to do a weighted hot deck imputation in
- Problems with SAS DDE with Office 2010
- Reading observations from SAS dataset into arrays
相关文章
- Finding all possible paths in a dataset using sas
- How do I save a TextEdit (mac) file with a custom
- Logical function in SAS to determine if a particul
- Efficiently concatenate many sas datasets
- Python sas7bdat module usage
- PROC SQL in SAS - All Pairs of Items
- How to summarize all possible combinations of vari
- Tell SAS not to add newly generated tables on the
You need to set the appropriate file encoding on your
infile
statement, e.g.encoding="UTF-8"
.SAS Documentation > http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000146932.htm http://support.sas.com/documentation/cdl/en/nlsref/61893/HTML/default/viewer.htm#a002610945.htm