search for: url_libcurl_en

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

2018 Jun 04
2
encoding argument of source() in 3.5.0
...ethod = 'libcurl') scan(url_libcurl, "") # Read 7 items # [1] "source.test2" "<-" "function()" "{" "print(\"Non-ascii:" "????\")" # [7] "}" url_libcurl_en <- url(urlR, encoding = "UTF-8", method = 'libcurl') scan(url_libcurl_en, "") # Read 0 items # character(0) Michael ________________________________________ From: R-devel [r-devel-bounces at r-project.org] on behalf of Stephen Berman [stephen.berman at gmx.net] Sen...
2018 Jun 05
0
encoding argument of source() in 3.5.0
...libcurl') > scan(url_libcurl, "") > # Read 7 items > # [1] "source.test2" "<-" "function()" "{" "print(\"Non-ascii:" "????\")" > # [7] "}" > url_libcurl_en <- url(urlR, encoding = "UTF-8", method = 'libcurl') > scan(url_libcurl_en, "") > # Read 0 items > # character(0) > > > Michael > > ________________________________________ > From: R-devel [r-devel-bounces at r-project.org] on behalf of Step...
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)