Evaluate mapping after statistic has been calculated Parameters ---------- x : str An expression See Also -------- plotnine.after_scale plotnine.stage
(x)
| 76 | |
| 77 | |
| 78 | def after_stat(x): |
| 79 | """ |
| 80 | Evaluate mapping after statistic has been calculated |
| 81 | |
| 82 | Parameters |
| 83 | ---------- |
| 84 | x : str |
| 85 | An expression |
| 86 | |
| 87 | See Also |
| 88 | -------- |
| 89 | plotnine.after_scale |
| 90 | plotnine.stage |
| 91 | """ |
| 92 | return stage(after_stat=x) |
| 93 | |
| 94 | |
| 95 | def after_scale(x): |