Displaying 20 results from an estimated 1000 matches similar to: "VBA function InStrRev in RCOM"
2009 Jul 09
0
RExcel/ RCom
Hi All
Apologies if this is not the correct mailing list for this question.
I have installed RExcel and RCom from CRAN. R is indicating that I need
an additional file/package "statconnDCOM" from rcom.univie.ac.at
I have been trying to access this website over the last 2 days be it
appears to be down.
Does anyone know when this site is likely to be back up and/or know of
an
2009 Mar 27
0
RExcel rcom Server Loading The Wrong Version of R
Hi,
I'm pretty new to R and VERY new to RExcel. I've just finished setting
it up and I'm having some problems. My first Issue is that if I attempt
to use a function like RApply("sum", A1:A4) from within excel it gives
me an error saying "There seems to be no R process connected to the
server" I can then see an R Console open up and I get a message saying R
2006 Aug 09
0
[Rcom-l] GARCH(1,1) optimization with R
This is not the right list for your question.
Question on how to use R and R's libraries should be posted to
R-help at stat.math.ethz.ch
Patrick Zhang wrote:
> Hello all,
>
> Trying to implement GARCH(1,1) with ASP.NET <http://asp.net/> and
> VB.NET<http://vb.net/>.
> It involves optimization of a three-variate function with some constraints.
> Learned from
2008 Jan 24
0
Rcom package
Hi,
I have R 2.5.1 installed in my system and have installed rcom package
1.5-2.2 vesion. I don't see the following reference "RCOM 1.0 Type
Library" in the VBA IDE. Please help. Also, after installing when I type
comRegisterRegistry(), it return "NULL". Is that ok? Same with
comRegisterServer().
Regards,
Uma
This e-mail may contain confidential and/or
2010 Oct 30
1
R & VBA
Hi List,
Is there any way to pass on directly VBA variable content into a R variable?
on windows XP & using R 2.12.0
I have installed RExcel addin (with associated D(COM))
>> It function fine when trying to pass Excel Range to R but I failed (sorry if it is only my own limitation, search till now unsuccessful) to find out how to pass directly VBA array into R
Below an example -
2004 Oct 19
0
答复: 答复: 答复: How to draw x-axis time label.
Thank you !
I run your code. It have a graph with time(date) on x-axis. Thank you very much!
Well, Would you like to do me a favor again?
Most of times, the x-axis time data is lasted about 3 months. They are too much. I must select some of them marking in x-axis,and they are must reasonable and human-readable. Now I have tried the "pretty " function, But as soon as I run it, the
2004 Jul 21
1
RE: [Rcom-l] rcom 0.97 available for download
> From: Thomas Baier
>
> > I am confused as to what I need and must do.
> >
> > Your message said
> > ftp://cran.r-project.org/pub/R/src/contrib/Devel/rcom_0.97.tar.gz
> >
> > The DESCRIPTION file inside that download says
> > Package: rcom
> > Version: 0.95
> > Date: 2004-07-14
>
> That's too bad. Sorry for that.
>
>
2010 Mar 09
2
rcom package
Hi,
I would like to make a program that reads excel files, and writes the cells of which contents is not a formula to another file. I don't think this is possible with RODBC, but it may be possible with rcom.
I read the documentation of the rcom package, but I was hoping somebody knows a good web resource for more eleborate info. I tried Googling, but alas (did you know rcom also is a
2013 Aug 22
0
Usage of ETS R codes through RExcel macros in VBA
Issue:
Usage of ETS R codes through RExcel macros in VBA
Given below is my command code:
Rinterface.runrcodefromrange Range(?Sheet1!B2:D8?)
Following are the codes written in the given cell reference:
#!rput zz 'Sheet1'!$B$2:$B$22
library(forecast)
zz <- ts(zz,freq=365,start=c(2009,1))
etsz <- ets(zz,model='AAN')
etszP <- forecast(etsz,h=34)
write.table(etszP)
How
2011 Dec 23
3
Problem with RCOM package
Hi,
I am using R version 2.14.0 on windows 7. Trying to use RCOM
package and followed example provided at
(http://cran.r-project.org/web/packages/rcom/rcom.pdf) .
I am able to load the com object as seen in screenshot
2.png. however I am unable to invoke/get/set property to the object.
Please guide me on the same,
Regards;
Kumar Anand
2010 Mar 31
1
RCOM Save
Dear all,
I use the package RCOM to manipulate Excel-Files (Windows).
After opening the Excel-File and formatting the cells I want to save the
file automatically without request. If I use y[["Save"]] <- TRUE it opens
the saving dialog and I have to select the destination for saving. But I
simply want to overwrite the existing file without any other workings.
Thany your very much
2009 Sep 15
0
chinese character support issue of rcom
Dear Sir,
rcom is a great package of R. Yet it seems that there is some problem of
Chinese character supporting.
comGetPropery() always get the part of the Chinese character.
Any suggestion would be appreciated.
Thanks.
Michael
> library(rcom)
Loading required package: rscproxy
> txe<-comCreateObject("Excel.Application")
> comSetProperty(txe,"Visible",TRUE);
2010 Apr 16
3
run R script from Excel VBA
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]]
2010 Feb 22
1
RExcel + RCOM + Linux
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 Server Address", but I
wonder what the installation procedure on my linux (ubuntu) R looks
like (if possible at all)?
Thanks
Philipp
2013 Sep 01
0
cannot install RExcel
I have followed the instructions according to:
http://rcom.univie.ac.at/download.html#RExcel
-- "You will have to install
. a suitable version of R (I have installed R 3.0.1, CRAN Amsterdam)
. a matching version of rscproxy
. statconnDCOM or rcom with statconnDCOM
Download RExcel 3.2.13
2003 Sep 16
7
Retrieve ... argument values
Dear R users,
I want to retrieve "..." argument values within a function. Here is a small
exmaple:
myfunc <- function(x, ...)
{
if (hasArg(ylim)) a <- ylim
plot(x, ...)
}
x <- rnorm(100)
myfunc(x, ylim=c(-0.5, 0.5))
Error in myfunc(x, ylim = c(-0.5, 0.5)) : Object "ylim" not found
>
I need to retrieve values of "ylim" (if it is defined
2005 Nov 08
3
The problem with rcom pakage
I have the problem with rcom 1.2.2 package. It does't work with R 2.2.0.
Is there any opportunities to correct the work of this package?
Thanks for your help.
Yulia
2012 Jul 09
1
Issue with installing RExcel
Hi community. I'm fairly new to R and have a basic question. When I try to
install RExcel with the code:
install.packages("RExcelInstaller", "rcom", "rsproxy")
I get the message below:
Warning in install.packages("RExcelInstaller", "rcom", "rsproxy") :
'lib = "rcom"' is not writable
Error in
2006 Jun 29
1
RCOM Package
Hi list,
I just installed the rcom package and tried to read/give out some values
from/to Excel. Altogether it works great... but nevertheless I don't know
how the syntax works or in other words: "Which command needs which
parameters?"
Is there somwhere a manual about this package with good examples? I've read
the Package description... but there are not really good
2013 Jul 12
0
Conexion excel vba con R y VBasic con R
Hola Eduardo.
Lo que buscas lo puedes encontrar aquí....
http://www.statconn.com/products.html#RExcel
Un saludo,
_____________________________
Miguel Ángel Rodríguez Muíños
Dirección Xeral de Innovación e Xestión da Saúde Pública
Consellería de Sanidade
Xunta de Galicia
http://dxsp.sergas.es
-----Mensaje original-----
De: r-help-es-bounces en r-project.org [mailto:r-help-es-bounces en