Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

34 results for “from:Trenkler, Dietrich”

GHK simulator
Trenkler, Dietrich · Jul 15, 2004 · r-help

Dear R-community, not to re-invent the wheel I wonder if someone of you has ever written a function to compute the GHK smooth recursive simulator to estimate multivariate normal probabilities. See for instance page 194 of @BOOK{Greene97...

Polya distribution
Trenkler, Dietrich · Nov 20, 2002 · r-help

Dear all, I wonder if there is a package available including functions to compute probabilities, quantiles and random numbers (d..., p..., q...,r...) for the Polya distribution. Thanks in advance. Dietrich Trenkler -- Dietrich Trenkler Universit?t Osnabr?ck FB Wirtschaftswissenschaften...

3dim histogram?
Trenkler, Dietrich · Oct 5, 2001 · r-help

Hello all, I wonder if there is a package including a program to display a 3dim histogram. Thanks. --- D.Trenkler --- **************************************************************************** ***** Dr. Dietrich Trenkler (dtrenkler at nts6.oec.uni-osnabrueck.de) Statistik / Empirische Wirtschaftsforschung Universitaet Osnabrueck Rolandstrasse 8 Phone: +49(0...

Writing a tabel in LaTeX-format
Trenkler, Dietrich · Sep 7, 2000 · r-help

Diego Kuonen wrote: > Does anybody know if Knut Suebert's library "tex" is available for > download and testing? Here you are: <<R2latex.zip>> --- D.Trenkler --- ************************************************************************ ********* Dr. Dietrich Trenkler (dtrenkler at oec.uni-osnabrueck.de) Statistik / Empirische Wirtschaftsforschung Universitaet Osnabrueck Rolandstrasse...

Label using equivalent of \mathbb{R}
Trenkler, Dietrich · Aug 26, 2004 · r-help

> -----Original Message----- > From: Simon Cullen > Sent: Thursday, August 26, 2004 1:26 PM > To: r-help at stat.math.ethz.ch > Subject: [R] Label using equivalent of \mathbb{R} > > Hi, > > I'm trying to label the horizontal axis of a...

Erlang distribution
Trenkler, Dietrich · Aug 19, 2004 · r-help

> -----Original Message----- > From: Nils Aschenbruck > Sent: Thursday, August 19, 2004 11:51 AM > To: r-help at stat.math.ethz.ch > Subject: [R] Erlang distribution > > > Hello, > > is there a packet that supports the Erlang distribution? > > I want to use this...

Bug in qnorm or pnorm?
Trenkler, Dietrich · Aug 6, 2004 · r-help

> -----Original Message----- > From: Deepayan Sarkar > Sent: Friday, August 06, 2004 3:31 PM > To: r-help at stat.math.ethz.ch > Subject: Re: [R] Bug in qnorm or pnorm? > > On Friday 06 August 2004 08:13, Trenkler, Dietrich wrote: > > > Given...

Bug in pexp (PR#1590)
Trenkler, Dietrich · May 22, 2002 · r-devel

I wonder if something like this has been reported before: > pexp(85:86,0.438) [1] 1 -Inf --please do not edit the information below-- Version: platform = i386-pc-mingw32 arch = i386 os = mingw32 system = i386, mingw32 status = major = 1...

Generating Rd format under Windows
Trenkler, Dietrich · Apr 6, 2000 · r-help

Excuse me if this question has been answered before. I just came across "Writing R documentation" in the "Writing R extensions" manual. Under section 2.9: "Processing Rd format" I only find hints at generating the Rd format on a...

Elementwise c() for lists
Trenkler, Dietrich · Mar 20, 2000 · r-help

I have two lists of equal lengths. Each one consists of vectors. Is there an elegant way to combine them elementwise? Elegant means: without loops. For instance, for > jja_list(1:3,4:7) > jjb_list(rep(0,4),(2...

AW: Permutations
Trenkler, Dietrich · Dec 17, 2000 · r-help

Niels Waller wrote: > Does anyone know of an R (or S-PLUS) function for delineating all possible > combinations and permutations? The following function delivers all permutations of 1:n. all.perm <- function(n) { p <- matrix(1, ncol = 1) for (i...

plotting a table together with graphs
Trenkler, Dietrich · Jul 13, 2004 · r-help

> -----Original Message----- > From: Federico Calboli > Sent: Tuesday, July 13, 2004 6:06 PM > To: r-help > Subject: [R] plotting a table together with graphs > > Dear All, > > I would like to ask how to add a table to a "matrix" of...

matrix exponential: M^0
Trenkler, Dietrich · Jan 20, 2004 · r-help

> -----Original Message----- > From: Federico Calboli > Sent: Tuesday, January 20, 2004 5:40 PM > To: r-help > Subject: [R] matrix exponential: M^0 > > I would like to ask why the zeroeth power of a matrix gives me a matrix > of ones...

Bug in qnorm or pnorm?
Trenkler, Dietrich · Aug 6, 2004 · r-help

I found the following strange behavior using qnorm() and pnorm(): > x<-8.21;x-qnorm(pnorm(x)) [1] 0.0004638484 > x<-8.22;x-qnorm(pnorm(x)) [1] 0.01046385 > x<-8.23;x-qnorm(pnorm(x)) [1] 0.02046385...

choose(n, k) for k>n: An inconsistency?
Trenkler, Dietrich · Dec 13, 2000 · r-help

It took me by surprise to find that choose(4,5) delivers [1] NaN Warning message: NaNs produced in: choose(n, k) If we look at choose(4,5) as the number of ways of choosing 5 objects from 4...

Bug in sub? (PR#487)
Trenkler, Dietrich · Mar 14, 2000 · r-devel

I suspect that there is bug in sub when using "?": > string_"This is a bug!" > sub("!", ", or isn't it?", string) [1] "This is a bug, or isn't it?" > string_"This is a bug?" > sub("?", ", or isn't it...

AW: [Rd] anova-bug in R-version 1.0.0? (PR#470)
Trenkler, Dietrich · Mar 7, 2000 · r-devel

I think I've discovered what went wrong. My workspace included a function wilcox.test formerly copied from ctest. Now ctest ist part of the distribution and because of that I always got the message: [Previously saved workspace restored] Error...

AW: [Rd] anova-bug in R-version 1.0.0? (PR#470)
Trenkler, Dietrich · Mar 7, 2000 · r-devel

I think I've discovered what went wrong. My workspace included a function wilcox.test formerly copied from ctest. Now ctest ist part of the distribution and because of that I always got the message: [Previously saved workspace restored] Error...

weibull test
Trenkler, Dietrich · Dec 19, 2002 · r-help

> -----Original Message----- > From: Meriema BELAIDOUNI > Sent: Wednesday, December 18, 2002 11:19 AM > To: R-help at stat.math.ethz.ch > Subject: [R] weibull test > > Hello > What is the appropriate method to test if a given distribution is a > weibull...

Two factor ANOVA with lm()
Trenkler, Dietrich · Aug 23, 2004 · r-help

> -----Original Message----- > From: Prof Brian Ripley > Sent: Monday, August 23, 2004 1:15 PM > To: Trenkler, Dietrich > Subject: Re: [R] Two factor ANOVA with lm() > > On Mon, 23 Aug 2004, Trenkler, Dietrich wrote: > > [...] > > > outset? Or put another way: Why is...

Can't find what you're looking for? Try searching with Google .