Plot Box#

visualizes the feature distributions using the box, boxen or violin plots

# Author: L.Kouadio
# Licence: BSD-3-clause
import matplotlib.pyplot as plt
plt.style.use ('classic')
from watex.datasets import fetch_data
from watex.view import ExPlot
data = fetch_data ('bagoue original').get('data=dfy1')
p= ExPlot(tname='flow', fig_size =(7, 5)).fit(data)
p.plotbv(xname='flow', yname='ohmS', kind='boxen')
plot box
<'ExPlot':xname='flow', yname='ohmS' , tname='flow'>

Total running time of the script: (0 minutes 0.101 seconds)

Gallery generated by Sphinx-Gallery