r - "zoom"/"scale" with coord_polar() -
i've got polar plot uses geom_smooth(). smoothed loess line though small , rings around center of plot. i'd "zoom in" can see better.
using scale_y_continuous(limits = c(-.05,.7))
make geom_smooth ring bigger, alter because recompute datapoints limited limits = c(-.05,.7)
argument.
for cartesian plot use coord_cartesian(ylim = c(-.05,.7))
clip chart not underlying data. can see no way coord_polar()
any ideas? thought there might way grid.clip()
in grid package not having luck.
any ideas?
what plot looks now, note "higher" red line:
what when use scale_y_continuous()
note "higher" blue line, it's still not big.
Comments
Post a Comment