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.

683 results for “from:Chuck Cleland”

Request
Chuck Cleland · Mar 27, 2003 · r-help

An HTML attachment was scrubbed... URL: https://stat.ethz.ch/pipermail/r-help/attachments/20030327/0726248e/attachment.html

Adding mean values to boxplots
Chuck Cleland · Mar 16, 2012 · r-help

That works great by the way. Thanks very much for your help! -- View this message in context: http://r.789695.n4.nabble.com/Adding-mean-values-to-boxplots-tp4474700p4478031.html Sent from the R help mailing list archive at Nabble...

Adding mean values to boxplots
Chuck Cleland · Mar 15, 2012 · r-help

Great. Thanks very much for that... and for pointing out the obvious error! Much appreciated. Tom -- View this message in context: http://r.789695.n4.nabble.com/Adding-mean-values-to-boxplots-tp4474700p4475472.html Sent from the R help mailing...

Reading formated databases
Chuck Cleland · Dec 8, 2003 · r-help

Kenneth Cabrera wrote: > How can I read an ascii database that is controled by the column number? ?read.fwf -- Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd Street, 8th floor New York, NY 10010 tel: (212) 845-4495 (Tu...

Concatenate vector into string
Chuck Cleland · Mar 4, 2005 · r-help

Matthieu Cornec wrote: > Hello, > > I would like to convert c("a","b","c") into "abc". > Anyone could help? ?paste paste(c("a","b","c"), collapse="") -- Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd Street, 8th floor New York, NY...

package contains stepAIC ?
Chuck Cleland · May 8, 2006 · r-help

help.search("stepAIC") and RSiteSearch("stepAIC", restrict="functions") show it is in package MASS. orkun wrote: > hello > > I would like to know which package contains stepAIC > function ? > > regards > -- Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd Street, 8th floor...

mannwitney
Chuck Cleland · May 12, 2004 · r-help

See ?wilcox.test. In particular, see the details section. Margarida J??lia Rodrigues Igreja wrote: > I would like to do a MannWitney test. > Can anyone help me with the propper command? -- Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd...

show time?
Chuck Cleland · Mar 7, 2005 · r-help

?Sys.time() > Sys.time() [1] "2005-03-07 07:32:57 Eastern Standard Time" XP Sun wrote: > hi, all, > > how to show time? what is the command? > > thank you in advance! -- Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd...

Detect the presence of an object
Chuck Cleland · Jan 30, 2004 · r-help

Francisco J Molina wrote: > Is there a function like "is.there" such that > > is.there ( a ) returns TRUE is object 'a' is in the current environment and > FALSE otherwise? ?exists -- Chuck Cleland, Ph.D. NDRI, Inc. 71 West 23rd Street...

Sampling from a Data Frame
Chuck Cleland · Apr 4, 2003 · r-help

Ko-Kang Kevin Wang wrote: > I've been looking through the documentation for sample(), but can only get > it to work with vectors. Is it possible to sample from a dataframe? Do you want to sample rows from a single...

Question
Chuck Cleland · Apr 9, 2004 · r-help

which(matrix(rnorm(30), ncol=3) > 1, arr.ind = TRUE) See ?which Ivan Yegorov wrote: > Could you please help me. How can I get indexes of matrix elements equal to the specified value. Thanks in advance. -- Chuck Cleland, Ph.D...

Regexpr with "."
Chuck Cleland · Aug 13, 2003 · r-help

Thompson, Trevor wrote: > I'm trying to use the regexpr function to locate the decimal in a character > string. Regardless of the position of the decimal, the function returns 1. > For example, > >>regexpr(".", "Female.Alabama") You probably want backslashes to...

rnorm
Chuck Cleland · Mar 23, 2006 · r-help

linda.s wrote: > just curious, why put "r" in the "rnorm" for The Normal Distribution? From ?rnorm Value: 'dnorm' gives the density, 'pnorm' gives the distribution function, 'qnorm' gives the quantile function, and 'rnorm' generates random deviates. -- Chuck Cleland, Ph...

grep
Chuck Cleland · Mar 12, 2004 · r-help

Ernesto Jardim wrote: > I want to use the first digit of the elements of a vector. > > I've tried grep but didn't work. > > Any help is welcome. substr(as.character(runif(100,0,2)), 1, 1) see ?substr -- Chuck...

missing values
Chuck Cleland · Jun 27, 2002 · r-help

Ulrich Leopold wrote: > how can I exclude the missing values in the following example: > > tapply(lsk0t50$Pox2, lsk0t50$ProfN, sum) tapply(lsk0t50$Pox2, lsk0t50$ProfN, function(x){sum(na.omit(x))}) Hope it helps, Chuck -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read...

sunrise sunset calculations
Chuck Cleland · Jul 15, 2008 · r-help

On 7/15/2008 12:52 PM, stephen sefick wrote: > Does anyone know if there is a sunrise sunset calculator for R? RSiteSearch("sunrise", restrict="function") points to several related functions in the maptools package. -- Chuck Cleland, Ph.D. NDRI...

sequences
Chuck Cleland · Jul 3, 2007 · r-help

livia wrote: > Hi, I would like to generate a series in the following form (0.8^1, 0.8^2, > ..., 0.8^600) > Could anyone tell me how can I achieve that? I am really new to R. 8^(1...

multiple numerical variables in aov
Chuck Cleland · Apr 11, 2003 · r-help

Rishabh Gupta wrote: > I want something like > aov(v1 + v2 + v3 ~ g) > Essentially I want to find out whether the variables v1, v2, v3, etc can collectively discriminate > between different values of variable g. Could somebody tell whether this is...

complex samping designs
Chuck Cleland · Jan 30, 2007 · r-help

David Kaplan wrote: > Hi all, > > Is there a package available in R that can be used in conjunction with > statistical procedures to weight observations for unequal probability of > selection? http://cran.r-project.org/doc/packages/survey.pdf RSiteSearch("complex...

Removing variables
Chuck Cleland · Aug 13, 2003 · r-help

Aurora Torrente wrote: > Is there any way to remove at the same time several variables that share > a suffix, for example (similar to * or ? in DOS) ? To remove objects sharing a suffix use something like: remove(list=objects(pattern="SUFFIX...

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