MCPcopy Create free account
hub / github.com/bsomps/OpenGeoPlotter / plot

Method plot

OGP_v11.py:3392–3399  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

3390 self.color_ramp_select.addItems(['tab10', 'tab20'])
3391
3392 def plot(self): # Plotting Function
3393 x = self.x_select.currentText()
3394 y = self.y_select.currentText()
3395 color_column = self.color_select.currentText() if self.color_select.currentText() != "None" else None
3396 color_ramp = self.color_ramp_select.currentText() if self.color_ramp_select.currentText() != "None" else None
3397 log_x = self.log_x_checkbox.isChecked()
3398 log_y = self.log_y_checkbox.isChecked()
3399 self.plot_window.plot_custom(x, y, log_x, log_y, color_column, color_ramp)
3400
3401 def save_to_csv(self):
3402 if self.polygon_checkbox.isChecked():

Callers

nothing calls this directly

Calls 1

plot_customMethod · 0.80

Tested by

no test coverage detected