Этот код был написан для Python 2 и намного более ранней версии pandas
;Я немного исправил это для работы с Python 3.
Есть и другие способы сделать это, но не слишком сильно меняя структуру кода, вы можете указать индексы столбчатых меток, которые вы используете.хочу построить график, показанный ниже как which
, и нанести их на график, только если они соответствуют:
import pandas as pd
import matplotlib.pyplot as plt
# Bring some raw data.
frequencies = [6, 16, 75, 160, 244, 260, 145, 73, 16, 4, 1]
# In my original code I create a series and run on that,
# so for consistency I create a series from the list.
freq_series = pd.Series(frequencies)
x_labels = [108300.0, 110540.0, 112780.0, 115020.0, 117260.0, 119500.0,
121740.0, 123980.0, 126220.0, 128460.0, 130700.0]
# Plot the figure.
fig, ax = plt.subplots(figsize=(12, 8))
freq_series.plot(kind='bar', ax=ax)
ax.set_title('Amount Frequency')
ax.set_xlabel('Amount ($)')
ax.set_ylabel('Frequency')
ax.set_xticklabels(x_labels)
rects = ax.patches
# Make some labels.
labels = [f'label{i}' for i in range(len(rects))]
which = [3, 7]
for index, rect in enumerate(rects):
if index in which:
height = rect.get_height()
ax.text(rect.get_x() + rect.get_width() / 2, height + 5, height,
ha='center', va='bottom')