Set the domain bounds of the current 'y' scale.
(min, max)
| 285 | |
| 286 | |
| 287 | def ylim(min, max): |
| 288 | """Set the domain bounds of the current 'y' scale. |
| 289 | """ |
| 290 | return set_lim(min, max, 'y') |
| 291 | |
| 292 | |
| 293 | def set_lim(min, max, name): |
nothing calls this directly
no test coverage detected
searching dependent graphs…