Re: [R] print multiple plots to jpeg, one lattice and one ggplot2

2013-05-05 Thread Christophe Bouffioux
A > http://www.fws.gov/redbluff/rbdd_jsmp.aspx > > *From:* Christophe Bouffioux > *To:* "r-help@r-project.org" > *Sent:* Friday, May 3, 2013 6:33 AM > *Subject:* [R] print multiple plots to jpeg, one lattice and one ggplot2 > > hello everybody, > > I want to

[R] print multiple plots to jpeg, one lattice and one ggplot2

2013-05-03 Thread Christophe Bouffioux
hello everybody, I want to print two plots in one png file, I tried several options but i didn't succeed the first plot (bwplot) print to the defined position, but the second (ggplot) doesn't Any idea? Thanks a lot Christophe # Example: #- library(ggplot2)

Re: [R] barchart panel.text add label value and percent

2011-01-30 Thread Christophe Bouffioux
yes exactly thank you Peter On Sun, Jan 30, 2011 at 2:24 PM, Peter Ehlers wrote: > On 2011-01-26 04:56, Christophe Bouffioux wrote: > >> Hello everybody, >> >> i need some help to display text as label in my barchart >> the label is the combination of x va

[R] barchart panel.text add label value and percent

2011-01-26 Thread Christophe Bouffioux
Hello everybody, i need some help to display text as label in my barchart the label is the combination of x value + text text= calculated percentage => per it display properly the x value but, wrongly repeats the text of the fisrt level LangueTXT factor on the second any solution? Thanx very much

Re: [R] bwplot change whiskers position to percentile 5 and P95

2010-10-15 Thread Christophe Bouffioux
X = ex3$v1b, pch = "|", main="Boxplot.stats", stats=boxplot2.stats, par.settings = list( plot.symbol = list(alpha = 1, col = "transparent",cex = 1,pch = 20)), panel = function(x, y, ..., X, subscripts){ panel.grid(v = -1, h = 0) panel.bwplot(x, y,

Re: [R] bwplot change whiskers position to percentile 5 and P95

2010-10-14 Thread Christophe Bouffioux
t], na.rm = TRUE) } conf <- if (do.conf) stats[3L] + c(-1.58, 1.58) * iqr/sqrt(n) list(stats = stats, n = n, conf = conf, out = if (do.out) x[out & nna] else numeric(0L)) } On Wed, Oct 13, 2010 at 5:13 PM, David Winsemius wrote: > > On Oct 13, 2010, at 10:

[R] bwplot change whiskers position to percentile 5 and P95

2010-10-13 Thread Christophe Bouffioux
Dear R-community, Using bwplot, how can I put the whiskers at percentile 5 and percentile 95, in place of the default position coef=1.5?? Using panel=panel.bwstrip, whiskerpos=0.05, from the package agsemisc gives satisfaction, but changes the appearance of my boxplot and works with an old versio

Re: [R] Use R in Visual Basic Environment

2010-09-29 Thread Christophe Bouffioux
Hi Soumen, it depends what you mean by "embedded" what i have done once is to run a R script in batch mode from an access application, the R code import an access table, with the RODBC package, produce some table and graph which are compiled on the fly in html output, using HWRITER or R2HTML packa

Re: [R] bwplot superpose panel.points from another dataframe

2010-09-28 Thread Christophe Bouffioux
BINGO we have the solution thanks a lot both, Deepayan and Dennis, for your help Christophe On Tue, Sep 28, 2010 at 2:10 PM, Deepayan Sarkar wrote: > On Tue, Sep 28, 2010 at 12:59 PM, Christophe Bouffioux > wrote: > > Thanks for your help Peter > > but the red marks

Re: [R] bwplot superpose panel.points from another dataframe

2010-09-28 Thread Christophe Bouffioux
:54, Christophe Bouffioux wrote: > >> bwplot(v2 ~ v1 | z, data = ex3, layout=c(3,2), >>pch = "|", >>par.settings = list( >>plot.symbol = list(alpha = 1, col = "transparent",cex = 1,pch = >> 20)), >>panel = func

[R] bwplot superpose panel.points from another dataframe

2010-09-27 Thread Christophe Bouffioux
Hi everybody, using bwplot for producing panel boxplot with 3 dimensions i want to add a mark on each boxplot representing one individual (on all its dimensions) till now, i didn't succeed getting the desired solution I want as well to keep the median symbols as a line Many thanks for your help c