Re: [R] RExcel issues

2018-03-01 Thread Michael Ashton
Thanks though - didn’t know there was that ecosystem. I will try that list. > On Mar 1, 2018, at 5:37 PM, David Winsemius wrote: > > >> On Mar 1, 2018, at 2:02 PM, Michael Ashton >> wrote: >> >> Hi - >> >> For a while I've used RExcel without problems to run a repeating portfolio >> optim

Re: [R] RExcel issues

2018-03-01 Thread Michael Ashton
No, this is home use. I wasn’t even aware there was a commercial license. > On Mar 1, 2018, at 5:37 PM, David Winsemius wrote: > > >> On Mar 1, 2018, at 2:02 PM, Michael Ashton >> wrote: >> >> Hi - >> >> For a while I've used RExcel without problems to run a repeating portfolio >> optimiz

Re: [R] RExcel issues

2018-03-01 Thread David Winsemius
> On Mar 1, 2018, at 2:02 PM, Michael Ashton > wrote: > > Hi - > > For a while I've used RExcel without problems to run a repeating portfolio > optimization problem where I solve for a portfolio allocation targeting a > particular risk, then solve for a different risk, etc. I call the comman

Re: [R] Rexcel

2013-08-22 Thread Erich Neuwirth
Free support for RExcel is available by subscribing to the mailing list at rcom.univie.ac.at and posting questions to the list. On Aug 22, 2013, at 7:04 PM, Jeff Newmiller wrote: > This is not on topic for this mailing list. See the Statconn website for > support for RExcel. __

Re: [R] Rexcel

2013-08-22 Thread Jeff Newmiller
This is not on topic for this mailing list. See the Statconn website for support for RExcel. --- Jeff NewmillerThe . . Go Live... DCN:Basics: ##.#. ##.#. Live Go...

Re: [R] Rexcel

2013-08-22 Thread Rui Barradas
Hello, I must tell you once again to address your questions to r-help@r-project.org And since there was no subject line, I've made up one. Your question seems to be a question about excel, and I really can't help you. Maybe someone else can. But if you write.table(etszP) can't you read that

Re: [R] RExcel, ROOo and LibreOffice inquiry

2012-11-26 Thread John Kane
John Kane Kingston ON Canada > -Original Message- > From: landronim...@gmail.com > Sent: Sun, 25 Nov 2012 15:02:16 +0100 > To: jrkrid...@inbox.com > Subject: Re: [R] RExcel, ROOo and LibreOffice inquiry > > On Sun, Nov 25, 2012 at 2:38 PM, John Kane wrote: >

Re: [R] RExcel, ROOo and LibreOffice inquiry

2012-11-25 Thread Liviu Andronic
On Sun, Nov 25, 2012 at 2:38 PM, John Kane wrote: > Can you supply a link for ROOo ? I don't see it anywhere. > Oh, sorry. I thought it was obvious: http://rcom.univie.ac.at/download.html#ROOo > Also what do you mean" OpenOffice is deprecated"? > > Do you mean in terms of using it with ROOo? O

Re: [R] RExcel, ROOo and LibreOffice inquiry

2012-11-25 Thread John Kane
Can you supply a link for ROOo ? I don't see it anywhere. Also what do you mean" OpenOffice is deprecated"? Do you mean in terms of using it with ROOo? Otherwide OOo, now under new management at Apache is under active development under the name Apache Open Office. John Kane Kingston ON Cana

Re: [R] RExcel

2011-08-10 Thread David Winsemius
Don't they have their own support mailing list? You should review their documentation for specifics. -- David. On Aug 10, 2011, at 12:24 PM, Dr. Alireza Zolfaghari wrote: Hi list, I used to work with RExcel in excel 2003. Now in 2007, I tried the same RExcel, but it did not work. I got R ve

Re: [R] [RExcel] please help me to set up RExcel via a remote server

2011-06-20 Thread Erich Neuwirth
statconnDCOM and RExcel have their own mailing list. Please subscribe at rcom.univie.ac.at and post you question there. On Jun 17, 2011, at 7:55 AM, Takatsugu Kobayashi wrote: > Hi RUsers, > > I am currently tying to use RExcel via R installed in my remote server > (CentOS 5.5). > Could you plea

Re: [R] RExcel

2011-04-12 Thread Erich Neuwirth
; > John > > > > > > > From: Jonathan P Daily > > Cc: r-help ; r-help-boun...@r-project.org > Sent: Mon, April 11, 2011 11:39:12 AM > Subject: Re: [R] RExcel > > It is asking the obvious, but did you run the commands from the

Re: [R] RExcel

2011-04-11 Thread array chip
Yes, I did, and no error message. And comRegisterRegistry() returns NULL, not sure if that matters John From: Jonathan P Daily Cc: r-help ; r-help-boun...@r-project.org Sent: Mon, April 11, 2011 11:39:12 AM Subject: Re: [R] RExcel It is asking the obvious

Re: [R] RExcel

