Currently ggplot does not support free facet scales with coord_flip(), so I have to fake facets with gridExtra:
But doing that means I lose the axis consistency I'd get from using facets—i.e., each pseudo facet currently has 0 at a different location and uses different a min/max in the scale.
With ggplot2 2.0's support of extensions, ggstance seems promising (especially geom_pointrangeh), but it currently either reports errors about undefined ymin and ymax aesthetics (related to this), or when using the development version of ggplot where this is apparently fixed (here).
Revisit these plots once the development dust has settled and ggstance and ggplot work together again?
Currently ggplot does not support free facet scales with
coord_flip()
, so I have to fake facets withgridExtra
:But doing that means I lose the axis consistency I'd get from using facets—i.e., each pseudo facet currently has 0 at a different location and uses different a min/max in the scale.
With ggplot2 2.0's support of extensions, ggstance seems promising (especially
geom_pointrangeh
), but it currently either reports errors about undefinedymin
andymax
aesthetics (related to this), or when using the development version of ggplot where this is apparently fixed (here).Revisit these plots once the development dust has settled and ggstance and ggplot work together again?