Re: [R] convert table to list

2009-03-31 Thread herwig
Thanks a lot, Problem solved, Herwig :-D -- View this message in context: http://www.nabble.com/convert-table-to-list-tp22810143p22815557.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing list https

[R] convert table to list

2009-03-31 Thread herwig
this in R would be very much apprechiated. cheers, Herwig -- View this message in context: http://www.nabble.com/convert-table-to-list-tp22810143p22810143.html Sent from the R help mailing list archive at Nabble.com. __ R-help@r-project.org mailing

Re: [R] bargraph.CI change se for sd

2009-03-22 Thread herwig
Thanks for the solution. And sorry about the not workable example (I actually edited the post a minute after posting it -too late I am afraid). > library(sciplot) > bargraph.CI(peptide, surface, group=adjunct,data = y) Error in eval(substitute(subset), envir = data) : object "y" not found

Re: [R] bargraph.CI change se for sd

2009-03-21 Thread herwig
? > Example code? > > -- > On Mar 21, 2009, at 4:22 AM, herwig wrote: > >> >> Hi there, >> I am a beginner. >> I would like to change the error bars in the bargraph.CI function >> from the >> default (se) to (sd). The help file says >> ci.fun= func

[R] bargraph.CI change se for sd

2009-03-21 Thread herwig
the bargraph.CI function and assume that is should be able to use that information. cheers, Herwig -- View this message in context: http://www.nabble.com/bargraph.CI-change-se-for-sd-tp22633770p22633770.html Sent from the R help mailing list archive at Nabble.com

[R] display p-values and significance levels

2009-02-01 Thread herwig
re I would like to make a t.test between the species "setosa" and "versicolor" for Sepal.length, ..width. and so on and display it int the horizontal panel I would appreciate any help, Herwig here the code I've got at the moment: panel.cor <- function(x, y,

Re: [R] Error : unused arguments in pairs()

2009-01-06 Thread herwig
Dear Sarah, Thank you a lot, It does exactly what I need. By the way, I tried doing what Prof. Ripley suggested I just was not able to get it right - I am pretty new to this after all. Thank again, Herwig Sarah Goslee wrote: > > You didn't do what Prof. Ripley suggested

Re: [R] Error : unused arguments in pairs()

2009-01-05 Thread herwig
cording to the value of the correlation coefficient as shown in the example above. Any help with this would be appreciated a lot, Kind regards, Herwig Prof Brian Ripley wrote: > > Your panel function should have a ... argument: see the help page for > pairs(). Since your example is not

[R] Error : unused arguments in pairs()

2009-01-04 Thread herwig
cex.cor <- 0.8/strwidth(txt) + text(0.5, 0.5, txt, cex = cex.cor * r) + } > pairs(pep[9:18],cex.labels = 0.6, pch = 21, bg = c("red", "blue", "green", > "yellow","brown")[unclass(pep$taxonomic.position)], lower.panel=panel.cor) thanks, H