2011-04-11 Thread Jonathan P Daily
It is asking the obvious, but did you run the commands from the rcom package after installation (see inline ***s)? -- Jonathan P. Daily Technician - USGS Leetown Science Center 11649 Leetown Road Kearneysville WV, 25430 (304) 724-4480 "Is the room still a room w

Re: [R] Rexcel path problem

2011-04-01 Thread Felipe Carrillo
Jorge: You can run save your scripts in the same folder where your wokbook is and run it like this: Sub Scatter() Call rinterface.StartRServer 'Put the dataframe into R Call rinterface.PutDataframe("scatter", DownRightFrom(Range("RData!A1")), WithRowNames:=False) Call rin

Re: [R] Rexcel path problem

2011-04-01 Thread Jeff Newmiller
Use "/" instead of "\" in the path. --- Jeff Newmiller The . . Go Live... DCN: Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries O.O#. #.O#. with /Software/Embedded Contro

Re: [R] Rexcel path problem

2011-04-01 Thread Berend Hasselman
On 01-04-2011, at 16:12, Jorge Nieves wrote: > > Hi, > > I am running a test to call an R script with in excel using VBA. My VBA > code is shown bellow. The middle section of this mail also includes the > content of my Rscript. The bottom part shows the error message form the > R console. > >

Re: [R] Rexcel path problem

2011-04-01 Thread Richard M. Heiberger
Jorge, This looks like an R on Windows problem, it is unrelated to VBA. You have the statement ("source('X:\Trading\Energy\JorgeSpace\TMPholder\cpixe\home models\toto.R')") which is invalid R. You need to use either forward slashes or double-back-slashes in R commands. See the R for Windows F

Re: [R] Rexcel for mac

2011-02-04 Thread Gabor Grothendieck
On Fri, Feb 4, 2011 at 5:36 AM, Clayton Coffman wrote: > Is there anything out there which replicates the functionality of > RExcel on a mac?  I have Excel for mac, and would just like something > which makes its easy to put sheets into R as a dataframe etc. > See: http://rwiki.sciviews.org/doku

Re: [R] Rexcel for mac

2011-02-04 Thread Marc Schwartz
On Feb 4, 2011, at 4:36 AM, Clayton Coffman wrote: > Is there anything out there which replicates the functionality of > RExcel on a mac? I have Excel for mac, and would just like something > which makes its easy to put sheets into R as a dataframe etc. On OSX, I believe that the two primary op

Re: [R] RExcel doesn't get active dataset

2011-01-01 Thread Erich Neuwirth
Please subscribe to the rcom mailing list at rcom.univie.ac.at RExcel questions are handled on that list. On 12/20/2010 9:24 PM, jryan.dani...@gmail.com wrote: > Hey everyone > > When I try to 'get active dataframe' from the context menu in excel using > Rcmdr menus in excel, only the header and

Re: [R] Rexcel

2010-11-22 Thread Erich Neuwirth
a) RExcel has its own mailing list (as the documentation tell you). Please post RExcel related questions to the mailing list accessible at rcom.univie.ac.at b) For running code at startup, you have to create a worksheet (not a workbook) named RCode in your workbook. On 11/22/2010 7:15 PM, csrabak

Re: [R] Rexcel

2010-11-22 Thread csrabak
Em 22/11/2010 10:11, Luis Felipe Parra escreveu: Hello I am new to RExcel and I would like to run a source code form the excel worksheet. I would like to run the following code source("C:\\Quantil Aplicativos\\Genercauca\\BackwardSelectionNC.r") from the excel wroksheet. Does anybody know how t

Re: [R] Rexcel

2010-11-22 Thread Stephen Liu
Hi, For RExcel I would suggest subscribing; http://mailman.csd.univie.ac.at/listinfo/rcom-l They have a website on; http://rcom.univie.ac.at/ B.R. Stephen L - Original Message From: Luis Felipe Parra To: r-help Sent: Mon, November 22, 2010 8:11:39 PM Subject: [R] Rexcel Hello I

Re: [R] RExcel: "Sctools not available"

2010-08-09 Thread Erich Neuwirth
Please post any qeustions regarding RExcel to the rcom-l mailing list. You can subscribe at rcom.univie.ac.at On Aug 9, 2010, at 1:42 PM, Andreas Scherer wrote: > I have a problem with RExcel which I have now installed on top of R 2.11.0. > The problem had been posted in 2009 on the forum by so

Re: [R] RExcel + RCOM + Linux

2010-02-23 Thread Erich Neuwirth
Remote server has to be a Windows machine also. RExcel uses (D)COM which is Windows-specific On 2/22/2010 9:14 AM, Philipp Rappold wrote: > Dear all, > > does anyone know if it is possible to connect a Windows RExcel instance > to a linux R instance? > > Within Rexcel, I find the option "Remote

Re: [R] RExcel

2009-10-07 Thread Erich Neuwirth
Please post this kind of questions to the rcom mailing list. You can subscribe at rcom.univie.ac.at __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide