简体   繁体   中英

Plotly Dash : Time Series Scatter plot rendering

I'm following the dash wind streaming example to stream data from a MySQL database. Data is added to the database every 5 seconds and queried respectively. I used the Interval component to query and a hidden div to store. I read the jsonified data in a callback function into a dataframe called df.

I generate a trace using the following:

trace_sensor_1 = Scatter(
    x=df.loc[df['sensor_id'] == 1]['timestamp'],
    y=df.loc[df['sensor_id'] == 1]['sensor_reading'],
    mode='markers+lines',
    name='Sensor 1',

生成的散点图 However, the scatter plot that this generates (attached) jumps all over the place. Is this due to the mode I'm using? How do I modify the trace to render a proper looking time series scatter?

For plotly its important to sort your data by your x axis first.

In pandas you can sort like this:

df_sorted = df.sort_values(by=['timestamp'])

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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