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

2013-05-06 Thread Christophe Bouffioux
/redbluff/rbdd_jsmp.aspx *From:* Christophe Bouffioux christophe@gmail.com *To:* r-help@r-project.org 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 print two plots in one png file

[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 ehl...@ucalgary.ca 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 value + text text= calculated

[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
), (Y-0.15), labels = paste(N=, tg)) }) ## On Thu, Oct 14, 2010 at 5:22 PM, David Winsemius dwinsem...@comcast.netwrote: On Oct 14, 2010, at 11:07 AM, Christophe Bouffioux wrote: Hi, I have tried your proposition, and it works properly on the simulated data

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

2010-10-14 Thread Christophe Bouffioux
, 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 dwinsem...@comcast.netwrote: On Oct 13, 2010, at 10:05 AM, Christophe Bouffioux wrote: Dear R-community, Using bwplot, how

[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

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

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

2010-09-28 Thread Christophe Bouffioux
: On 2010-09-27 4: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 = function(x, y){ panel.bwplot(x, y) X

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 deepayan.sar...@gmail.comwrote: On Tue, Sep 28, 2010 at 12:59 PM, Christophe Bouffioux christophe@gmail.com wrote: Thanks for your help Peter

[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