Re: [R] Errorbar

2014-02-21 Thread Marc Girondot
Hi, I perfectly agree that ggplot package is the perfect solution, but if you prefer the old-fashion plot, you can find a plot_errorbar function in the package phenology: plot_errbar(1:100, rnorm(100, 1, 2), xlab="axe x", ylab="axe y", bty="n", xlim=c(1,100), errbar.x=2, errbar.

Re: [R] Errorbar

2014-02-18 Thread R. Michael Weylandt
Have you seen the examples at docs.ggplot2.org/0.9.3.1/geom_errorbar.html ? On Feb 18, 2014, at 10:57, "Alzahrani, Ahmad K A" wrote: > Hi All, > > Can anyone show me how to add a error bar to my graphs. I am currently using > this code > > g<-ggplot(means,aes(x=variable,y=value)) >> g<-g+g

[R] Errorbar

2014-02-18 Thread Alzahrani, Ahmad K A
Hi All, Can anyone show me how to add a error bar to my graphs. I am currently using this code g<-ggplot(means,aes(x=variable,y=value)) > g<-g+geom_bar(stat="identity")+facet_wrap(~Site+Season) > g Thanks, Akaalz [[alternative HTML version deleted]] __

Re: [R] errorbar il lattice plot

2007-09-28 Thread deepayan . sarkar
On 9/28/07, Federico Calboli <[EMAIL PROTECTED]> wrote: > Hi Everyone, > > I would like to add errorbars to a lattice plot. I already have a function > that > adds error bars to a plot (originally written by George Gilchrist) which > takes > as arguments the coordinates of the point and then the si

[R] errorbar il lattice plot

2007-09-28 Thread Federico Calboli
Hi Everyone, I would like to add errorbars to a lattice plot. I already have a function that adds error bars to a plot (originally written by George Gilchrist) which takes as arguments the coordinates of the point and then the size of the error bar. I would like to integrate it in my lattice co