18 lines
233 B
Python
18 lines
233 B
Python
from matplotlib import pyplot as plt
|
|
|
|
|
|
class Plotter:
|
|
pass
|
|
|
|
def plot_bars(self):
|
|
pass
|
|
|
|
def plot_lin(self):
|
|
pass
|
|
|
|
def plot_box(self):
|
|
pass
|
|
|
|
def adjust_x(self):
|
|
pass
|