Configures subplots # Input `row` -- number of rows in the subplot grid `col` -- number of columns in the subplot grid `index` -- activate current subplot; **indices start at one** (1-based)
(&mut self, row: usize, col: usize, index: usize)
| 358 | /// * `col` -- number of columns in the subplot grid |
| 359 | /// * `index` -- activate current subplot; **indices start at one** (1-based) |
| 360 | pub fn set_subplot(&mut self, row: usize, col: usize, index: usize) -> &mut Self { |
| 361 | write!(&mut self.buffer, "\nplt.subplot({},{},{})\n", row, col, index).unwrap(); |
| 362 | self |
| 363 | } |
| 364 | |
| 365 | /// Configures subplots using GridSpec |
| 366 | /// |
no outgoing calls