If you like the repo, please feel free to give it a ⭐ (top right). Cheers!
For more information about the author, see below links to get in touch:
$ pip install pluto
# create custom bar_plot
bar_plot = Barplot()
# configuring custom bar_plot
bar_plot.shape(dim=(10, 5))
.create('x_col', 'y_col', table, hue='z_col', c=None)
.grid()
.spine()
.tick(left=True, labelleft=True, bottom=True, labelbottom=True)
.label('x axis', 'y axis', 'title')
.render()
- TBI