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.

216 results for “from:Bjørn-Helge Mevik”

NotePad++ Syntax file
Bjørn-Helge Mevik · Aug 11, 2009 · r-help

"[Ricardo Rodriguez] Your XEN ICT Team" <webmaster at xen.net> writes: > John Kane wrote: >> No but have you had a look at Tinn-R http://www.sciviews.org/Tinn-R/. > > Any similar option for Mac OS X? I guess you...

CRAN + geography = Cranography
Bjørn-Helge Mevik · Jul 31, 2009 · r-help

Barry Rowlingson <b.rowlingson at lancaster.ac.uk> writes: > http://www.maths.lancs.ac.uk/~rowlings/R/Cranography/ Absolutely beautiful! > Note this is just for fun. No warranties. Maybe I should use a little > 'R' as a marker. That would...

Generating .R and .Rd files with Sweave/noweb?
Bjørn-Helge Mevik · Jan 7, 2003 · r-help

I'm writing a couple of related functions, and I'd like to generate a (single) .R file (containing the function definitions), and separate .Rd files (documenting each function). Would this be possible with Sweave/noewb? Has anyone tried something...

About PLR
Bjørn-Helge Mevik · Apr 17, 2007 · r-help

>From within R, you can give the command > install.packages("pls") and R will download and install it for you (as long as you have access to the Internet). To install an already downloaded package, you can use R CMD...

Build optimized R : openblas, MKL, ATLAS
Bjørn-Helge Mevik · Aug 24, 2015 · r-devel

arnaud gaboury <arnaud.gaboury at gmail.com> writes: > On Mon, Aug 24, 2015 at 11:29 AM, Bj?rn-Helge Mevik > >> We regularly build the standard R against MKL, simply using > > Do you use proprietary Intel MKL or open source...

Build R with MKL and ICC
Bjørn-Helge Mevik · Sep 7, 2015 · r-devel

arnaud gaboury <arnaud.gaboury at gmail.com> writes: > Thank you for this configuration. Nothing about openmp? I believe -mkl=parallel makes sure that all relevant libraries and switches are used. But you might want to check with the manual. All...

difference between rnorm(1000, 0, 1) and running rnorm(500, 0, 1) twice
Bjørn-Helge Mevik · Feb 8, 2006 · r-help

Why don't you test it yourself? E.g., set.seed(42) bob1 <- rnorm(1000,0,1) set.seed(42) bob2 <- rnorm(500,0,1) bob3 <- rnorm(500,0,1) identical(bob1, c(bob2, bob3)) I won't tell you...

Generating balanced incomplete block designs?
Bjørn-Helge Mevik · Oct 31, 2002 · r-help

Are there any R functions for generating balanced (or nearly balanced) incomplete block designs? -- Bj?rn-Helge Mevik -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info", "help", or "[un]subscribe...

Question about PLS regression
Bjørn-Helge Mevik · Apr 19, 2006 · r-help

Andris Jankevics wrote: > But I have a sligthy different results with my real data. Where can the > problem be? I think you have to supply some details for anyone to be able to answer. At least what you did (the...

Alternative to eval(cl, parent.frame()) ?
Bjørn-Helge Mevik · Jul 13, 2013 · r-devel

peter dalgaard <pdalgd at gmail.com> writes: > We discussed this recently, and I believe the winner was > > cl[[1]] <- quote(pls::mvr) Thank you! > (notice that :: is an operator, so this is profoundly different from > as.name("pls::mvr"), which...

R-alpha_2005-03-31: make check fails on Debian 3.0
Bjørn-Helge Mevik · Apr 5, 2005 · r-devel

Prof Brian Ripley writes: > On Tue, 5 Apr 2005, Kurt Hornik wrote: > >> Can you try again with a current (SVN) version of r-devel? It passed make check without error. > You will need to test this in a non-C...

R 2.6.0 S4 data breakage, R _data_class(), class<-, etc.
Bjørn-Helge Mevik · Oct 8, 2007 · r-devel

Martin Morgan wrote: > But both 'new' and 'as' appear to produce invalid (in a different > sense, I guess) objects: > >> setClass("snp", contains="raw", > + validity=function(object) { > + if (length(object) < 1) "too short" > + else TRUE > + }) Well, you _have_ designed a class...

changing figure size in Sweave
Bjørn-Helge Mevik · Nov 18, 2005 · r-help

TEMPL Matthias wrote: > Use \setkeys{Gin} to modify figure sizes or use explicit > \includegraphics commands in combination with Sweave option > include=FALSE. Or use \documentclass[nogin,...]{...}. Then the 'Gin' will have no effect, and the size of the plots in...

significant variables in GPLS ?
Bjørn-Helge Mevik · Apr 24, 2008 · r-help

There is little theory about significance and testing for PLSR (and, I would guess, GPLSR). Many practicioners use Jackknife variance estimates as a basis for significance tests. Note, however, that these variance estimates are known to be biased (in general...

Intercept in model formulae.
Bjørn-Helge Mevik · Sep 5, 2002 · r-help

Thomas Lumley <tlumley at u.washington.edu> writes: > x10<-pmax(x,10) > lm(y~x+x10-1) I assume you meant lm(y~x+x10). -- Bj?rn-Helge Mevik -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at...

SUGGESTION: Force install.packages() to use ASCII encoding when parse():ing code?
Bjørn-Helge Mevik · Dec 12, 2014 · r-devel

Duncan Murdoch <murdoch.duncan at gmail.com> writes: > users of other languages may want to have messages and variable names > in their native language, and ASCII might not be enough for that. Allowing for messages in non-ASCII encodings would...

pls -- crossval vs plsr(..., CV=TRUE)
Bjørn-Helge Mevik · May 13, 2005 · r-help

Bj??rn-Helge Mevik writes: > There are two reasons: Actually, there is a third reason as well. :-) We've just discovered an embarrasingly stupid bug in the R2 calculation in mvrCv; it calculates R (the correlation) instead of R2 (squared...

changing figure size in Sweave
Bjørn-Helge Mevik · Nov 18, 2005 · r-help

Bj??rn-Helge Mevik wrote: > Or use \documentclass[nogin,...]{...}. Then the 'Gin' will have no > effect, and the size of the plots in the document will not be changed > from the size given as <<...,height=??,width=??>> (i.e. the size...

Different results in calculating SD of 2 numbers
Bjørn-Helge Mevik · Jan 16, 2008 · r-help

Ron Michael <ron_michael70 at yahoo.com> writes: > Can anyone tell me why I am getting different results in calculating > SD of 2 numbers ? > >> (1.25-0.95)/2 > [1] 0.15 Because this is not the SD? Try > (1...

pls 2.3.0 released
Bjørn-Helge Mevik · Dec 6, 2011 · r-packages

Version 2.3.0 of the pls package has been released. The pls package implements Partial Least Squares Regression and Principal Component Regression. The major changes are: - New analysis method Canonical Powered PLS (CPPLS) implmemented. See ?cppls.fit. - coefplot() can...

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