Search String: Display: Description: Sort:

Results:

References: [ +from:pburns@pburns.seanet.com: 67 ]

Total 67 documents matching your query.

1. Re: detecting repeated values in a vector (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Thu, 04 May 2006 21:46:15 +0100
Sounds like a job for 'rle'. Patrick Burns patrick@burns-stat.com +44 (0)20 8525 0696 http://www.burns-stat.com (home of S Poetry and "A Guide for the Unwilling S User") Hello, I'm trying to detect r
/archives/html/s-news/2006-05/msg00019.html (8,221 bytes)

2. Re: sapply question (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Mon, 13 Mar 2006 16:31:46 +0000
3
/archives/html/s-news/2006-03/msg00044.html (8,957 bytes)

3. Re: replace missing with previous value (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Wed, 01 Feb 2006 21:58:21 +0000
This is known as 'Last Observation Carried Forward' or LOCF. There is a discussion of algorithms for it somewhere in the R archives. You do not want to do serious computing in Excel or other spreadsh
/archives/html/s-news/2006-02/msg00005.html (9,011 bytes)

4. Re: "cumsum" for matrices (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Sat, 21 Jan 2006 09:54:21 +0000
You can cut out some of the arithmetic by only adding the last slice: cumsumA[,,1] <- A[,,1] for(z in seq(len=dim(A)[3])[-1]) cumsumA[,,z] <- cumsumA[,,z-1] + A[,,z] Also if the product of the first
/archives/html/s-news/2006-01/msg00065.html (8,928 bytes)

5. Re: how to generate indexed 3-dim variable (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Wed, 25 Jan 2006 19:08:31 +0000
If all of your data is numeric, as in your example, then you can just use a 3-dimensional array. (S Poetry talks about them, but they are quite simple.) Patrick Burns patrick@burns-stat.com +44 (0)20
/archives/html/s-news/2006-01/msg00084.html (10,892 bytes)

6. Re: error in summary output for mgarch model (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Mon, 30 Jan 2006 16:23:49 +0000
I don't have a comment on the errors that you are getting, but I do on trying to fit the model in the first place. 300 observations is probably too few to get a meaningful estimate from the model. It
/archives/html/s-news/2006-01/msg00104.html (10,476 bytes)

7. POP Version 3 Released (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Thu, 08 Dec 2005 11:23:57 +0000
Version 3 of POP Portfolio Construction Suite is now released. This is commercial software that runs under both S-PLUS and R. The highlights are: It is now available under Linux as well as Windows. M
/archives/html/s-news/2005-12/msg00019.html (7,230 bytes)

8. Re: creating a data frame from a vector of character strings (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Sun, 06 Nov 2005 22:34:51 +0000
If I understand correctly, you want the "get" function. Patrick Burns patrick@burns-stat.com +44 (0)20 8525 0696 http://www.burns-stat.com (home of S Poetry and "A Guide for the Unwilling S User") Hi
/archives/html/s-news/2005-11/msg00002.html (8,826 bytes)

9. Re: extract from an array of arbitrary dimension (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Fri, 14 Oct 2005 16:29:21 +0100
The 'corner' function uses 'do.call' on '[' to perform a similar task. The code is available in the Public Domain Code area of the Burns Statistics website. The reason for 'corner' being there was no
/archives/html/s-news/2005-10/msg00047.html (9,233 bytes)

10. Re: creating data objects using loop index (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Mon, 01 Aug 2005 16:46:54 +0100
You want to have a list and use the correct subscripting. object <- vector('list', 10) for(i in 1:10) { object[[i]] <- A %*% B } S Poetry can tell you more. Patrick Burns patrick@burns-stat.com +44 (
/archives/html/s-news/2005-08/msg00001.html (8,520 bytes)

11. Re: small question about NA (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Fri, 19 Aug 2005 15:22:16 +0100
A
/archives/html/s-news/2005-08/msg00089.html (8,746 bytes)

12. Re: Concerns about SPLUS version 7 (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Wed, 13 Jul 2005 14:35:12 +0100
I'll chip in my $0.02: ... 4. BDR said in one of his talks a few years ago that R probably has more bugs than S-PLUS. However, bugs in R get fixed a lot quicker than in S-PLUS. Also, R is developed
/archives/html/s-news/2005-07/msg00083.html (10,211 bytes)

13. Re: lapply question (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Tue, 19 Jul 2005 14:56:11 +0100
Your problem with 'names' is that you are using a list where you should use a vector. That is: names(alist) <- c('array 1', 'array 2') On the 'lapply' question, you should be able to do it, I would w
/archives/html/s-news/2005-07/msg00109.html (10,049 bytes)

14. Re: Find the K largest & smallest entries in a Correlation Matrix (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Sat, 04 Jun 2005 19:16:01 +0100
You could do something like: k <- 10 lt.cor <- spcor[lower.tri(spcor, diag=FALSE)] ltc.sort <- sort(lt.cor) lower.cor <- ltc.sort[k] upper.cor <- ltc.sort[length(ltc.sort) - k + 1] corloc <- array(FA
/archives/html/s-news/2005-06/msg00012.html (8,786 bytes)

15. Re: Functions, classes and names (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Fri, 06 May 2005 09:58:53 +0100
In S-PLUS (but not R) the length of a function is the number of arguments plus 1 (for the body). Patrick Burns Burns Statistics patrick@burns-stat.com +44 (0)20 8525 0696 http://www.burns-stat.com (h
/archives/html/s-news/2005-05/msg00023.html (9,716 bytes)

16. Re: combining arrays (score: 1)
Author: .com>
Date: Wed, 13 Apr 2005 18:09:14 +0100
t works in S-PLUS
/archives/html/s-news/2005-04/msg00088.html (9,291 bytes)

17. spreadsheet addiction (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Mon, 03 Jan 2005 13:21:16 +0000
There's a new page on the Burns Statistics website http://www.burns-stat.com/pages/Tutor/spreadsheet_addiction.html that looks at spreadsheets from a quality assurance perspective. It presents R as a
/archives/html/s-news/2005-01/msg00004.html (7,169 bytes)

18. Re: No NA (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Mon, 29 Nov 2004 13:51:42 +0000
ou in advan
/archives/html/s-news/2004-11/msg00164.html (8,272 bytes)

19. Re: Environment (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Thu, 14 Oct 2004 12:49:50 +0100
That is equivalent to the first spot in the search list, which is specified by pos=1 or where=1 in various functions. Patrick Burns Burns Statistics patrick@burns-stat.com +44 (0)20 8525 0696 http://
/archives/html/s-news/2004-10/msg00058.html (8,080 bytes)

20. Re: Rescaling rows of a matrix (score: 1)
Author: Patrick Burns <pburns@pburns.seanet.com>
Date: Wed, 22 Sep 2004 16:09:34 +0100
Z by subtracti
/archives/html/s-news/2004-09/msg00118.html (8,678 bytes)


This search system is powered by Namazu