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.

17 results for “from:Ethan Brown”

(no subject)
Ethan Brown · Jun 20, 2011 · r-help

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

giving factor names
Ethan Brown · Jun 10, 2011 · r-help

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

Help with Median test and Coxon-Mann-Whittney test
Ethan Brown · Jun 11, 2011 · r-help

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

Problem loading packages in R 2.13.0 on Mac
Ethan Brown · Jun 10, 2011 · r-help

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

Drop values of one dataframe based on the value of another
Ethan Brown · Jun 1, 2012 · r-help

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

Writing R code for "moments"
Ethan Brown · Oct 8, 2010 · r-help

Hi July, You might want to check out the "moments" package. It has a couple functions, "all.moments()" and "moment()" that will compute these for you. By the way, "RSeek.org" is a great place to find packages like this...

Sorting DataFrames
Ethan Brown · Jun 7, 2011 · r-help

Hello Samantha, I'm having some trouble understanding your question in terms of what's happening in R. Are these "bins" columns of a data.frame? Rows? It's helpful for us to have a small example to look at...

VLOOKUP in R - tried everything.
Ethan Brown · Jun 3, 2011 · r-help

Even after I discovered match(), it took me a little while to figure out how to use it for this task, so to add on to Peter's comment--to add a column for total for each value of "coll...

determine size (width and height) of a graphics file via R - how?
Ethan Brown · May 14, 2012 · r-help

Hi Mark, You can do this easily with the "identify" command in ImageMagick <http://www.imagemagick.org>. Install it, and then from within an R session: system2("identify", "yourimagename.jpg") ...and it should give you something like this: yourimagename.jpg...

Question about example function
Ethan Brown · Jun 5, 2011 · r-help

Hi Abhilash, >From ?example, under "arguments": local: logical: if ?TRUE? evaluate locally, if ?FALSE? evaluate in the workspace. So all you need to do is: > x <- 0 > example(mean, local=TRUE) mean> x <- c(0:10, 50) mean> xm <- mean...

Question with RExcel
Ethan Brown · Jun 6, 2011 · r-help

It's hard to see where the problem is from this information. I would suggest subscribing to and asking this question of the RExcel mailing list (accessible from http://rcom.univie.ac.at/) and providing more detail of what you...

Merge two columns of a data frame
Ethan Brown · Jun 6, 2011 · r-help

Another possibility: dfs <- list(df1, df2, df3) df.1.2.3 <- as.data.frame(unlist(sapply(dfs, function(x) do.call(paste, x)))) On Mon, Jun 6, 2011 at 2:37 PM, Ista Zahn <izahn at psych.rochester.edu> wrote...

write data using xlsReadWrite
Ethan Brown · May 14, 2012 · r-help

You're trying to write an object that you've never created. If you want to write `varHL2y`, which it appears you do, you would replace that for `mydata` in your command. Best, Ethan On Sun, May 13, 2012 at...

using a package function inside another function
Ethan Brown · Oct 7, 2010 · r-help

Hi Alison, By default, a function in R creates a copy of the variable that you pass into it. insertRow() looks to be unusual in that it actually changes the variable you pass into the function. So if you run...

Strange "Error: subscript out of bounds"
Ethan Brown · May 11, 2012 · r-help

Hi, this looks like a typo to me. The name of the argument to your function is 'pre.mat', but you're trying to print an object called 'pred.mat' (with an extra 'd') that never appears before. It's...

(no subject)
Ethan Brown · Jun 20, 2011 · r-help

Hi Ungku, your error is in your call to lda.default; the object that you want to plot, lda_result, is thus not created and cannot be plotted. The error you're getting with LDA doesn't look to be...

Converting scraped data
Ethan Brown · Oct 6, 2010 · r-help

Hi Simon, You'll notice the "test" data.frame has a whole mix of characters in the columns you're interested, including a "-" for missing values, and that the columns you're interested in are in fact factors. as.numeric...

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