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.

12 results for “from:Mercier Eloi”

Matrix "BYTES" size
Mercier Eloi · May 7, 2012 · r-help

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

Alternating between "for loops"
Mercier Eloi · Aug 1, 2012 · r-help

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

plotting 0,1 data
Mercier Eloi · Aug 1, 2012 · r-help

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

Alternating between "for loops"
Mercier Eloi · Jul 31, 2012 · r-help

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

New Eyes Needed to See Syntax Error
Mercier Eloi · May 17, 2012 · r-help

On 12-05-17 04:34 PM, Rich Shepard wrote: > hco32 <- qqmath(~ log10(HCO3 | factor(basin), data = surfchem.cast, > main = 'Bicarbonate (Log10)', > prepanel = prepanel.qqmathline, > panel = function(x, ...) { > panel.qqmathline(x, ...) > panel.qqmath(x, ...) > }) Missing a closing parenthesis after log10...

Generate Dendrogram
Mercier Eloi · Apr 30, 2012 · r-help

hc.obj is not a dendrogram. plot(dend1, xlab='',ylab='',sub='', nodePar=list(pch = c(1,NA), cex=0.8, lab.cex = 0.8)) See ?plot.hclust and ?plot.dendrogram. They are not using the same arguments. Regards, Eloi On...

Use quotes on a FOR LOOP R
Mercier Eloi · Apr 24, 2012 · r-help

for (n in LIST2) print(as.character(n)) [1] "Michael" [1] "Dana" [1] "Rob" Eloi On 12-04-24 12:22 PM, R. Michael Weylandt wrote: > Don't you just want > > LIST<- as.data.frame(LIST, stringsAsFactors = FALSE) # Avoid making...

Sending lists from R to C using .C
Mercier Eloi · Apr 16, 2012 · r-help

Hi Chris, I personally found the documentation rather...indigestible. At least 3 years ago when I developed my R package. It seems they have nicely improved this part of the documentation though. I'm not an expert at all, but...

Unexpected input while building package in R
Mercier Eloi · May 8, 2012 · r-help

You did not specify any object in the function. Thus R is building the package "test" with all the objects present in your session when you are calling the package.skeleton function. I suppose that one of these objects is...

How to replace NA with zero (0)
Mercier Eloi · May 3, 2012 · r-help

> Hello, > When i generate data with the code below there appear NA as part of the generated data, i prefer to have zero (0) instead of NA on my data. > Is there a command i can issue to replace the...

Alternating between "for loops"
Mercier Eloi · Jul 30, 2012 · r-help

Or, assuming you only have 4 different elements : mat<- matrix(rep(c(1,2,"A", "B"),each=10),10,10, byrow=F) mat2 <- as.data.frame(mat) mat [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [1,] "1...

help with merging 2 data frames
Mercier Eloi · Jul 11, 2012 · r-help

This should do the trick : colnames(y)[1:2]=c("a","a") y2=rbind(y[,-1], y[,-2]) #duplicating the "y" matrix so the identifiers are only in 1 column merged = merge(x,y2) merged a b d e1 e2...

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