Построение каждого категориального значения списка matplotlib - PullRequest
1 голос
/ 17 июня 2020

Я думаю, что у меня действительно простая проблема, но я не могу придумать решение ... Рассмотрим следующий код:

import numpy as np
import matplotlib.pyplot as plt

# Create some mock data
t = ["A" , "B", "C", "D", "A", "B", "C"]
data1 = [1,2,3,4,5,6,7]
data2 = [6,2,8,2,6,8,2]

fig, ax1 = plt.subplots()

color = 'tab:red'
ax1.set_xlabel('time (s)')
ax1.set_ylabel('exp', color=color)
ax1.plot(t, data1, color=color)
ax1.tick_params(axis='y', labelcolor=color)

ax2 = ax1.twinx()  # instantiate a second axes that shares the same x-axis

color = 'tab:blue'
ax2.set_ylabel('sin', color=color)  # we already handled the x-label with ax1
ax2.plot(t, data2, color=color)
ax2.tick_params(axis='y', labelcolor=color)

fig.tight_layout()  # otherwise the right y-label is slightly clipped
plt.show()

Полученное изображение выглядит так: enter image description here

Я хочу, чтобы на оси X каждый элемент отображался отдельно, примерно так (без 1) enter image description here

1 Ответ

1 голос
/ 17 июня 2020

Вы должны использовать числа для построения x-данных, а затем перемаркировать x-галочки с желаемыми категориальными значениями, как это сделано в следующем

xvals = range(len(t)) # This is the actual x-values to be plotted on the x-axis

fig, ax1 = plt.subplots()

# Remaining code

ax1.plot(xvals, data1, color=color) # Use xvals here
ax1.tick_params(axis='y', labelcolor=color)
ax1.set_xticks(xvals) # Set the ticks at desired locations
ax1.set_xticklabels(t) # Set the categorical values as tick-labels

# Remaining code

ax2.plot(xvals, data2, color=color) # Use xvals here
ax2.tick_params(axis='y', labelcolor=color)
ax2.set_xticks(xvals) # Set the ticks at desired locations
ax2.set_xticklabels(t) # Set the categorical values as tick-labels

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...