search for: isingutil

Displaying 5 results from an estimated 5 matches for "isingutil".

Did you mean: isingutils
2017 Oct 30
3
run r script in r-fiddle
...R source file to a public > URL, for example to github and read via RCurl, as source > do not support https as far as I know. well... but your knowledge is severely (:-) outdated. Why did you not try first? source("https://raw.githubusercontent.com/msuzen/isingLenzMC/master/R/isingUtils.R") works for me even in R 3.3.0 which is really outdated itself!
2017 Oct 30
0
run r script in r-fiddle
We were talking about r-fiddle. It gives error there [*], that's why I suggested using RCurl. > source("https://raw.githubusercontent.com/msuzen/isingLenzMC/master/R/isingUtils.R") ... unsupported URL scheme Error : cannot open the connection > On 30 October 2017 at 15:51, Martin Maechler <maechler at stat.math.ethz.ch> wrote: >>>>>> Suzen, Mehmet <msuzen at gmail.com> >>>>>> on Mon, 30 Oct 2017 11:16:30 +0100...
2017 Oct 30
3
run r script in r-fiddle
Hi All, I want to know how to run an R file on my computer in R-Fiddle? I tried source("filename.r"), but not working. thanks, Frank [[alternative HTML version deleted]]
2017 Oct 30
0
run r script in r-fiddle
Hi Frank, You could upload your R source file to a public URL, for example to github and read via RCurl, as source do not support https as far as I know. Here is a working example. library('RCurl') tmatrix <- getURL("https://raw.githubusercontent.com/msuzen/isingLenzMC/master/R/isingUtils.R") eval(parse(text=tmatrix)) Not that you need to use raw URL for github file. Best, -m On 30 October 2017 at 01:56, Frank Mei <frank.ye.mei at gmail.com> wrote: > Hi All, > > I want to know how to run an R file on my computer in R-Fiddle? > > I tried source(&quot...
2017 Oct 31
2
run r script in r-fiddle
...;msuzen at gmail.com> >>>>> on Mon, 30 Oct 2017 16:05:18 +0100 writes: > We were talking about r-fiddle. It gives error there [*], > that's why I suggested using RCurl. >> source("https://raw.githubusercontent.com/msuzen/isingLenzMC/master/R/isingUtils.R") > ... unsupported URL scheme Error : cannot open the > connection >> and later you note that it seems to run R-3.1.2 --- which is ridiculously outdated. I think R-help should not be (mis)used at all to talk about R-Fiddle, then. Notably as I think it's been...