Re: [R] run r script in r-fiddle

2017-11-01 Thread Martin Maechler
> Suzen, Mehmet > on Tue, 31 Oct 2017 19:27:30 +0100 writes: > Dear List, According to datacamp support team, > r-fiddle.org is not supported. We asked them to put it > down as Professor Maechler suggested it is a waste of time > for the R-help to respond to questions

Re: [R] run r script in r-fiddle

2017-10-31 Thread Suzen, Mehmet
Dear List, According to datacamp support team, r-fiddle.org is not supported. We asked them to put it down as Professor Maechler suggested it is a waste of time for the R-help to respond to questions on something not maintained and severely outdated. If you would like to use R from your browser, y

Re: [R] run r script in r-fiddle

2017-10-31 Thread Gabor Grothendieck
Try that source statement here -- it is running R 3.4.1: https://www.tutorialspoint.com/execute_r_online.php On Mon, Oct 30, 2017 at 11:14 AM, Suzen, Mehmet wrote: > Note that, looks like r-fiddle runs R 3.1.2. > > __ > R-help@r-project.org mailing li

Re: [R] run r script in r-fiddle

2017-10-31 Thread Suzen, Mehmet
On 31 October 2017 at 12:42, Martin Maechler wrote: > Notably as I think it's been provided by a company that no > longer exists under that name, and even if that'd be wrong, R-Fiddle > does not seem free software (apart from the R parts, I hope !). For the record, r-fiddle is maintained by data

Re: [R] run r script in r-fiddle

2017-10-31 Thread Martin Maechler
> Suzen, Mehmet > 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

Re: [R] run r script in r-fiddle

2017-10-30 Thread Suzen, Mehmet
Note that, looks like r-fiddle runs R 3.1.2. __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide comme

Re: [R] run r script in r-fiddle

2017-10-30 Thread Suzen, Mehmet
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 wrote

Re: [R] run r script in r-fiddle

2017-10-30 Thread Martin Maechler
> Suzen, Mehmet > on Mon, 30 Oct 2017 11:16:30 +0100 writes: > 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. well... but your knowledge is severely (:-) outdat

Re: [R] run r script in r-fiddle

2017-10-30 Thread Suzen, Mehmet
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";) e

Re: [R] run r script in r-fiddle

2017-10-29 Thread Jeff Newmiller
You can't. Use R on your computer instead. -- Sent from my phone. Please excuse my brevity. On October 29, 2017 5:56:55 PM PDT, Frank Mei wrote: >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 > >

[R] run r script in r-fiddle

2017-10-29 Thread Frank Mei
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]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see htt

[R] Run R Code Continuously in the Background of HTML

2014-06-05 Thread Cheryl Johnson
I would like to run R code continuously in the background of a HTML page. This code will run in a loop that has a random number generator. I would like the different values from the random number generator to be displayed on the HTML page as the loop iterates. Thanks in advance for any help.

Re: [R] Run R script automatically each morning and email results?

2011-06-01 Thread Andy Zhu
Use cron job scheduler to start r session on your script. Andy From: Sarah Henderson To: R List Sent: Wednesday, June 1, 2011 7:50 PM Subject: [R] Run R script automatically each morning and email results? Greetings to all -- I am hoping that someone can

[R] Run R script automatically each morning and email results?

2011-06-01 Thread Sarah Henderson
Greetings to all -- I am hoping that someone can offer some insight into an area where I have very little experience. I have written some R code that generates a 90-day plot of temperature vs. mortality. On whatever day the code is run it will grab up-to-date vital statistics data from our serve

Re: [R] run r scripts (tinn) via command

