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.

609 results for “from:Patrick Connolly”

x11(title=' ')
Patrick Connolly · Oct 29, 2009 · r-help

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

Dealing with data frame column names beginning with a numeric
Patrick Connolly · Apr 16, 2007 · r-help

On Mon, 16-Apr-2007 at 04:29PM -0400, Gabor Grothendieck wrote: |> Try this: |> |> boxplot(data.frame(mat), names = colnames(mat)) |> Great! Now why didn't I think of that?.... -- ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~. ___ Patrick Connolly {~._.~} Great minds discuss ideas _( Y )_ Middle minds discuss...

What is the ggplot analog of the axis() function?
Patrick Connolly · Feb 16, 2020 · r-help

Using base R graphics I can customize the position of the tick marks and what text to label them by using the axis function and adjusting the `at` and `labels` parameters respectively. What theme setting do I adjust using ggplot2...

command option for R CMD BATCH
Patrick Connolly · Nov 23, 2006 · r-help

On Thu, 23-Nov-2006 at 02:44PM +0000, Prof Brian Ripley wrote: |> Try this: |> |> gannet% cat month.R |> x <- commandArgs() |> print(x[length(x)]) |> |> gannet% R --slave --args January < month.R |> [1] "January" That's exactly what I needed...

How to repress the annoying complains from X window system
Patrick Connolly · Aug 11, 2008 · r-help

On Sat, 09-Aug-2008 at 04:06PM -0700, dusa.adrian wrote: [...] |> Warning in structure(.External("dotTclObjv", objv, PACKAGE = "tcltk"), class |> = "tclObj") : |> X11 protocol error: BadWindow (invalid Window parameter) |> |> > R.version |> _ |> platform i486-pc-linux-gnu |> arch i486 Is that...

graph label greek symbol failure
Patrick Connolly · Aug 17, 2009 · r-help

On Mon, 17-Aug-2009 at 11:51AM +0100, e-letter wrote: |> Readers, |> |> Previous questions about this requirement have been for m$ users, my |> failure occurs using linux. |> |> I have tried to add the delta (?) symbol to the y axis...

Using R to create pdf's from each file in a directory
Patrick Connolly · Apr 22, 2007 · r-help

On Fri, 20-Apr-2007 at 11:10PM -0500, Jeffrey Horner wrote: |> workdir <- '/tmp/data' |> for (x in dir(workdir,pattern='.csv$')){ |> d <- read.table(paste(workdir,'/',x,sep=''), sep="\t", header=TRUE) If they're CSV files, I don...

> Understanding strip.default & strip.custom
Patrick Connolly · Jun 29, 2016 · r-help

On Mon, 27-Jun-2016 at 10:17PM -0700, Bert Gunter wrote: [...] |> |> You seem to be making this way more difficult than you should. Though I didn't get any closer to an understanding of which.panel, the question I...

How to draw three line on the same picture ?
Patrick Connolly · Dec 11, 2009 · r-help

On Thu, 10-Dec-2009 at 10:14PM -0800, z_axis wrote: |> |> The following is sampling data: |> No V1 V2 V3 |> 1 0.23 0.12 0.89 |> 2 0.11 0;56 0.12 |> ....... |> |> I just want to draw...

x-axis order
Patrick Connolly · Sep 17, 2007 · r-help

On Fri, 14-Sep-2007 at 02:18PM -0400, jim holtman wrote: |> This should do what you want. |> |> x<-c(26:52,1:25) |> y<-rnorm(52)+1:52 |> |> plot(seq_along(x), y, xaxt='n') |> axis(1, at=seq...

Can I create a timeDate object using only year and week of the year values?
Patrick Connolly · Jan 27, 2009 · r-help

On Tue, 27-Jan-2009 at 11:36AM -0500, Ted Byers wrote: [....] |> Does timeDate use the format strings used by the UNIX date(1) |> command? If so, then can I safely assume timeDate will accept |> "%Y-%U-%w", and behave...

order the plots using lattice
Patrick Connolly · Mar 6, 2008 · r-help

On Thu, 06-Mar-2008 at 12:00PM +0000, audrey wrote: [...] |> In the output, the first plot is represented in the bottom left |> corner, I would like the plots to be drawn from the top left corner |> but I cannot...

changing the Date format.
Patrick Connolly · Aug 26, 2009 · r-help

On Wed, 26-Aug-2009 at 03:48AM -0700, rajclinasia wrote: |> |> Hi everyone, |> |> i have a data frame called 'sample'. in that 'sample' data frame variable |> called 'starts' is there like this |> |> starts |> 37987 |> 37988 |> 37989 |> 37990 |> 37991 |> |> now i...

one long column of data -> three small columns
Patrick Connolly · Nov 3, 2009 · r-help

On Tue, 03-Nov-2009 at 12:26PM -0800, frenchcr wrote: |> > How do i do this? |> > |> |> ok, so matrix(x, 3, 3) works. |> |> what if i have |> |> a |> b |> c |> a |> c |> a |> c |> |> and want |> |> a b c |> a...

Saving a big table or matrix
Patrick Connolly · Feb 3, 2008 · r-help

On Fri, 01-Feb-2008 at 03:23PM +0200, Atte Tenkanen wrote: |> I had a problem: |> |> I saved a matrix: |> |> > save(Tondistmatrix1, file="/Users/atte/Skriptit/Tondistmatrix1") |> |> then I tried to open it with R: |> > Tondistmatrix1=load("/Users/atte/Skriptit...

Predictions from lme and lmer models
Patrick Connolly · Jan 5, 2019 · r-sig-mixed-models

The call to predict with lme models has an argument 'level' which, I understand, produces population predictions for level = 0 and group specific predictions for level = 1. There doesn't seem to be a similar argument for lmer (lme4 package...

Physical Units in Calculations
Patrick Connolly · Apr 14, 2009 · r-help

On Mon, 13-Apr-2009 at 09:15PM +0100, S Ellison wrote: |> >>> <Bill.Venables at csiro.au> 04/13/09 4:01 AM >>> |> >The UK uses metres for most lengths but miles for road distances - |> >the worst of all worlds...

Chen Huashan's searchable archive?
Patrick Connolly · Nov 14, 2002 · r-help

Is it just me, or is this site not now available? best -- Patrick Connolly HortResearch Mt Albert Auckland New Zealand Ph: +64-9 815 4200 x 7188 ~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~ I have the world`s largest collection of seashells. I keep it on...

kinship package example data
Patrick Connolly · Nov 6, 2005 · r-help

On Sun, 06-Nov-2005 at 03:46PM -0500, Gabor Grothendieck wrote: |> You might look through the tests/testcoxme subdirectory. Maybe |> the file called cdata.dput ? Close, but not quite. However, it got me looking in the right place. It...

how to read in a txt file with some blanks
Patrick Connolly · Nov 28, 2007 · r-help

On Wed, 28-Nov-2007 at 06:46PM -0500, affy snp wrote: |> Hi list, |> Is there a way to read in a txt file with some blanks? The ideal way could |> be to replace blanks with NAs. If the fields...

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