Re: [Rd] Unicode display problem with data frames under Windows

2015-05-26 Thread Peter Meissner
Am .05.2015, 09:01 Uhr, schrieb Richard Cotton : On 25 May 2015 at 19:43, Duncan Murdoch wrote: http://stackoverflow.com/questions/17715956/why-do-some-unicode-characters-display-in-matrices-but-not-data-frames-in-r Yes, but it is a bug, just a hard one to fix. It needs someone to dedicat

Re: [Rd] Unicode display problem with data frames under Windows

2015-05-26 Thread Richard Cotton
On 25 May 2015 at 19:43, Duncan Murdoch wrote: >> http://stackoverflow.com/questions/17715956/why-do-some-unicode-characters-display-in-matrices-but-not-data-frames-in-r > Yes, but it is a bug, just a hard one to fix. It needs someone to dedicate > a serious amount of time to deal with it. > > S

Re: [Rd] Unicode display problem with data frames under Windows

2015-05-25 Thread Duncan Murdoch
On 25/05/2015 3:12 PM, Peter Meissner wrote: Am .05.2015, 18:43 Uhr, schrieb Duncan Murdoch : > On 25/05/2015 11:37 AM, Ista Zahn wrote: >> AFAIK this is the way it works on Windows. It has been discussed in >> several >> places, e.g. >> http://stackoverflow.com/questions/17715956/why-do-some-u

Re: [Rd] Unicode display problem with data frames under Windows

2015-05-25 Thread Peter Meissner
Am .05.2015, 18:43 Uhr, schrieb Duncan Murdoch : On 25/05/2015 11:37 AM, Ista Zahn wrote: AFAIK this is the way it works on Windows. It has been discussed in several places, e.g. http://stackoverflow.com/questions/17715956/why-do-some-unicode-characters-display-in-matrices-but-not-data-frames

Re: [Rd] Unicode display problem with data frames under Windows

2015-05-25 Thread Duncan Murdoch
On 25/05/2015 12:43 PM, Duncan Murdoch wrote: On 25/05/2015 11:37 AM, Ista Zahn wrote: > AFAIK this is the way it works on Windows. It has been discussed in several > places, e.g. > http://stackoverflow.com/questions/17715956/why-do-some-unicode-characters-display-in-matrices-but-not-data-frames

Re: [Rd] Unicode display problem with data frames under Windows

2015-05-25 Thread Duncan Murdoch
On 25/05/2015 11:37 AM, Ista Zahn wrote: AFAIK this is the way it works on Windows. It has been discussed in several places, e.g. http://stackoverflow.com/questions/17715956/why-do-some-unicode-characters-display-in-matrices-but-not-data-frames-in-r , http://stackoverflow.com/questions/17715956/w

Re: [Rd] Unicode display problem with data frames under Windows

2015-05-25 Thread Ista Zahn
AFAIK this is the way it works on Windows. It has been discussed in several places, e.g. http://stackoverflow.com/questions/17715956/why-do-some-unicode-characters-display-in-matrices-but-not-data-frames-in-r , http://stackoverflow.com/questions/17715956/why-do-some-unicode-characters-display-in-ma

[Rd] Unicode display problem with data frames under Windows

2015-05-25 Thread Richard Cotton
Here's a data frame with some Unicode symbols (set intersection and union). d <- data.frame(x = "A \u222a B \u2229 C") Printing this data frame under R 3.2.0 patched (r68378) and Windows 7, I see d ## x ## 1 A B n C Printing the column itself works fine. d$x ## [1] A ∪ B ∩ C