简体   繁体   English

如何使用 plotly express 在 x 轴上用时间绘制一些事件?

[英]How to graph some events with time on x-axis with plotly express?

I'm trying to build a dashboard using plotly dash and I have data that looks like this:我正在尝试使用 plotly 破折号构建仪表板,我的数据如下所示:

数据

Here the text data:这里的文本数据:

data={'SECTOR':['KHN','KHN','KHN','KHN','KHN','KHN'],
"NAME": ["ELSILATE","ELSILATE","ELSILATE","ELSILATE","ELSILATE","ELSILATE"],
"TIME" : ["4:00", "4:25","4:45", "5:03", "6:00","7:00"],
"POINT_NAME":["ZERAEIN","ZERAEIN","ZERAEIN","ZERAEIN","ZERAEIN","ZERAEIN"],
"MESSAGE":["Change Status","Operator Control","Return to Normal", 
"Operator Control", "Return to Normal","Return to Normal"],
"VALUE":["OPEN","CLOSE","NORMAL","OPEN","NORMAL","CLOSE"],
"ch_open":[1,0,0,0,0,0],
"ch_close":[0,2,0,0,0,0],
"normal_open":[0,0,3,0,0,0],
"command_open":[0,0,0,4,0,0],
"command_close":[0,0,0,0,5,0],
"normal_close":[0,0,0,0,0,6]}

df_cb=pd.DataFrame(data)

I used pandas to show a number for every event.我使用 pandas 来显示每个事件的编号。 I want to show the time versus the event of open/close/normal/control,close,etc.我想显示时间与打开/关闭/正常/控制、关闭等事件的关系。 for every sector, name, adn point_name !对于每个扇区,名称和点名!

I manage to get it like this我设法得到这样的

输出

from a code on the inte.net but I can't think of a way to show time in x-axis来自 inte.net 上的代码,但我想不出一种在 x 轴上显示时间的方法

Here is the code:这是代码:

import matplotlib.pyplot as plt
import numpy as np

#for a specific line cb :


df_ex = df_cb.loc[df_cb['POINT_NAME'].str.contains('ZERAEIN')]
ch_open=list(df_ex["ch_open"])
ch_close=list(df_ex["ch_close"])
normal_open=list(df_ex["normal_open"])
normal_close=list(df_ex["normal_close"])
command_open=list(df_ex["command_open"])
command_close=list(df_ex["command_close"])


data = [ch_open,
        ch_close, 
        normal_open,
       normal_close,
       command_open,
       command_close]

fig = plt.figure()
ax = fig.add_subplot(111)
ax.axes.get_yaxis().set_visible(False)
ax.set_aspect(1)

def avg(a, b):
    return (a + b) / 2.0

for y, row in enumerate(data):
    for x, col in enumerate(row):
        x1 = [x, x+1]
        y1 = [0, 0]
        y2 = [1, 1]
        if col == 1:
            plt.fill_between(x1, y1, y2=y2, color='yellow')
            plt.text(avg(x1[0], x1[1]), avg(y1[0], y2[0]), "A", 
                                        horizontalalignment='center',
                                        verticalalignment='center')
        if col == 2:
            plt.fill_between(x1, y1, y2=y2, color='red')
            plt.text(avg(x1[0], x1[0]+1), avg(y1[0], y2[0]), "B", 
                                        horizontalalignment='center',
                                        verticalalignment='center')
        if col == 3:
            plt.fill_between(x1, y1, y2=y2, color='orange')
            plt.text(avg(x1[0], x1[0]+1), avg(y1[0], y2[0]), "C", 
                                        horizontalalignment='center',
                                        verticalalignment='center')
        if col == 4:
            plt.fill_between(x1, y1, y2=y2, color='brown')
            plt.text(avg(x1[0], x1[0]+1), avg(y1[0], y2[0]), "D", 
                                        horizontalalignment='center',
                                        verticalalignment='center')
        if col == 5:
            plt.fill_between(x1, y1, y2=y2, color='green')
            plt.text(avg(x1[0], x1[0]+1), avg(y1[0], y2[0]), "E", 
                                        horizontalalignment='center',
                                        verticalalignment='center')
        if col == 6:
            plt.fill_between(x1, y1, y2=y2, color='black')
            plt.text(avg(x1[0], x1[0]+1), avg(y1[0], y2[0]), "F", 
                                        horizontalalignment='center',
                                        verticalalignment='center')

plt.ylim(1, 0)
plt.show()

would be nice to have it like this with time shows as x-axis:最好是这样,时间显示为 x 轴:

输出

I convert TIME to datetime我将TIME转换为datetime时间

df_ex['TIME'] = pd.to_datetime(df_ex['TIME'])

And late use shift(-1) to have time from next row in current row as TIME_END .后期使用shift(-1)将当前行中下一行的时间作为TIME_END

df_ex['TIME_END'] = df_ex['TIME'].shift(-1)

It needs also to add some value in last 'TIME_END' instead of NaT它还需要在最后一个'TIME_END'而不是NaT中添加一些值

df_ex.loc[last_index, 'TIME_END'] = df_ex.loc[last_index, 'TIME'] + dt.timedelta(minutes=25)

