Displaying 6 results from an estimated 6 matches for "plotframe".
2017 Oct 17
2
ggridges help
I have tried:
ggplot(plotFrame, aes(x = time, y = cycle, height = cycle, group = depth)) + geom_ridgeline()
ggplot(plotFrame, aes(x = time, y = depth, height = cycle, group = depth)) + geom_ridgeline()
ggplot(plotFrame, aes(x = time, y = depth, group = depth)) + geom_density_ridges()
none are producing a plot that was a ridgeli...
2017 Oct 17
0
ggridges help
Does the following work for you?
ggplot2::ggplot(plotFrame, aes(x = time, y = depth, height = cycle,
group = depth)) + ggridges::geom_ridgeline(fill="red", min_height=-0.25)
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Tue, Oct 17, 2017 at 12:43 PM, Roy Mendelssohn - NOAA Federal <
roy.mendelssohn at noaa.gov> wrote:
> I have trie...
2017 Oct 17
2
ggridges help
...ustment function.
I assume this refers to the ggplot2 position adjustments. Would one of those calls have that effect?
Thanks,
-Roy
> On Oct 17, 2017, at 1:09 PM, William Dunlap <wdunlap at tibco.com> wrote:
>
> Does the following work for you?
>
> ggplot2::ggplot(plotFrame, aes(x = time, y = depth, height = cycle, group = depth)) + ggridges::geom_ridgeline(fill="red", min_height=-0.25)
>
>
> Bill Dunlap
> TIBCO Software
> wdunlap tibco.com
>
> On Tue, Oct 17, 2017 at 12:43 PM, Roy Mendelssohn - NOAA Federal <roy.mendelssohn at noa...
2017 Oct 17
0
ggridges help
...on adjustments. Would one of
> those calls have that effect?
>
> Thanks,
>
> -Roy
>
>
>
>
> > On Oct 17, 2017, at 1:09 PM, William Dunlap <wdunlap at tibco.com> wrote:
> >
> > Does the following work for you?
> >
> > ggplot2::ggplot(plotFrame, aes(x = time, y = depth, height = cycle,
> group = depth)) + ggridges::geom_ridgeline(fill="red", min_height=-0.25)
> >
> >
> > Bill Dunlap
> > TIBCO Software
> > wdunlap tibco.com
> >
> > On Tue, Oct 17, 2017 at 12:43 PM, Roy Mendelssohn - NO...
2017 Oct 17
2
ggridges help
Hi All:
I am just not understanding ggridges. The data I have are time series at different depths in the ocean. I want to make a joy plot of the time series by depth.
If I was just doing a ggplot2 line plot I would be doing:
ggplot(plotFrame, aes(x = time, y = cycle, group = depth)) + geom_line()
but translating that to ggridges has not worked right. Below is the result from dput() of a simplified data frame that has 3 depths and 2 years of monthly data. (In fact I have 20 depths and 30 years of monthly data). The command above...
2017 Oct 17
0
ggridges help
...noaa.gov> wrote:
> Hi All:
>
> I am just not understanding ggridges. The data I have are time series at
> different depths in the ocean. I want to make a joy plot of the time
> series by depth.
>
> If I was just doing a ggplot2 line plot I would be doing:
>
> ggplot(plotFrame, aes(x = time, y = cycle, group = depth)) + geom_line()
>
> but translating that to ggridges has not worked right. Below is the
> result from dput() of a simplified data frame that has 3 depths and 2 years
> of monthly data. (In fact I have 20 depths and 30 years of monthly
> dat...