Displaying 3 results from an estimated 3 matches for "eclerx".
Did you mean:
clerk
2013 Aug 22
1
Rexcel
...rg
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 file into excel?
Rui Barradas
Em 22-08-2013 15:57, siddhartha.geddam at eclerx.com escreveu:
> Hi Rui thanks a lot for your reply for my previous query, was of great help to me. I am facing one 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.runrc...
2012 Jul 24
3
Plm on splitted data
Hi all
I want to use plm function on splitted dataset but facing problems while
doing it.
I did the same for lm function it worked fine but now my problem forces me
to use lags into it while in a single set I have multiple type of data,
which I believe can only be done with panel data.
The code I am using is
A = split(mydata, mydata$Unique.ID.Number)
Z = lapply(A, function(df){plm(Total.Sales
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