Displaying 3 results from an estimated 3 matches for "r_le".
Did you mean:
r_e
2017 Apr 29
2
Any progress on write.csv fileEncoding for UTF-16 and UTF-32 ?
...--------------\n\n")
LE <- data.frame (
want = c ("0d,00", "0a,00"),
got = c ("0d ", "0a,00")
)
BE <- data.frame (
want = c ("00,0d", "00,0a"),
got = c ("00,0d", " 0a")
)
write.csv (LE, "R_LE.csv", fileEncoding = "UTF-16LE", row.names = FALSE)
write.csv (BE, "R_BE.csv", fileEncoding = "UTF-16BE", row.names = FALSE)
print (readBin ("R_LE.csv", "raw", 1000))
print (LE)
cat ("\n")
print (readBin ("R_BE.csv", "...
2017 Apr 30
0
Any progress on write.csv fileEncoding for UTF-16 and UTF-32 ?
...> want = c ("0d,00", "0a,00"),
> got = c ("0d ", "0a,00")
> )
>
> BE <- data.frame (
> want = c ("00,0d", "00,0a"),
> got = c ("00,0d", " 0a")
> )
>
> write.csv (LE, "R_LE.csv", fileEncoding = "UTF-16LE", row.names = FALSE)
> write.csv (BE, "R_BE.csv", fileEncoding = "UTF-16BE", row.names = FALSE)
>
> print (readBin ("R_LE.csv", "raw", 1000))
> print (LE)
> cat ("\n")
>
> print (rea...
2017 May 01
3
Any progress on write.csv fileEncoding for UTF-16 and UTF-32 ?
..."0a,00"),
>> got = c ("0d ", "0a,00")
>> )
>>
>> BE <- data.frame (
>> want = c ("00,0d", "00,0a"),
>> got = c ("00,0d", " 0a")
>> )
>>
>> write.csv (LE, "R_LE.csv", fileEncoding = "UTF-16LE", row.names = FALSE)
>> write.csv (BE, "R_BE.csv", fileEncoding = "UTF-16BE", row.names = FALSE)
>>
>> print (readBin ("R_LE.csv", "raw", 1000))
>> print (LE)
>> cat ("\n")...