This way I have start and end in one row and I can use them to draw rectangles.这样我就可以在一行中startend ,我可以用它们来绘制矩形。

for index, row in df_ex.iterrows():

    x = [row['TIME'], row['TIME_END']]
    y1 = [0, 0]
    y2 = [1, 1]
        
    ax.fill_between(x, y1, y2=y2, color=color)

I also use if/else to set different color for different VALUE .我还使用if/else为不同的VALUE设置不同的颜色。


Full working code:完整的工作代码:

import pandas as pd
import matplotlib.pyplot as plt
import datetime as dt

data = {
    'SECTOR': ['KHN','KHN','KHN','KHN','KHN','KHN'],
    "NAME": ["ELSILATE","ELSILATE","ELSILATE","ELSILATE","ELSILATE","ELSILATE"],
    "TIME": ["4:00", "4:25","4:45", "5:03", "6:00","7:00"],
    "POINT_NAME": ["ZERAEIN","ZERAEIN","ZERAEIN","ZERAEIN","ZERAEIN","ZERAEIN"],
    "MESSAGE": ["Change Status","Operator Control","Return to Normal", 
    "Operator Control", "Return to Normal","Return to Normal"],
    "VALUE": ["OPEN","CLOSE","NORMAL","OPEN","NORMAL","CLOSE"],
}

df_cb = pd.DataFrame(data)

mask = df_cb['POINT_NAME'].str.contains('ZERAEIN')
df_ex = df_cb[mask].copy()

# convert to datetime
df_ex['TIME'] = pd.to_datetime(df_ex['TIME'])

# move one row up
df_ex['TIME_END'] = df_ex['TIME'].shift(-1)

# put some value in last row (instead of NaT)

#df_ex['TIME_END'].iloc[-1] = df_ex['TIME'].iloc[-1] + dt.timedelta(minutes=25)  # warning: set value on copy
last_index = df_ex.index[-1]
df_ex.loc[last_index, 'TIME_END'] = df_ex.loc[last_index, 'TIME'] + dt.timedelta(minutes=25)

# --- plot ---

fig, ax = plt.subplots(1, figsize=(16,3))
    
for index, row in df_ex.iterrows():
    #print(index, row)

    x = [row['TIME'], row['TIME_END']]
    y1 = [0, 0]
    y2 = [1, 1]
    
    if row['VALUE'] == 'OPEN':
        color = 'green'
    elif row['VALUE'] == 'CLOSE':
        color = 'red'
    else:
        color = 'yellow'
        
    ax.fill_between(x, y1, y2=y2, color=color)

    center_x = x[0] + (x[1] - x[0])/2
    center_y = (y2[0] + y1[0]) / 2
    #print(center_x, center_y)
    
    ax.text(center_x, center_y, row['VALUE'], horizontalalignment='center', verticalalignment='center')
     
plt.show()

在此处输入图像描述

On X-axis it displays time with date/day (because TIME can be in different days) and it would need to changes xticks to set different text - but I skip this problem.在 X 轴上它显示带有日期/日期的时间(因为TIME可以在不同的日期)并且它需要更改xticks以设置不同的文本 - 但我跳过了这个问题。


If you use different values y1 y2 for different VALUE then you can get如果您对不同的VALUE使用不同的值y1 y2那么您可以获得

在此处输入图像描述

or index, row in df_ex.iterrows():
    #print(index, row)

    if row['VALUE'] == 'OPEN':
        color = 'green'
        y = 1
    elif row['VALUE'] == 'CLOSE':
        color = 'red'
        y = 2
    else:
        color = 'yellow'
        y = 0

    x = [row['TIME'], row['TIME_END']]
    y1 = [y, y]
    y2 = [y+1, y+1]
        
    ax.fill_between(x, y1, y2=y2, color=color)
    
    center_x = x[0] + (x[1] - x[0])/2
    center_y = (y2[0] + y1[0]) / 2
    #print(center_x, center_y)
    
    ax.text(center_x, center_y, row['VALUE'], horizontalalignment='center', verticalalignment='center')

BTW:顺便提一句:

Meanwhile I realized that this type of chart can be called gantt and using this word in Google I found some interesting results with barh or broken_barh but examples needed to convert time to number of days or seconds and make more other calculations.同时我意识到这种类型的图表可以称为甘特图并且在谷歌中使用这个词我发现了一些有趣的结果barhbroken_barh但需要示例将时间转换为天数或秒数并进行更多其他计算。

See some articles - but they may need to login to portal.查看一些文章 - 但他们可能需要登录门户。

Gantt charts with Python's Matplotlib | Python 的甘特图 Matplotlib | by Thiago Carvalho | 蒂亚戈·卡瓦略 | Towards Data Science 走向数据科学

在此处输入图像描述

Full code: https://gist.github.com/Thiagobc23/ad0f228dd8a6b1c9a9e148f17de5b4b0完整代码: https://gist.github.com/Thiagobc23/ad0f228dd8a6b1c9a9e148f17de5b4b0

Create an Advanced Gantt Chart in Python | 在 Python 中创建高级甘特图 | by Abhijith Chandradas | 通过 Abhijith Chandradas | Geek Culture | 极客文化 | Medium 中等的

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM