Displaying 6 results from an estimated 6 matches for "geom_ridgeline".
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 ridgeline for each depth showing the time series at that depth. The plot should b...
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 tried:
>
> ggplot(plotFrame, aes(x = time, y = cycle, height = cycle, group = depth...
2017 Oct 17
2
ggridges help
...uld 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 noaa.gov> wrote:
> I have tried:
>
> ggplot(plotFrame, aes(x = time, y = cy...
2017 Oct 17
0
ggridges help
...t;
> -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 noaa.gov> wrote:
> > I have tried:
> &...
2017 Oct 17
0
ggridges help
...and your question is...?
... and the code you tried that didn't work was?
Bert
On Oct 17, 2017 12:22 PM, "Roy Mendelssohn - NOAA Federal" <
roy.mendelssohn at 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.
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