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.

102 results for “from:Rune”

Bisection in R
Rune · Dec 3, 2002 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20021203/321cf82b/attachment.pl

Creating named lists
Rune Schjellerup Philosof · Mar 12, 2010 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20100312/ea9a3523/attachment.pl>

Creating named lists
Rune Schjellerup Philosof · Mar 12, 2010 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20100312/424f060c/attachment.pl>

Creating named lists
Rune Schjellerup Philosof · Mar 12, 2010 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20100312/cfe2b02c/attachment.pl>

Longitudinal categorical response data
Rune Haubo · Mar 26, 2011 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20110326/04b6a583/attachment.pl>

Find correlation in Clmm?
Rune Haubo · Sep 11, 2012 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120911/7780d79b/attachment.pl>

TukeyHSDs function (pgirmess package)
Rune Vejen Petersen · Apr 10, 2006 · r-help

An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20060410/054ed593/attachment.pl

How to use stable release in Ubuntu
Rune Juhl · Apr 7, 2014 · r-sig-debian

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-sig-debian/attachments/20140407/b0cb6dfe/attachment.pl>

R 3.1.0 Beta installed but I'm not sure how
Rune Juhl · Apr 1, 2014 · r-sig-debian

An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-sig-debian/attachments/20140402/2ea0ccea/attachment.pl>

r-base-core on Ubuntu 13.04 x86_64
Rune Juhl · Apr 29, 2013 · r-sig-debian

Hi, r-base-core 3.0.0-2raring2 (among other packages) is only available for i386 at the moment. Will the repo be updated in the "nearest" future? Is there a problem compiling v3 on x86_64? Thank you Rune

splinefun and interpSpline
Rune Schjellerup Philosof · Nov 6, 2008 · r-help

On the splinefun help page it refers to the interpSpline function from the splines package. What are the differences in the results, other than splinefun returns a function and with interpSpline you use predict. The only difference from the help...

multilevel binary and ordered regression models
Rune Haubo · Jun 6, 2013 · r-help

On 6 June 2013 00:13, Xu Jun <junxu.r at gmail.com> wrote: > Dear r-helpers, > > I have two questions on multilevel binary and ordered regression models, > respectively: > > 1. Is there any r function (like lmer or glmer) to...

Redblack tree data structure
Rune Schjellerup Philosof · Sep 4, 2009 · r-help

I need to use a red-black tree, which package provides that data structure? -- Best regards Rune Schjellerup Philosof Ph.d-stipendiat, Forskningsenheden for Biostatistik Telefon: 6550 3607 E-mail: rphilosof at health.sdu.dk Adresse: J.B. Winsl?wsvej...

multicore mclapply hangs
Rune Schjellerup Philosof · Aug 10, 2009 · r-devel

When I execute mclapply it creates the needed processes, but these processes never begin computing anything, they just wait indefinitely. I recently upgraded to version 2.9.1, which might have caused the problem. -- Med venlig hilsen Rune Schjellerup Philosof...

Creating named lists
Rune Schjellerup Philosof · Mar 12, 2010 · r-help

I often find myself making lists similar to this list(var1=var1, var2=var2) It doesn't seem list has an option, to make it use the name of the variable as name in the list. Is there another function...

outputting functions in lapply
Rune Schjellerup Philosof · Dec 7, 2009 · r-help

How come the k is 3 in all of this output? I expected it to be equal to r. > tmp3 <- lapply(1:3, function(k) function(r) print(paste(r, "<- r | k ->", k))) > for (i in 1:3) { tmp3[[i...

debug: mtrace(fun, FALSE) doesn't work for me
Rune Schjellerup Philosof · Aug 3, 2009 · r-devel

Hi tmp <- function(t=1) t+1 mtrace(tmp) mtrace(tmp) #Re-applying trace... #Error in `[[<-`(`*tmp*`, 1, value = list(t + 1)) : # incompatible types (from list to expression) in [[ assignment I think this used to work on my computer. A...

cmd-return in editor does not go to next line
Rune Maagensen · Mar 4, 2008 · r-sig-mac

I've just started using R 2.62 on OSX 10.4.11 on a macbook 2,1 and found that in the Editor on Windows ctrl-R runs the current line and goes to the next line. On Mac...

R thread safe
Rune Schjellerup Philosof · Mar 18, 2009 · r-devel

Simon Urbanek wrote: > On Mar 18, 2009, at 8:59 , Rune Schjellerup Philosof wrote: >> A simple example of use: >> data1 <- data2 <- matrix(0, r, c) >> dataFiller <- function(i) { >> tmp <- someCalculation(i) >> data1[, i] <<- tmp$result1 >> data2[, i] <<- tmp$result2 >> } >> runParallelInThreads...

eval parent.frame() twice
Rune Schjellerup Philosof · Aug 7, 2009 · r-help

Hi I want to use a function (update) that in its body uses eval(call, parent.frame()) I would like to use this function in a function that does not contain the variables referred to in 'call'. Those variables are...

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