2011-04-28 Thread camilo_abboud
¿How to run several commands with one script? Functions needed: SOURCE (script) + logical functions(if, while, for) + scan(parameter A) Im not going to put an example, but the thing is: 1) run the main script, which contains another SOURCE-funtion wich points to an other script. source(sour

Re: [R] run R

2010-06-30 Thread Erik Iverson
Please follow the posting guide and tell us minimally what your operating system is. You might find: http://cran.r-project.org/doc/manuals/R-intro.html#Scripting-with-R or http://code.google.com/p/batchfiles/#PROGRAM_LIST useful. jorge.conr...@cptec.inpe.br wrote: Hi, I'm s

Re: [R] run R

2010-06-30 Thread David Winsemius
On Jun 30, 2010, at 9:08 AM, jorge.conr...@cptec.inpe.br wrote: Hi, I'm starting use the R Package and I have some .R scripts. How can I run these .R scripts. ?source ... and re-read "Introduction to R". Conrado __ R-hel

Re: [R] run R

2010-06-30 Thread Joris Meys
Welcome to a new world. You're using the _programming language_ R with thousands of packages, and first of all you should be reading the introduction material thoroughly : http://cran.r-project.org/doc/manuals/R-intro.pdf http://cran.r-project.org/doc/contrib/Owen-TheRGuide.pdf Regarding your que

[R] run R

2010-06-30 Thread jorge . conrado
Hi, I'm starting use the R Package and I have some .R scripts. How can I run these .R scripts. Conrado __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http:

Re: [R] run R script from Excel VBA

2010-04-18 Thread Erich Neuwirth
The site has a wiki and the wiki has a page How to install which should answer your question. Furthermore, please subscribe to the rcom mailing list on our side and post your questions regarding RExcel there. On 4/16/2010 8:05 PM, KZ wrote: > hmm, i could be a bit more computer savy. what do i s

Re: [R] run R script from Excel VBA

2010-04-16 Thread Guy Green
See RExcel, http://rcom.univie.ac.at/ http://rcom.univie.ac.at/ and especially the video demo http://rcom.univie.ac.at/RExcelDemo/ http://rcom.univie.ac.at/RExcelDemo/ Guy -- View this message in context: http://n4.nabble.com/run-R-script-from-Excel-VBA-tp2009478p2011942.html Sent from the

Re: [R] run R script from Excel VBA

2010-04-16 Thread Erich Neuwirth
Have a look at rcom.univie.ac.at. We have an Excel addin which will allow you to do that. Disclaimer: I am the author of the addin. On 4/16/2010 4:57 PM, KZ wrote: > I wrote a R script say called computeCovarMatrix.R and i want to call and > run this piece from Excel visual basic. does anyone kn

[R] run R script from Excel VBA

2010-04-16 Thread KZ
I wrote a R script say called computeCovarMatrix.R and i want to call and run this piece from Excel visual basic. does anyone know how to do that? thanks, KZ [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat

Re: [R] Run R in server web

2010-01-11 Thread John Oleynick
I haven't used any of these yet, and don't know how they would fit in with Tomcat, but a few R web options are rapache (http://biostat.mc.vanderbilt.edu/rapache/), R.rsp (http://cran.case.edu/web/packages/R.rsp/index.html) and CGIwithR (http://www.omegahat.org/CGIwithR/). -- John On 1/3/10, Tal G

Re: [R] Run R in server web

2010-01-03 Thread Tal Galili
Hi Jindo, I don't know how to do what you ask, but I recommend you to have a look at this: http://www.r-statistics.com/2009/12/a-web-application-of-rs-ggplot2/ And try to follow the links to the websites behind it, maybe somewhere in it there will be more information. Best, Tal

[R] Run R in server web

2010-01-02 Thread Jiiindo
Colleagues, I have a web server (appache Tomcat), and my web application (java-jsp..) run on it, how i can run R on server example, i want running R on server, and save output on server Thanks -- View this message in context: http://n4.nabble.com/Run-R-in-server-web-tp997126p997126.html Sent

Re: [R] Run R code by Vim-R-plugin (How do I to run two or more programs at the same time)?

2009-11-03 Thread Jakson A. Aquino
On Tue, Nov 03, 2009 at 04:59:30PM +0800, Pan, Jia-chiun/潘家群 wrote: > I use R on Ubuntu 9.04 by Vim editor with vim-R-plugin. I want to use > Vim to run two R programs A.R and B.R. At beginning, I sent A.R to R > prompt by pressing "\rf" and "F5" on my keyboard, and it works well. > Meanwhile, I wa

[R] Run R code by Vim-R-plugin (How do I to run two or more programs at the same time)?

2009-11-03 Thread Pan,
Dear list, I use R on Ubuntu 9.04 by Vim editor with vim-R-plugin. I want to use Vim to run two R programs A.R and B.R. At beginning, I sent A.R to R prompt by pressing "\rf" and "F5" on my keyboard, and it works well. Meanwhile, I want to sent another file B.R to another R window. When I press "

Re: [R] run R script automatically by double-clicking WinXP desktopicon

2009-09-23 Thread Franzini, Gabriele [Nervianoms]
-project.org Subject: Re: [R] run R script automatically by double-clicking WinXP desktopicon that helps, thanks. I can put a final line in my batch file that opens a viewer for the png graph. I was hoping to find a way to do make it run in the Rgui (picky, I know.) My graph is clearer in the default

Re: [R] run R script automatically by double-clicking WinXP desktop icon

2009-09-22 Thread cryan
r png files. I should probably play around with the resolution in R's png device. Or maybe it's a function of the viewer I'm stuck using. Thanks. --Chris Original message >Date: Tue, 22 Sep 2009 11:41:50 -0400 >From: Cedrick Johnson >Subject: Re: [R] run R s

Re: [R] run R script automatically by double-clicking WinXP desktop icon

2009-09-22 Thread Cedrick Johnson
Here's something I use (in a batch file): Rterm --no-restore --file=EveningStartup.r Change EveningStartup.r to your particular file. When you create the shortcut, make sure to set the working directory to where your R script is located. Then in your file, you could have the graphs write out

[R] run R script automatically by double-clicking WinXP desktop icon

2009-09-22 Thread cryan
I've written a simple script that does some surveillance analysis on daily counts of walk-in clinic visits, for our county health department. (Actually, Michael Hohle's surveillance package does all the work; I just customized it a little to work with the way our data are recorded.) The output c

Re: [R] run R codes every startup.

2009-08-16 Thread Jason Morgan
On 2009.08.16 15:59:15, milton ruser wrote: > Dear all, > > how can I setup R(gui) to run some commands evertime R startup? > > cheers > > milton You'll want to read: help(Startup) HTH, ~Jason -- Jason W. Morgan Graduate Student Department of Political Science *The Ohio State University* 154

[R] run R codes every startup.

2009-08-16 Thread milton ruser
Dear all, how can I setup R(gui) to run some commands evertime R startup? cheers milton [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide ht

Re: [R] run r scripts (tinn) via command

2009-03-19 Thread thoeb
Thank you! Works perfectly well! jholtman wrote: > > You just create the "superior" script as a set of 'source' statements > reading in the files that you want to execute in order. > > On Thu, Mar 19, 2009 at 4:13 AM, thoeb wrote: >> >> The scripts are written with the TINN editor (***.r) and

Re: [R] run r scripts (tinn) via command

2009-03-19 Thread jim holtman
You just create the "superior" script as a set of 'source' statements reading in the files that you want to execute in order. On Thu, Mar 19, 2009 at 4:13 AM, thoeb wrote: > > The scripts are written with the TINN editor (***.r) and are organised within > a project. I want to create another scrip

Re: [R] run r scripts (tinn) via command

2009-03-19 Thread thoeb
The scripts are written with the TINN editor (***.r) and are organised within a project. I want to create another script that opens and runs the other scripts so I just have to activate that superior script to run all the other scripsts too. Ben Bolker wrote: > > thoeb gmail.com> writes: > >>

Re: [R] run r scripts (tinn) via command

2009-03-18 Thread Ben Bolker
thoeb gmail.com> writes: > Is it possible to create a superior r script containing > commands to run the sub-scripts one by one? ?source __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting gu

[R] run r scripts (tinn) via command

2009-03-18 Thread thoeb
Hello, I am working on a project consisting of several r-scripts written in the tinn editor. Is it possible to create a superior r script containing commands to run the sub-scripts one by one? - Tamara Hoebinger University of Vienna -- View this message in context: http://www.nabble.com/ru