search for: url_internal_en

Displaying 3 results from an estimated 3 matches for "url_internal_en".

2018 Jun 04
2
encoding argument of source() in 3.5.0
...al') scan(url_internal, "") # Read 7 items # [1] "source.test2" "<-" "function()" "{" "print(\"Non-ascii:" "????\")" # [7] "}" url_internal_en <- url(urlR, encoding = "UTF-8", method = 'internal') #scan(url_internal_en, "") #*** caught segfault *** # address 0x0, cause 'memory not mapped' url_libcurl <- url(urlR, method = 'libcurl') scan(url_libcurl, "") # Read 7 items # [1] &q...
2018 Jun 05
0
encoding argument of source() in 3.5.0
...l') > scan(url_internal, "") > # Read 7 items > # [1] "source.test2" "<-" "function()" "{" "print(\"Non-ascii:" "????\")" > # [7] "}" > > url_internal_en <- url(urlR, encoding = "UTF-8", method = 'internal') > #scan(url_internal_en, "") > #*** caught segfault *** > # address 0x0, cause 'memory not mapped' > > url_libcurl <- url(urlR, method = 'libcurl') > scan(url_libcurl, "&q...
2018 Jun 04
3
encoding argument of source() in 3.5.0
>>>>> peter dalgaard >>>>> on Sun, 3 Jun 2018 23:51:24 +0200 writes: > Looks like this actually comes from readLines(), nothing > to do with source() as such: In current R-devel (still): >> f <- file("http://home.versanet.de/~s-berman/source2.R", encoding="UTF-8") >> readLines(f) > character(0)