You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the main Gadfly plot, Stats and Geoms that are not in layers, are both pushed into a layer (which makes sense). This means the statistics field of the main plot (p1.statistics below) is actually obsolete.
Geom.subplot_grid has similar fields to the main plot. In subplot_grid Geoms that are not in layers get pushed to a layer,
but Stats get pushed to the statistics field of subplot_grid (p2.statistics below). This is problematic,
because the Stat and Geom don't have a clear association (this is worse when attempting to use multiple Stats/Geoms).
In the main Gadfly plot, Stats and Geoms that are not in layers, are both pushed into a layer (which makes sense). This means the
statistics
field of the main plot (p1.statistics
below) is actually obsolete.Geom.subplot_grid
has similar fields to the main plot. Insubplot_grid
Geoms that are not in layers get pushed to a layer,but Stats get pushed to the
statistics
field ofsubplot_grid
(p2.statistics
below). This is problematic,because the Stat and Geom don't have a clear association (this is worse when attempting to use multiple Stats/Geoms).
The decoupling of the Stat/Geom makes it makes it unclear what the purpose of
p2.statistics
is, leading to bad coding.The text was updated successfully, but these errors were encountered: