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.

49 results for “from:Jonathan Daily”

setting options only inside functions
Jonathan Daily · Apr 28, 2011 · r-help

I would also love to see this implemented in R, as my current solution to the issue of doing tons of open/close, dev/dev.off, etc. is to use snippets in my IDE, and in the end I feel...

R won't start keeps crashing
Jonathan Daily · May 12, 2011 · r-help

This is not very informative. What exactly is crashing? What is your sessionInfo() output? On Thu, May 12, 2011 at 7:57 AM, Bazman76 <h_a_patience at hotmail.com> wrote: > OK I did a seach for the files and...

ARM package for R 2.10.1
Jonathan Daily · Jun 2, 2011 · r-help

I would recommend trying to fix the installation of R 2.13.0 rather than trying to obtain old packages. Try downloading the installer again from a different mirror. On Thu, Jun 2, 2011 at 10:33 AM, jmdpulido <jmdpulido...

Decision Trees /Decision Analysis with R?
Jonathan Daily · Jun 8, 2011 · r-help

See packages rpart, randomForest, party. Also, typing "R Decision Trees" produced good google results. http://www.google.com/search?aq=f&sourceid=chrome&ie=UTF-8&q=R+Decision+Trees On Wed, Jun 8, 2011 at 7:02 AM, stefan...

Adapting R code for different traps
Jonathan Daily · Jun 9, 2011 · r-help

OK, Assume all your trap names are stored in a vector trap.names. Does: sapply(trap.names, FUN = function(x) { tmp. <- outer(release.days[Trap==x],collection.days.2[Trap==x],'-') tmp <- ifelse(temp.ACAP1>=0,NA,temp.ACAP1) return...

where two matrices differ?
Jonathan Daily · May 31, 2011 · r-help

Does this work for you? which(is.nan(mat1 %% mat2), arr.ind = T) On Tue, May 31, 2011 at 10:52 AM, Alaios <alaios at yahoo.com> wrote: > Thanks alot. > Unfortunately I can not apply this to much bigger matrices...

R in batch mode
Jonathan Daily · May 24, 2011 · r-help

Save it anywhere that is on your search path, which can be seen by typing path into the command line. On Tue, May 24, 2011 at 12:40 PM, Muhuri, Pradip (SAMHSA/CBHSQ) <Pradip.Muhuri at samhsa.hhs.gov> wrote...

Adapting R code for different traps
Jonathan Daily · Jun 9, 2011 · r-help

Hi Ben, Unfortunately, I left the usb cable for my crystal ball at home, and thus have no idea how your data is organized. Could you post an example along with what you expect the output to be? Jon On...

qplot fill and colour not working as expected
Jonathan Daily · Jun 6, 2011 · r-help

One difference between colour and fill can be demonstrated by specifying both with different values. In cases where a polygon is filled, colour specifies border line color. On Mon, Jun 6, 2011 at 9:49 AM, wwreith <reith_william at...

Data Frame housekeeping
Jonathan Daily · May 24, 2011 · r-help

My suggestion, since bold doesn't show up in a text only mailing list, would be to look into the function ?aggregate. It looks like something like (assuming your data is in a mydat): mydat.new <- aggregate(cbind(STN_ID...

Building Custom GUIs for R
Jonathan Daily · May 20, 2011 · r-help

Some good tcltk examples can be found online [1]. I have also found the fgui package on CRAN [2], though I have not actually used it yet. [1] http://bioinf.wehi.edu.au/~wettenhall/RTclTkExamples/ [2] http://cran.cnr.berkeley...

Simple loop
Jonathan Daily · May 3, 2011 · r-help

It is actually possible and preferable to do this with no loops. Assuming your data is in a dataframe called dat: idx <- with(dat, Site == 1 & Prof == 1) dat <- within(dat, { new = H - ifelse(Site == 1 & Prof == 1, min(H...

Put names in the elements of lapply result
Jonathan Daily · May 27, 2011 · r-help

Does this work for you? dat <- lapply(c('EMAX','EC50','KOUT','GAMMA'),function(x)confint(lm(get(x)~RR0,dataset2))) names(dat) <- c('EMAX','EC50','KOUT','GAMMA') On Fri, May 27, 2011 at 10:03 AM, Jun Shen <jun.shen...

Read in from multiple Excel wksheets
Jonathan Daily · Jun 14, 2011 · r-help

Java uses "heap space" when creating new objects. My guess is that since the default size is 128 Mb iirc, you are reading in an object larger than this. I don't know the guts of the xlsx package or...

Problems with Rterm 2.13.0 - but not RGui
Jonathan Daily · May 2, 2011 · r-help

The message is pretty clear. Access denied means you don't have permission to access the path. This also explains why the packages fail to load - you don't have access to R's package library. It most likely works...

creating a vector from a file
Jonathan Daily · May 31, 2011 · r-help

So you need to read a file into R in that format? Try changing the values in ?read.table. Using the example, I was able to get the data using: read.table("clipboard", sep = "=", header = F, colClasses = c("character", "numeric...

Processing large datasets
Jonathan Daily · May 25, 2011 · r-help

In cases where I have to parse through large datasets that will not fit into R's memory, I will grab relevant data using SQL and then analyze said data using R. There are several packages designed to do this...

Unable to Plot using headers.
Jonathan Daily · May 27, 2011 · r-help

I would caution against using attach(), however, if you are not in an interactive session. In functions and scripts, errors can often cause the interpreter to exit before the detach(), leaving your data on the search path. 99% of all...

what happens when I store linear models in an array?
Jonathan Daily · May 4, 2011 · r-help

It looks like your call: lms.ASP[1,1] <- list(surf105.lm.ASP) makes a list of length 1 containing the lm object and puts that list into element [1,1] of your array. That is why you will need...

Speed up an R code
Jonathan Daily · May 27, 2011 · r-help

This is a very open ended question that depends very heavily on what you are trying to do and how you are doing it. Often times, the bottleneck operations that limit speed the most are not necessarily sped up by...

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