Hướng dẫn how do you annotate a graph in python? - làm thế nào để bạn chú thích một biểu đồ trong python?

fig, ax = plt.subplots[figsize=[12, 4]]
births_by_date.plot[ax=ax]

# Add labels to the plot
ax.annotate["New Year's Day", xy=['2012-1-1', 4100],  xycoords='data',
            xytext=[50, -30], textcoords='offset points',
            arrowprops=dict[arrowstyle="->",
                            connectionstyle="arc3,rad=-0.2"]]

ax.annotate["Independence Day", xy=['2012-7-4', 4250],  xycoords='data',
            bbox=dict[boxstyle="round", fc="none", ec="gray"],
            xytext=[10, -40], textcoords='offset points', ha='center',
            arrowprops=dict[arrowstyle="->"]]

ax.annotate['Labor Day', xy=['2012-9-4', 4850], xycoords='data', ha='center',
            xytext=[0, -20], textcoords='offset points']
ax.annotate['', xy=['2012-9-1', 4850], xytext=['2012-9-7', 4850],
            xycoords='data', textcoords='data',
            arrowprops={'arrowstyle': '|-|,widthA=0.2,widthB=0.2', }]

ax.annotate['Halloween', xy=['2012-10-31', 4600],  xycoords='data',
            xytext=[-80, -40], textcoords='offset points',
            arrowprops=dict[arrowstyle="fancy",
                            fc="0.6", ec="none",
                            connectionstyle="angle3,angleA=0,angleB=-90"]]

ax.annotate['Thanksgiving', xy=['2012-11-25', 4500],  xycoords='data',
            xytext=[-120, -60], textcoords='offset points',
            bbox=dict[boxstyle="round4,pad=.5", fc="0.9"],
            arrowprops=dict[arrowstyle="->",
                            connectionstyle="angle,angleA=0,angleB=80,rad=20"]]


ax.annotate['Christmas', xy=['2012-12-25', 3850],  xycoords='data',
             xytext=[-30, 0], textcoords='offset points',
             size=13, ha='right', va="center",
             bbox=dict[boxstyle="round", alpha=0.1],
             arrowprops=dict[arrowstyle="wedge,tail_width=0.5", alpha=0.1]];

# Label the axes
ax.set[title='USA births by day of year [1969-1988]',
       ylabel='average daily births']

# Format the x axis with centered month labels
ax.xaxis.set_major_locator[mpl.dates.MonthLocator[]]
ax.xaxis.set_minor_locator[mpl.dates.MonthLocator[bymonthday=15]]
ax.xaxis.set_major_formatter[plt.NullFormatter[]]
ax.xaxis.set_minor_formatter[mpl.dates.DateFormatter['%h']];

ax.set_ylim[3600, 5400];

Bài Viết Liên Quan

Chủ Đề