similar to: Digests of R-help -- minor mess (unicode character set problems)

Displaying 20 results from an estimated 20000 matches similar to: "Digests of R-help -- minor mess (unicode character set problems)"

2009 Feb 02
0
how to change character set to unicode in 10g over sql server 2003
Just now we have started development and our client want database character set is in unicode.what we have is given below please suggest ASAP... > select * from nls_database_parameters where parameter like '%CHARACTERSET'; PARAMETER VALUE NLS_CHARACTERSET WE8MSWIN1252 NLS_NCHAR_CHARACTERSET AL16UTF16 -------------- next part -------------- An HTML attachment was scrubbed... URL:
2008 Jan 05
0
[Repost, with Formatting] Trying to understand unicode character entry, goes into postgres DB backing rails, saved to yaml as \xc4\x81
Apologies on unformatted send previously, i hit Enter and the web UI posted, to my chagrin. 1. Examine the Unicode standard''s code page collection for "Latin small letter a with macron". 2. Nets U0100.pdf 3. "Latin small letter a with macron" appears on chart as 0101. This is a hexidemial number which points to U+0101 as its code point. Converting 0101 to decimal
2008 Sep 23
0
Unicode character conversion
Hi, I am working on a web stie which requires unicode support. I mostly works; I have spent few days on the following issues with no solution so any help is very much appreciated.: 1. I would like to decompose a unicode string into individual characters and then compose it again. I can do first part with mystring.chars[i]. How can I put the string back from such character codes.
2009 Mar 19
0
Using unicode character for 'middle dot' in options(OutDec)
When drawing a graph, I'd like the unicode character 'middle dot' (or something else similar to \cdot in latex) to be used when writing numbers. Something like the following works for me: x <- 1:10 y <- runif(length(x)) par(las=1, bty='n') plot(x,y, ylim=c(0,1), yaxt='n') p <- pretty(y) axis(2, at=p, labels=format(p, decimal.mark="\u00B7")) at
2008 Jan 05
0
Trying to understand unicode character entry, goes into postgres DB backing rails, saved to yaml as \
Examine the Unicode standard''s code page collection for "Latin small letter a with macron". Nets U0100.pdf "Latin small letter a with macron" appears on chart as 0101. This is a hexidemial number which points to U+0101 as its code point. Converting 0101 to decimal gets you 257, this is the same as the HTML entity code. HTML code point is 257. That is &257; gives
2011 Jul 17
3
gsub() with unicode and escape character
Dear helpers, I'm trying to replace a character with a unicode code inside a data frame using gsub(), but unsuccessfully. > data.frame(animals=c("dog","wolf","cat"))->my.data > gsub("o","\u0254",my.data$animals)->my.data$animals > my.data$animals [1] "d??g" "w??lf" "cat" It's not that a data
2010 Oct 11
1
grep triggering error on unicode character
Colleagues, [R 2.11; OS X] I am processing a file on the fly that contains the following text: XXX?? [email clients may display this differently -- the string is three X's followed by two instances of the letter a with an acute accent] I read the file with: X <- readLines(FILENAME) In this instance, the text of interest is on line 213. When I examine line 213, it reads: XXX\xe1\xe1
2023 Jun 08
2
need help with plotmath and/or plotting unicode characters
R 4.2.3 OS X Colleagues This should be easy -- but not for me. I want to plot text similar to this: N ? XX: YY where XX can be either 1 or 50 and YY is an integer I envision that there would be two solutions: UNICODE: If I can generate "?" via unicode, the problem is solved: mtext(side=3, paste0("N ", UNICODE, " ", XX, ": ", YY)) PLOTMATH:
2014 Feb 05
0
SFTP: Unable to input unicode characters
Hi openssh mailing list, I'm currently running Arch x86_64 with openssh 6.5p1, but the following is also reproduceable on Debian stable (openssh 6.0p1 I believe). Entering unicode characters directly into sftp results in no input. Not a placeholder character or a space, just no input. Here are some relevant details: The machines in my test both have locale correctly set (in this specific
2015 Aug 21
3
[Bug 2450] New: paint visual host key with unicode box-drawing characters
https://bugzilla.mindrot.org/show_bug.cgi?id=2450 Bug ID: 2450 Summary: paint visual host key with unicode box-drawing characters Product: Portable OpenSSH Version: 7.0p1 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 Component: ssh
2008 May 30
1
Unicode characters (R 2.7.0 on Windows XP SP3 and Hardy Heron)
Hi all Four questions regarding Unicode. Three Windows questions. I am using - a PC with Windows XP (Build 20600.xpsp080413-2111 (Service Pack 3); - the following R version: > R.version platform i386-pc-mingw32 arch i386 os mingw32 system i386, mingw32 status major 2 minor 7.0 year 2008 month 04 day 22 svn
2009 Sep 09
4
tables with Unicode box drawing characters?
Hello, I read David Wheeler's table proposal[1] for Markdown and very much agree with his conclusion and PostgreSQL-inspired proposed format. I also read the mailing list archives for 2009 but did not find any clear concesus on whether DW's format was officially accepted (I hope it is soon!). However, I want to ask: has anyone considered taking these simple ASCII table drawings to the
2008 Jul 24
1
How to make UNICODE characters to display correctly?
I run WBridge5 (French version) under wine-1.1.1 on FreeBSD-7.0. It runs ok except for every UNICODE character is replaced by the little box. Also in some message boxes symbols that obviously should be some French characters that aren't part of normal Latin alphabet are replaced with Chinese characters. How to make UNICODE to display correctly? Thank you, Yuri
2011 Jul 14
1
Export Unicode characters from R
Dear helpers, I am not able to export Unicode characters from R. Below is an example where the Unicode character is correctly rendered as long as I am stay within R. When I export it, the character appears only with its basic code, and the same happens when I import it back into R . I'm using R 2.13.1 in Windows XP. > funny.g <- "\u1E21" > funny.g [1] "?" >
2014 Jul 28
1
Parsing and deparsing of escaped unicode characters
In both R and JSON (and many other languages), unicode characters can be escaped using a backslash followed by a lowercase "u" and a 4 digit hex code. However when deparsing a character vector in R on Windows, the non-latin characters get escaped as "<U+" followed by their 4 digit hex code and ">": > x <- "I like \u5BFF\u53F8" > cat(x) I like
2020 Jun 08
1
Potential issue with perl-based pattern matching with Unicode characters on Windows R 4.0 and above
Hi everyone, I've noticed new behavior in `regexpr(..., perl = TRUE)` on Windows with R4.0 and above with Unicode characters. Here's a minimal example where I'd expect to see a start value of `5` (as R 3.6.2 and below gives), but R 4.0.0 (and R 4.0.1) now returns: ``` > regexpr("b", "foo\U0001F937bar", perl = TRUE) #> [1] 6 #>
2020 Jun 04
13
[Bug 14401] New: unicode character conversion problem from MacOS to Linux despite iconv
https://bugzilla.samba.org/show_bug.cgi?id=14401 Bug ID: 14401 Summary: unicode character conversion problem from MacOS to Linux despite iconv Product: rsync Version: 3.1.3 Hardware: All OS: All Status: NEW Severity: normal Priority: P5 Component: core
2010 Feb 21
1
Bug#570792: logcheck: The report doesn't support anymore the unicode characters.
Package: logcheck Version: 1.3.6 Severity: normal Since logcheck 1.3.6, the report send by mail doesn't support unicode characters : Before : To: logcheck at executor.fruit Subject: Executor.FRUIT 2010-02-01 20:02 ?v?nements li?s ? la s?curit? Auto-Submitted: auto-generated From: logcheck system account <logcheck at executor.fruit> ?v?nements li?s ? la s?curit?
2008 Jun 21
1
DO NOT REPLY [Bug 5554] New: File has vanished for files with foreign/unicode characters
https://bugzilla.samba.org/show_bug.cgi?id=5554 Summary: File has vanished for files with foreign/unicode characters Product: rsync Version: 2.6.9 Platform: x86 OS/Version: Windows XP Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org
2011 May 15
4
"Low Pain" Unicode Characters in pdf graph?
Dear R-experts---is there a relatively low-pain way to get unicode characters into a plot to a pdf device? pdf(file="cardsymbols.pdf") plot( 0, xlim=c(0,5), ylim=c(0,5), type="n") text(1,1, "&spades;") text(2,2, "&hearts;") text(3,3, "&diams;") text(4,4, "&clubs;") dev.off() (these are the characters that I need the most