MCPcopy Create free account
hub / github.com/cpmech/plotpy / set_vertical_gap

Method set_vertical_gap

src/plot.rs:471–474  ·  view source on GitHub ↗

Sets the vertical gap between subplots

(&mut self, value: f64)

Source from the content-addressed store, hash-verified

469
470 /// Sets the vertical gap between subplots
471 pub fn set_vertical_gap(&mut self, value: f64) -> &mut Self {
472 write!(&mut self.buffer, "plt.subplots_adjust(hspace={})\n", value).unwrap();
473 self
474 }
475
476 /// Sets the horizontal and vertical gap between subplots
477 pub fn set_gaps(&mut self, horizontal: f64, vertical: f64) -> &mut Self {

Callers 4

subplot_functions_workFunction · 0.80
test_boxplot_4Function · 0.80
test_plotFunction · 0.80
test_plot_subplotsFunction · 0.80

Calls

no outgoing calls

Tested by 4

subplot_functions_workFunction · 0.64
test_boxplot_4Function · 0.64
test_plotFunction · 0.64
test_plot_subplotsFunction · 0.64