Sets the label for the y-axis
(&mut self, label: &str)
| 915 | |
| 916 | /// Sets the label for the y-axis |
| 917 | pub fn set_label_y(&mut self, label: &str) -> &mut Self { |
| 918 | write!(&mut self.buffer, "plt.gca().set_ylabel(r'{}')\n", label).unwrap(); |
| 919 | self |
| 920 | } |
| 921 | |
| 922 | /// Sets the label for the z-axis |
| 923 | pub fn set_label_z(&mut self, label: &str) -> &mut Self { |
no outgoing calls