Displaying 6 results from an estimated 6 matches for "arnaud_amsellem".
2003 Nov 24
3
Bollinger Bands
Is there a way to create Bollinger Bands without having to loop on the
observations of a time serie?
Any help appreciated
Thanks
2003 Apr 09
3
How to count the number of parameters in a function
I have the following function:
Myfunc <- function(var1,var2,.....,varN)
{ .....
}
In the above function I have a variable number of parameters (N>2). How can
I count how many parameters have been entered?
Any help appreciated
Thanks
Arno
2003 Dec 11
4
Probelm with read.table
Hi All,
I have the following text file (mytextfile.txt)
738307 527178 714456 557955
#N/A 17.42 6.22 4.73
#N/A 17.3 6.23 4.75
#N/A 17.29 6.17 4.7
#N/A 17.07 6.12 4.6
#N/A 17.27 6.19 4.7
#N/A 17.72 6.4 4.78
#N/A 17.12 6.19 4.75
#N/A 17.07 6.15 4.65
#N/A 17.03 6.07 4.64
#N/A 17.38 6.13 4.7
#N/A 17.38 6.13 4.7
#N/A 17.38 6.13 4.7
#N/A 17.38 6.13 4.7
#N/A
2002 Nov 26
0
scope (was URGENT Help required)
...matrix(nrow = 20, ncol =8)
X <- matrix(nrow = 1, ncol = 6)
compt <- 1
indDF <- as.data.frame(IndDF)
for (i in 2:(length(IndDF)-1))
{
[whatever you need to do...]
}
return(list(models = models, compt = compt))
}
Andy
-----Original Message-----
From: arnaud_amsellem at ssga.com [mailto:arnaud_amsellem at ssga.com]
Sent: Tuesday, November 26, 2002 6:29 AM
To: r-help at stat.math.ethz.ch
Subject: [R] URGENT Help required
I've the following problem:
The below function runs a loop with regression analysis and stores F-Stat
in a matrix. When I call the matrix...
2002 Nov 26
2
URGENT Help required
I've the following problem:
The below function runs a loop with regression analysis and stores F-Stat
in a matrix. When I call the matrix elements (models[i,j]) in the function
I get proper results, but when I try to call the same elements outside the
function the matrix appears to be empty e.g when I call compt inside the
function I get: 5 but when I call it outside I get: 1. This is the
2004 Apr 07
1
Time Varying Coefficients
I'd like to estimate time varying coefficients in a linear regression using
a Kalman filter.
Even if the Kalman Filter seems to be available in some packages I can't
figure out how to use it to estimate the coefficients.
Is there anyway to do that in R?
Any help appreciated
Thanks