Bar ChartΒΆ

Example bar chart.

../_images/sphx_glr_plot_sns_bar_001.png
import matplotlib.pyplot as plt
import seaborn as sns

sns.set()

# Initialize a figure and axes object
fig, ax = plt.subplots(figsize=(3,3))

# Data
x = [0, 1, 2, 3, 4, 5, 6]
y = [3, 7, 2, 4, 6, 0, 2]

# Add data a scatter points onto axes
ax.bar(x, y)

# Name axes
ax.set_xlabel('x')
ax.set_ylabel('y')

# Show figure.
fig.show()

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

Gallery generated by Sphinx-Gallery