<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import matplotlib.pyplot as plt
import numpy as np

fig, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2, 2, figsize=(5, 5))

def demo(bar_func, bar_kwargs):
    return bar_func([1, 2, 3], [1, 2, 3], tick_label=['a', 'b', 'c'],
                    **bar_kwargs)


ax1.set_title("classic")
ax2.set_title('v2.0')

demo(ax1.bar, {'align': 'edge'})
demo(ax2.bar, {})
demo(ax3.barh, {'align': 'edge'})
demo(ax4.barh, {})</pre></body></html>