Displaying 7 results from an estimated 7 matches for "rput".
Did you mean:
put
2004 Aug 09
2
Using R "boxplot" function in Excel
Hi, I have downloaded the "R-Com and I was able to run "Interactive Graphics
Demo 2" in excel. However, I couldn't create my own boxplot. Whenever I
tried to run any code, it always say" Error in loading DLL", even
"=rput(A1,A2:A20)". Any idea about what's going wrong? A detailed
explaination about how to use R-Excel tool would be greatly appreciated.
Thanks a lot in advance!
PS: I would like you to use the following data as an example.
A B C
12.5186182 7.394714354 6.58360308
11.37597453 16.66820087 3.9...
2013 Aug 22
1
Rexcel
...last query on the following given issue.
>
> 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 can I import the output table at the end of the code from RExcel to Excel using...
2005 Jan 04
0
[2.6 patch] smbfs: make some functions static
...try, struct iattr *attr);
/* file.c */
@@ -81,10 +78,8 @@
extern int smb_init_request_cache(void);
extern void smb_destroy_request_cache(void);
extern struct smb_request *smb_alloc_request(struct smb_sb_info *server, int bufsize);
-extern void smb_rget(struct smb_request *req);
extern void smb_rput(struct smb_request *req);
extern int smb_add_request(struct smb_request *req);
-extern int smb_request_send_req(struct smb_request *req);
extern int smb_request_send_server(struct smb_sb_info *server);
extern int smb_request_recv(struct smb_sb_info *server);
/* symlink.c */
--- linux-2.6.10-mm1...
2007 Oct 09
0
Using Rexcel: How to work with a range of data?
Hi,
I am trying to use an R function over a column of data I have in my
excel spreadsheet. I do the following:-
1) assign an object (calling it xaxis) to the data by typing in
=Rput("xaxis",a1:a10), where my data is shown in cells
a1:a10
Now I wish to arrive at the mean of these numbers and am doing the
following in another cell:-
=Rapply("mean","xaxis")
This does not work. Neither does =Rapply("mean",Reval("xaxis")) work?...
2008 Oct 24
1
R D COM Excel Add-Ins
Hello All!
I have a question regarding the package RDCOMClient. I want to start an
Excel file with R and it works flawlessly except the fact, that Add-Ins are
not loaded. Can someone please explain me how to load one? Does it work with
ex$AddIns$Invoke?
Greetings,
David
[[alternative HTML version deleted]]
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 can I import the output table at the end of the code from RExcel to
Excel using Rexcel Macros?
Other option I ha...
2013 Aug 22
0
Rexcel macro query
*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 can I import the output table at the end of the code from RExcel to
Excel using Rexcel Macros?
Other...