search for: lkgray

Displaying 7 results from an estimated 7 matches for "lkgray".

Did you mean: gray
2017 Jun 20
2
Help with the plot function
I'm trying to recreate a graph similar to the last one found on this link: https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/7362679/6c_-_line_plots_with_error_bars.pdf The difference is that I want budbreak on the top, and the temperatures at the bottom. I tried to set par before each graph and include lines, with no avail. Thanks, Bert. Andre On Mon, Jun 19, 2017 at 7:41 PM, Bert Gunter <bgunter...
2017 Jun 20
0
Help with the plot function
...into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Mon, Jun 19, 2017 at 7:01 PM, Andr? Luis Neves <andrluis at ualberta.ca> wrote: > I'm trying to recreate a graph similar to the last one found on this link: > https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/7362679/6c_-_line_plots_with_error_bars.pdf > > The difference is that I want budbreak on the top, and the temperatures at > the bottom. > > I tried to set par before each graph and include lines, with no avail. > > Thanks, Bert. > > Andre > > On Mon...
2017 Jun 20
1
Help with the plot function
Dear all, I found the last example of this link ( https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/7362679/6c_-_line_plots_with_error_bars.pdf) very similar to the one I need to make for my paper, and I think I got what I wanted by applying some of the suggestions of this mail list. Here it is the code I devised (maybe there will be further improvements from the list): YEAR &l...
2017 Jun 20
2
Help with the plot function
...eley Breathed in his "Bloom County" comic strip ) > > > On Mon, Jun 19, 2017 at 7:01 PM, Andr? Luis Neves <andrluis at ualberta.ca> > wrote: > > I'm trying to recreate a graph similar to the last one found on this > link: > > https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/ > 7362679/6c_-_line_plots_with_error_bars.pdf > > > > The difference is that I want budbreak on the top, and the temperatures > at > > the bottom. > > > > I tried to set par before each graph and include lines, with no avail. > > > >...
2017 Jun 20
0
Help with the plot function
...unty" comic strip ) > > > > > > On Mon, Jun 19, 2017 at 7:01 PM, Andr? Luis Neves <andrluis at ualberta.ca> > > wrote: > > > I'm trying to recreate a graph similar to the last one found on this > > link: > > > https://sites.ualberta.ca/~lkgray/uploads/7/3/6/2/ > > 7362679/6c_-_line_plots_with_error_bars.pdf > > > > > > The difference is that I want budbreak on the top, and the temperatures > > at > > > the bottom. > > > > > > I tried to set par before each graph and include lines,...
2017 Jun 20
0
Help with the plot function
See ?layout ?split.screen ?par (the mfrow and mfcol values) depending exactly on what you want to do and how you want to do it. Essentially, these all allow you to make separate plots at different regions of the device. Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in
2017 Jun 20
2
Help with the plot function
Dear friends, I have the following dataframe: YEAR <- c(1996 , 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 ) T_MAR <- c(2.8, 6.5, 5.4,2.4, 4, 4.1, 3, 4.4, 4.5) T_APR <- c(5.7, 7.8, 7.7, 4.6, 4.7, 6.2,5.7, 5.9, 7) T_MAY <- c(7, 8.8, 10, 6, 5.5, 7.6, 8.5, 7.3, 10.2) BUD <- c(87, 98, 93, 85, 89, 91, 87, 92, 92) BUD_SE <- c(3.6, 2, 2.4, 4, 2.4, 2.4, 4, 2.4, 3) g1 <-