Search String: Display: Description: Sort:

Results:

References: [ +from:oehl@Psyres-Stuttgart.DE: 34 ]

Total 34 documents matching your query.

1. [S] Ph.D. done: Thank you and temporary Good Bye (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Thu, 1 Oct 1998 18:11:22 +0100 (MET)
Dear S+ers, I want to thank you for your support and the outstanding productive atmosphere of mutual helpfulness and respect in this list. Beside being a valuable ressource, this list was also a sour
/archives/html/s-news/1998-10/msg00009.html (8,027 bytes)

2. [S] Why MATHSOFT might not like an S+ compiler and why they perhaps should (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Thu, 1 Oct 1998 18:16:29 +0100 (MET)
Dear Charles Roosen, I always thought it would be nice to have an S+ compiler and thought it just would be a pitty not to have one. Now looking back to the last years and thinking about what I expect
/archives/html/s-news/1998-10/msg00010.html (10,507 bytes)

3. Re: [S] copying and pasting blocks of commands (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Wed, 1 Jul 1998 13:34:27 +0200 (MET DST)
options (prompt="; ", continue=";; ") c("line 1" , "line 2" , "line 3" ) ; c("line 1" ;; , "line 2" ;; , "line 3" ;; ) [1] "line 1" "line 2" "line 3" ; ; c("line 1" NULL ; ;; ;; , "line 2" Syntax err
/archives/html/s-news/1998-07/msg00005.html (10,969 bytes)

4. [S] QUESTION: unexpected behaviour of trellis countourplot() (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Wed, 1 Jul 1998 16:09:55 +0200 (MET DST)
Dear collegues, In trying to superpose raw data onto a loess-fitt where the loess fit is plotted with trellis' contourplot(), I met a strange behaviour of contourplot() which I do not understand (I'm
/archives/html/s-news/1998-07/msg00009.html (8,680 bytes)

5. [S] SUMMARY + DOCU BUG: unexpected behaviour of trellis countourplot() (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Wed, 1 Jul 1998 17:23:14 +0200 (MET DST)
Thanks to Stephen Kaluzny for pointing out quickly that I should write panel.contourplot(x, y, subscripts, z, ...) rather than panel.contourplot(x, y, z, subscripts, ...) which solved the problem. I
/archives/html/s-news/1998-07/msg00016.html (11,444 bytes)

6. Re: [S] tapply seems to ignore simplify: UNDOCUMENTED list-arrays and abind() (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Fri, 3 Jul 1998 20:14:29 +0200 (MET DST)
The returned object in your example is really a strange one: Quoting from the help file (WinS+3.3): "Another way of saying this is that the result is a list that has a dim attribute (this prints as a
/archives/html/s-news/1998-07/msg00041.html (12,754 bytes)

7. [S] QUERY: analogon of perspp() for trellis' wireframe() ? (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Mon, 6 Jul 1998 16:03:26 +0200 (MET DST)
If one uses the standard S+ function persp() to produce a 3d-grid plot from a model fit, one can project original data points into this grid using points(perspp()). Can someone explain how this can b
/archives/html/s-news/1998-07/msg00046.html (8,332 bytes)

8. Re: [S] Problems with S-Plus 4.5 (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Thu, 16 Jul 1998 21:14:18 +0200 (MET DST)
I have the same problem, and due to my system administrator: As far as I know the associated error message of "not enough memory" is a known bug, and the problem appears in combination with an old ve
/archives/html/s-news/1998-07/msg00127.html (9,531 bytes)

9. Re: [S] Challenge: does a faster simple bootstrap algorithm exist? (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Mon, 15 Jun 1998 18:31:05 +0200 (MET DST)
The FDA draft on bioequivalence http://www.fda.gov/cder/bioequivdata/index.htm states that BCa intervals should not be used. Why is that? Is this position widely accepted? Any pointers to literature?
/archives/html/s-news/1998-06/msg00106.html (9,021 bytes)

10. [S] BUG REPORT: odd behaviour of approx() if method="constant" (6/98) (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Fri, 19 Jun 1998 17:37:58 +0200 (MET DST)
(Checked with WinS+3.3 under Win3.11 WinS+4.0 under Win95 UnixS+ Version 3.2 Release 1 for Sun SPARC, SunOS 5.x : 1993 ) method="constant" means that instead of linear approximation a fixed mixture o
/archives/html/s-news/1998-06/msg00153.html (9,374 bytes)

11. Re: [S] scope rules (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Thu, 25 Jun 1998 19:57:50 +0200 (MET DST)
in S+ no function has automatic access to any local variables of any parent functions FOR SECURITY REASONS (except for objects in frames 0+1). The whole thing belongs to structured programming, the
/archives/html/s-news/1998-06/msg00190.html (10,633 bytes)

12. [S] On defining functions within functions: a function might be invisible to itself (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Thu, 25 Jun 1998 20:45:06 +0200 (MET DST)
test <- function(x=1){ if (x==1) test(2) else "OldTest" } [1] "OldTest" test2 <- function(){ test <- function(x=1){ if (x==1) test(2) else "NewTest" } test() } [1] "OldTest" test2 <- function(){ tes
/archives/html/s-news/1998-06/msg00191.html (8,831 bytes)

13. [S] scope rules and references (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Tue, 30 Jun 1998 14:04:27 +0200 (MET DST)
I can't resist adding to this discussion, as an experienced, but not top5%-user: (1) I think Frank Harrell has demonstrated, what can be reached by consequently designing an integrated modelling syst
/archives/html/s-news/1998-06/msg00229.html (11,725 bytes)

14. [S] SUMMARY: distances on German map (library map) (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Wed, 20 May 1998 22:13:53 +0200 (MET DST)
7
/archives/html/s-news/1998-05/msg00189.html (11,556 bytes)

15. Re: [S] Comments on Concerns over New Versions of S-PLUS for Windows (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Mon, 25 May 1998 23:22:17 +0200 (MET DST)
t
/archives/html/s-news/1998-05/msg00258.html (11,847 bytes)

16. Re: [S] FUNCTION replicated() (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Fri, 29 May 1998 15:36:42 +0200 (MET DST)
u
/archives/html/s-news/1998-05/msg00321.html (10,295 bytes)

17. [S] QUERY: distances on German map (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Tue, 7 Apr 1998 17:20:43 +0200 (MET DST)
Dear collegues, we want to visualize the distances, 1200 patients travelled to 45 hospitals all over Germany. At least we want to find out the distances they travelled. The information available is t
/archives/html/s-news/1998-04/msg00055.html (8,025 bytes)

18. Re: [S] Recoding slope aspect values (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Wed, 8 Apr 1998 19:30:28 +0200 (MET DST)
The cut task can be done with the following function cut.degree(). functions and example follow Best regards Jens Oehlschlaegel cut.degrees <- function(d, start.d=-45, breaks=4, max.d=360){ if (start
/archives/html/s-news/1998-04/msg00073.html (11,136 bytes)

19. Re: [S] applying a function element-wise to two lists (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Tue, 14 Apr 1998 21:28:08 +0200 (MET DST)
I would like to re-post the question based upon the following Pentium133, 64MB) at all, see below n <- 10000 y <- x <- as.list(1:n) a <- proc.time() z <- list () for (i in 1:length(x))z[[i]] <- x[[i]
/archives/html/s-news/1998-04/msg00111.html (10,053 bytes)

20. [S] QUERY: World map for WinS+4.0 ? (score: 1)
Author: Jens Oehlschlaegel <oehl@Psyres-Stuttgart.DE>
Date: Wed, 15 Apr 1998 16:33:18 +0200 (MET DST)
I found world.tar.Z and world2.tar.Z at statlib/maps, but those look much like unix versions. Where do I find versions/instructions suitable for WinS+4.0 ? Thanks for any help Best regards Jens Oehls
/archives/html/s-news/1998-04/msg00116.html (7,592 bytes)


This search system is powered by Namazu