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.

550 results for “from:Jens”

How to deal with more than 6GB dataset using R?
Jens Oehlschlägel · Jul 28, 2010 · r-help

Matthew, You might want to look at function read.table.ffdf in the ff package, which can read large csv files in chunks and store the result in a binary format on disk that can be quickly accessed from R...

Question concerning library function "nlme" and lexical scoping
Jens_Praestgaard@hgsi.com · Mar 10, 2004 · r-help

I am running into problems calling the library function nlme from within another function. Basically,the following function (with v a list containing data and initialization values) > testfunc function(dat=v) { test<-nlsList(result~a+(b-a)/(1+(conc/(c...

Date: Thu, 26 Sep 2002 12:13:33 +0200
Jens Nieschulze · Sep 26, 2002 · r-help

On Thu, 26 Sep 2002, Nolwenn Le Meur wrote: %How can I give the name of my data frame to the output file ? % %exp: %mydata<-read.table(mydata,..) %... %... %write.table(x, file="c:/" mydata,...) write.tbale(x,file=paste("c...

[Bioc-devel] Add journal citation to a package
Wong, Chao-Jen · Dec 28, 2016 · bioc-devel

Hi, Andrea, This page might be helpful for you: https://www.bioconductor.org/developers/package-guidelines/#vignettes. The "Write R extensions" manual also explaines how to write a citation file: https://cran.r-project.org/doc/manuals/r-release/R...

Subscripting fails if name of element is "" (PR#8161)
Jens Oehlschlägel · Oct 6, 2005 · r-devel

Dear Thomas, > This looks deliberate (there is a function NonNullStringMatch that does > the matching). I assume this is because there is no other way to > indicate that an element has no name. > If so, it is a documentation bug -- help...

Attach values from polygons to points
Jens Oldeland · Sep 6, 2010 · r-sig-geo

Hi, I am working with two shapefiles in R; one is a point.shp the other is a polygon.shp. Now, I would like to intersect/join/attach all the values from the polygon to the table of the point...

analysis of function dependencies / namespacing
Jens Oehlschlägel · Aug 8, 2002 · r-help

I am going to document a 10.000 lines of R code project. Before reinventing the wheel, has anyone written a function that analyzes dependencies between R functions? I am thinking of output like caller1 calee1 caller1 calee2 caller1 : caller2...

Quick question!
Jens Nieschulze · Oct 31, 2001 · r-help

On Wed, 31 Oct 2001, Isabel Jones wrote: > Thanks very much to all who answered my question > yesterday on loops. > > Just a further quick question: > > If I have this: > > for(i in 1:n) { > subset <- data[which(data$id==i...

dist(a,b) ??? knn1?
Jens Oehlschlägel · Jun 21, 2002 · r-help

Kjetil, your suggestion is fine for small data sets, but dist() has o(2) memory and calculation time requirements. I assume that Ryszard wanted a function that does ONLY calculate distances between all combinations of two sets of data rows...

POSIX formats have problems with NA (PR#1732)
Jens Oehlschlägel · Jul 3, 2002 · r-devel

Brian, Thanks for answering. > This feature request is already implemented in R-devel. good to know that it is done in R-devel > It is not a bug, as why should logical NA be convertible to any other > format? Why...

Graphics-Device-Size vs. Window-Size
Jens Oehlschlägel · Nov 8, 2000 · r-help

I want to layout on screen a graphic bigger than the screen (width=16.53543, height=11.69291) but strwidth() and strheight() give wrong results. > x11(width=42/2.54, height=29.7/2.54, pointsize=12) > plot(1,1...

R Graphics: Saving PDF and other formats from Windows Graphic Device for LaTeX
Jens Scheidtmann · Oct 4, 2006 · r-help

Anupam Tyagi <AnupTyagi at yahoo.com> writes: [...] > What is the best format to save R graphics for inclusion into a > LaTeX documents? When using pdflatex use pdf for graphics as reference format. Using ps2pdf or some such may have some...

Legend with fill = gray ?
Jens Oldeland · Sep 1, 2010 · r-help

Hi, I am facing a problem with the legend, I don?t know how to use the fill option in the legend in order to achieve the same standard gray levels that are plotted. Sorry for this easy one, but...

Which are the most suitable, elegant or efficient packages for geographical maps in R? Which did you use yourself?
Markus Jenning · Jul 23, 2013 · r-sig-geo

Hi everyone. I remember some very interesting and professional-looking R projects that somehow involved geographical maps. Now that I'd like to work with maps myself, let me ask you this question: Which of the packages that are currently...

glmer Z-test with individual random effects
Jens Åström · Nov 11, 2010 · r-sig-mixed-models

Dear list, As I have read (Bolker et al. 2009 TREE), the Wald Z test is only appropriate for GLMMs in cases without overdispersion. Assuming we use family=poisson with lmer and tackle overdispersion by incorporating an individual random effect...

standing ovations
Jens Oehlschlägel-Akiyoshi · Feb 29, 2000 · r-help

I think this is a moment to lean back from daily business, details or whatsoever and appreciate the impressive achievment of Ross, Robert and the R-core team. Incredible! They created an impressive and extremely useful software, for teaching, research...

using two distance metrices in formula
Jens Oldeland · Oct 13, 2009 · r-sig-ecology

Dear R-sig-ecology group, is there a way to use two self-made dissimilarity matrices for the left-hand side (LHS) and right hand side (RHS) in vegan functions such as capscale or adonis? I created those matrices in...

Whitespace matters in else construct (PR#1125)
jens.lund@nordea.com · Oct 10, 2001 · r-devel

Full_Name: Jens Lund Version: 1.3.1 OS: Windows Submission from: (NULL) (194.239.194.210) Whitespace matters in else constructions; a newline does not seem to be allowed in front of else: # Valid input examples if (F) { print...

bringToTop() fails (PR#818)
Jens Oehlschlägel · Jan 19, 2001 · r-devel

windows() plot(1,1) windows() plot(1:2,1:2) dev.list() # we have devices 2 and 3 # device 3 is active and in front bringToTop(2) # does not work bringToTop(3) # does not work also Regards Jens Oehlschlaegel --please...

Pass By Value Questions
Jens Oehlschlägel · Aug 20, 2010 · r-help

Jeff, R has 'environments' as a general mechanism to pass around objects by reference. However, that does not help with most functions like 'apply' which take arguments other than environments. > I'm familiar with FF and BigMemory, but are there...

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