Matplotlib - помечать каждый мусор

В настоящее время я использую Matplotlib для создания гистограммы:

enter image description here

import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as pyplot
...
fig = pyplot.figure()
ax = fig.add_subplot(1,1,1,)
n, bins, patches = ax.hist(measurements, bins=50, range=(graph_minimum, graph_maximum), histtype='bar')

#ax.set_xticklabels([n], rotation='vertical')

for patch in patches:
    patch.set_facecolor('r')

pyplot.title('Spam and Ham')
pyplot.xlabel('Time (in seconds)')
pyplot.ylabel('Bits of Ham')
pyplot.savefig(output_filename)

Я хотел бы сделать метки оси X немного более значимыми.

Во-первых, тики x-оси здесь, по-видимому, ограничены пятью тиками. Независимо от того, что я делаю, я не могу изменить это, даже если я добавлю больше xticklabels, он использует только первые пять. Я не уверен, как Matplotlib вычисляет это, но я предполагаю, что он автоматически вычисляется из диапазона/данных?

Есть ли способ увеличить разрешение ярлыков x-tick - даже до точки для каждого бара/бина?

(В идеале, мне бы хотелось, чтобы секунды были переформатированы в микросекундах/миллисекундах, но это вопрос на другой день).

Во-вторых, я бы хотел, чтобы каждый отдельный бар помечен - фактическим номером в этом бункере, а также процентом от общего количества всех ящиков.

Конечный результат может выглядеть примерно так:

enter image description here

Возможно ли подобное с Matplotlib?

Cheers, Виктор

Ответ 1

Конечно! Чтобы установить тики, просто, ну... Установите галочки (см. matplotlib.pyplot.xticks или ax.set_xticks). (Кроме того, вам не нужно вручную устанавливать facecolor патчей. Вы можете просто передать аргумент ключевого слова.)

В остальном вам нужно сделать несколько более причудливые вещи с маркировкой, но matplotlib делает это довольно легко.

В качестве примера:

import matplotlib.pyplot as plt
import numpy as np
from matplotlib.ticker import FormatStrFormatter

data = np.random.randn(82)
fig, ax = plt.subplots()
counts, bins, patches = ax.hist(data, facecolor='yellow', edgecolor='gray')

# Set the ticks to be at the edges of the bins.
ax.set_xticks(bins)
# Set the xaxis tick labels to be formatted with 1 decimal place...
ax.xaxis.set_major_formatter(FormatStrFormatter('%0.1f'))

# Change the colors of bars at the edges...
twentyfifth, seventyfifth = np.percentile(data, [25, 75])
for patch, rightside, leftside in zip(patches, bins[1:], bins[:-1]):
    if rightside < twentyfifth:
        patch.set_facecolor('green')
    elif leftside > seventyfifth:
        patch.set_facecolor('red')

# Label the raw counts and the percentages below the x-axis...
bin_centers = 0.5 * np.diff(bins) + bins[:-1]
for count, x in zip(counts, bin_centers):
    # Label the raw counts
    ax.annotate(str(count), xy=(x, 0), xycoords=('data', 'axes fraction'),
        xytext=(0, -18), textcoords='offset points', va='top', ha='center')

    # Label the percentages
    percent = '%0.0f%%' % (100 * float(count) / counts.sum())
    ax.annotate(percent, xy=(x, 0), xycoords=('data', 'axes fraction'),
        xytext=(0, -32), textcoords='offset points', va='top', ha='center')


# Give ourselves some more room at the bottom of the plot
plt.subplots_adjust(bottom=0.15)
plt.show()

enter image description here

Ответ 2

Чтобы добавить префиксы SI к меткам оси, вы хотите использовать QuantiPhy. Фактически, в его документации есть пример, который показывает, как это сделать: Пример MatPlotLib.

Я думаю, вы добавили бы что-то вроде этого в свой код:

from matplotlib.ticker import FuncFormatter
from quantiphy import Quantity

time_fmtr = FuncFormatter(lambda v, p: Quantity(v, 's').render(prec=2))
ax.xaxis.set_major_formatter(time_fmtr)