grantmcdermott / tinyplot

Lightweight extension of the base R graphics system
https://grantmcdermott.com/tinyplot
Apache License 2.0
261 stars 8 forks source link

Issue #225 Deprecate ribbon.alpha #244

Closed vincentarelbundock closed 3 weeks ago

vincentarelbundock commented 3 weeks ago

Test now looks like this:

f = function() {
  with(
    mtcars2,
    tinyplot(
      x = wt, y = fit,
      ymin = lwr, ymax = upr,
      type = type_ribbon(alpha = .5)
    )
  )
}
expect_snapshot_plot(f, label = "ribbon_alpha50")
grantmcdermott commented 3 weeks ago

Thanks, looks great!