Sets the label for the x-axis
(&mut self, label: &str)
| 909 | |
| 910 | /// Sets the label for the x-axis |
| 911 | pub fn set_label_x(&mut self, label: &str) -> &mut Self { |
| 912 | write!(&mut self.buffer, "plt.gca().set_xlabel(r'{}')\n", label).unwrap(); |
| 913 | self |
| 914 | } |
| 915 | |
| 916 | /// Sets the label for the y-axis |
| 917 | pub fn set_label_y(&mut self, label: &str) -> &mut Self { |
no outgoing calls