Search String: Display: Description: Sort:

Results:

References: [ +from:immhan@student.dtu.dk: 45 ]

Total 45 documents matching your query.

1. Re: asymptotic standard errors (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Wed, 21 Sep 2005 13:45:40 +0200 (CEST)
arima.mle() will calculate the variance-covariance matrix for the autoregressive and moving average coefficients (citing the help-page). Regards, Henrik -- Henrik Aalborg Nielsen Informatics and Mat
/archives/html/s-news/2005-09/msg00064.html (8,066 bytes)

2. Re: How to calculate someone's age (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Mon, 13 Dec 2004 09:30:15 +0100 (MET)
Hi Kristian There is also a solution which does not rely on as.numeric returning the result in days: (tDdata$Event-tDdata$DOB) / timeSpan("365 days 6 hours") # or "365d 6h" Regards, Henrik -- Henrik
/archives/html/s-news/2004-12/msg00069.html (10,965 bytes)

3. Re: [S) sampling from an uniform with a minimum distance between (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Fri, 19 Nov 2004 11:44:57 +0100 (MET)
ble
/archives/html/s-news/2004-11/msg00121.html (8,487 bytes)

4. Re: AR(2) with regression variables (score: 1)
Author: a.ar
Date: Wed, 16 Jun 2004 09:27:17 +0200 (MEST)
Models like y(t) = a + b*x(t) + AR(2)-error : arima.mle (xreg=cbind(1,x)) Models like y(t) = a0 + a1*y(t-1) + a2*y(t-2) + b*x(t) + i.i.d. gaussian error : Set up the variables in a data frame and fit
/archives/html/s-news/2004-06/msg00105.html (7,958 bytes)

5. Re: Problem with loess call in functions (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Mon, 9 Feb 2004 11:38:22 +0100 (MET)
Hi John, Your problem is caused by the scooping rules. The following will work and .tmp.dat will not exist when loess.fitter returns. I think 'get(...)' can just be replaced by '.tmp.dat', but 'get'
/archives/html/s-news/2004-02/msg00049.html (10,743 bytes)

6. Re: How to sum (matrix) components of a list? (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Tue, 17 Feb 2004 08:41:51 +0100 (MET)
I believe do.call("+", matrices) will do the job. /Henrik -- Henrik Aalborg Nielsen Informatics and Mathematical Modelling Section for Statistics, Time Series Group Technical University of Denmark Ri
/archives/html/s-news/2004-02/msg00124.html (9,880 bytes)

7. Re: LOESS plots and timeDate objects (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Tue, 17 Feb 2004 08:46:30 +0100 (MET)
Dear Barry, The time must be a numeric, e.g. time <- timeSeq(from = "1/1/2003", to = "1/31/2003", by = timeSpan("6h")) y <- rnorm(n = length(time)) loess(y ~ time) # Don't work daysFromStart <- (time
/archives/html/s-news/2004-02/msg00125.html (8,869 bytes)

8. Re: How to sum (matrix) components of a list? (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Wed, 18 Feb 2004 09:23:27 +0100 (MET)
Dear John and the rest of S-news, Sorry - I did not check my suggestion enough - only with a list of length two ... /Henrik -- Henrik Aalborg Nielsen Informatics and Mathematical Modelling Section fo
/archives/html/s-news/2004-02/msg00141.html (9,845 bytes)

9. Re: Bootstrapping with autocorrelated data (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Tue, 4 Nov 2003 10:17:11 +0100 (MET)
Dear Bevan, As you noticed it is not possible to bootstrap something which is not i.i.d. I would look for an appropriate ARMA-model and then simulate new series using this model (functions arima.mle,
/archives/html/s-news/2003-11/msg00008.html (11,104 bytes)

10. Re: stacking columns (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Wed, 22 Oct 2003 11:00:29 +0200 (MEST)
ithout inspect, the pl
/archives/html/s-news/2003-10/msg00217.html (9,482 bytes)

11. Re: time format (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Fri, 8 Aug 2003 08:26:58 +0200 (METDST)
One posibility is to transform the columns into time spans, e.g.: timeSpan(c("10:30", "09:01"), in.format="%H:%M") and then just subtract the one from the other. The output is still a time span; usin
/archives/html/s-news/2003-08/msg00050.html (8,302 bytes)

12. Re: timeSeries concatenation (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Fri, 4 Jul 2003 09:58:39 +0200 (METDST)
The problem seems to be that the stuff is there but it is very hard to find. When I needed a function to concat a number of timeSeries I searched the help and timeSeries section of the manual, but th
/archives/html/s-news/2003-07/msg00030.html (12,202 bytes)

13. Re: Using nonlinear least square regression (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Thu, 12 Jun 2003 08:47:26 +0200 (METDST
Dear Kelly, I think that the most simple solution is to write a function which takes arguments time and Delta; say ff (more independent variables?). The call to nls would then be: nls(vl ~ ff(Delta,
/archives/html/s-news/2003-06/msg00071.html (10,438 bytes)

14. arima.fracdiff (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Thu, 12 Jun 2003 17:19:23 +0200 (METDST
Dear all, On the help page for arima.fracdiff it is stated thet the loglik element returned by arima.fracdiff is "a quantity proportional to the logarithm of the maximum likelihood (up to an additive
/archives/html/s-news/2003-06/msg00077.html (7,112 bytes)

15. Re: Merging Time Series (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Fri, 20 Jun 2003 09:18:27 +0200 (METDST
Dear Horace, seriesMerge should do the job : Positions x.1 x.2 01/01/1960 1 11 01/02/1960 2 12 01/03/1960 3 13 01/04/1960 4 14 01/05/1960 5 15 01/06/1960 6 16 01/07/1960 7 17 01/08/1960 8 18 01/09/19
/archives/html/s-news/2003-06/msg00141.html (10,210 bytes)

16. Re: Time Series: How to build irregular sequences without tears (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Tue, 24 Jun 2003 09:21:16 +0200 (METDST
Dear Paul, Maybe the following function is helpful - it concats timeSeries or signalSeries directly: seriesConcat <- function(..., list.series = list(...)) { elemClass <- unlist(lapply(list.series, c
/archives/html/s-news/2003-06/msg00168.html (10,537 bytes)

17. Re: Text for individual panels in a trellis plot (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Wed, 21 May 2003 09:25:09 +0200 (METDST
be
/archives/html/s-news/2003-05/msg00119.html (9,698 bytes)

18. Re: Pruning rules in regression trees, 0-SE vs. 1-SE (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Fri, 4 Apr 2003 08:53:43 +0100 (MET)
n
/archives/html/s-news/2003-04/msg00027.html (10,966 bytes)

19. Matrix-library (was: Sparse Matrix- what's the best way to get this into Splus?) (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Tue, 28 Jan 2003 08:30:06 +0100 (MET)
Could someone from Insightful please comment on the current state and plans for the Matrix-library; it is in the 6.0 and 6.1 Solaris and Linux versions, but from Steve's email it seems that it is not
/archives/html/s-news/2003-01/msg00155.html (9,352 bytes)

20. Re: timeDate and S4 classes (score: 1)
Author: "Henrik Aalborg Nielsen" <immhan@student.dtu.dk>
Date: Thu, 3 Oct 2002 11:18:06 +0200 (METDST)
Dear S-list, I use timeDate, timeSpan, and timeSeries at a regular basis for handling (highly) irregular timeSeries and I do think that IT WORKS VERY WELL, the exceptions being that plotting highly i
/archives/html/s-news/2002-10/msg00035.html (8,117 bytes)


This search system is powered by Namazu