[R] ggplot output
ONKELINX, Thierry
Thierry.ONKELINX at inbo.be
Thu Nov 4 14:58:01 CET 2010
Split.screen() and par() don't work with ggplot2
------------------------------------------------------------------------
----
ir. Thierry Onkelinx
Instituut voor natuur- en bosonderzoek
team Biometrie & Kwaliteitszorg
Gaverstraat 4
9500 Geraardsbergen
Belgium
Research Institute for Nature and Forest
team Biometrics & Quality Assurance
Gaverstraat 4
9500 Geraardsbergen
Belgium
tel. + 32 54/436 185
Thierry.Onkelinx op inbo.be
www.inbo.be
To call in the statistician after the experiment is done may be no more
than asking him to perform a post-mortem examination: he may be able to
say what the experiment died of.
~ Sir Ronald Aylmer Fisher
The plural of anecdote is not data.
~ Roger Brinner
The combination of some data and an aching desire for an answer does not
ensure that a reasonable answer can be extracted from a given body of
data.
~ John Tukey
> -----Oorspronkelijk bericht-----
> Van: r-help-bounces op r-project.org
> [mailto:r-help-bounces op r-project.org] Namens Eigenhuis, Annemarie
> Verzonden: donderdag 4 november 2010 14:53
> Aan: ashz; r-help op r-project.org
> Onderwerp: Re: [R] ggplot output
>
> Have you tried ?split.screen
>
> ________________________________
>
> Annemarie Eigenhuis, MSc
>
> University of Amsterdam
> Department of Psychology, clinical area
> Roetersstraat 15
> 1018 WB Amsterdam
> The Netherlands
>
> phone: +31(0)205256815
> email: a.eigenhuis op uva.nl
>
>
> -----Original Message-----
> From: r-help-bounces op r-project.org
> [mailto:r-help-bounces op r-project.org]
> On Behalf Of ashz
> Sent: donderdag 4 november 2010 14:37
> To: r-help op r-project.org
> Subject: [R] ggplot output
>
>
> Dear All,
>
> I have this script:
>
> dat <- data.frame(Month = hstat$Date,C_avg = hstat$C.avg,C_stdev =
> hstat$C.stdev)
> ggplot(data = dat, aes(x = Month, y = C_avg, ymin = C_avg -
> C_stdev, ymax = C_avg + C_stdev)) +
> geom_point() +
> geom_line() +
> geom_errorbar()
>
> dat <- data.frame(Month = hstat$Date,K_avg = hstat$K.avg,K_stdev =
> hstat$K.stdev)
> ggplot(data = dat, aes(x = Month, y = K_avg, ymin = K_avg -
> K_stdev, ymax = K_avg + K_stdev)) +
> geom_point() +
> geom_line() +
> geom_errorbar()
>
> dat <- data.frame(Month = hstat$Date,S_avg = hstat$S.avg,S_stdev =
> hstat$S.stdev)
> ggplot(data = dat, aes(x = Month, y = S_avg, ymin = S_avg -
> S_stdev, ymax = S_avg + S_stdev)) +
> geom_point() +
> geom_line() +
> geom_errorbar()
>
> Running the script generates 3 separate graphs, how can I
> output them next to each other?
>
> Thanks
>
> --
> View this message in context:
> http://r.789695.n4.nabble.com/ggplot-output-tp3027026p3027026.html
> Sent from the R help mailing list archive at Nabble.com.
>
> ______________________________________________
> R-help op r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide
> http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>
> ______________________________________________
> R-help op r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide
> http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>
More information about the R-help
mailing list