from pathlib import Path import matplotlib.pyplot as plt from matplotlib.ticker import AutoMinorLocator, MultipleLocator weeks = ["W1", "W2", "W3", "W4", "W5", "W6"] incidents = [48, 43, 39, 41, 35, 31] output = Path("grid-enable.png") major_grid_style = {"color": "0.78", "linewidth": 0.9} minor_grid_style = {"color": "0.90", "linestyle": ":", "linewidth": 0.6}