我正在尝试使用日期时间滑块构建仪表板应用程序,但是以下代码不起作用-网址显示“错误加载布局”。我是在做一些愚蠢的事情,还是在日期时间对象上构建滑块所需的技巧?可复制的代码如下:
import dash
import dash_core_components as dcc
import dash_html_components as html
import datetime
base = datetime.datetime.today()
date_list = [base - datetime.timedelta(days=x) for x in range(0, 10)]
app = dash.Dash()
app.layout = html.Div([
html.Label('Slider'),
dcc.RangeSlider(min=min(date_list),
max=max(date_list),
value=min(date_list))
])
if __name__ == '__main__':
app.run_server()
答案 0 :(得分:2)
Plotly-Dash当前不支持日期时间对象。
为您解决的一个问题是在我对另一个问题Ploly datetime的回答中进行描述
一种可能的解决方案是在初始化时使用两个不同的参数:
使用熊猫生成时间戳的示例:
需要进口:
import pandas as pd
import time
一些需要的功能:
daterange = pd.date_range(start='2017',end='2018',freq='W')
def unixTimeMillis(dt):
''' Convert datetime to unix timestamp '''
return int(time.mktime(dt.timetuple()))
def unixToDatetime(unix):
''' Convert unix timestamp to datetime. '''
return pd.to_datetime(unix,unit='s')
def getMarks(start, end, Nth=100):
''' Returns the marks for labeling.
Every Nth value will be used.
'''
result = {}
for i, date in enumerate(daterange):
if(i%Nth == 1):
# Append value to dict
result[unixTimeMillis(date)] = str(date.strftime('%Y-%m-%d'))
return result
对于RangeSlider对象,您可以像这样初始化它:
dcc.RangeSlider(
id='year_slider',
min = unixTimeMillis(daterange.min()),
max = unixTimeMillis(daterange.max()),
value = [unixTimeMillis(daterange.min()),
unixTimeMillis(daterange.max())],
marks=getMarks(daterange.min(),
daterange.max())
)
答案 1 :(得分:1)
这肯定应该可行,并且比任何其他解决方案都容易
marks = {int(i):str(j) for i,j in zip(range(len(df.years)), df[“years”])}
然后您可以在功能回调中模仿相同的内容,以通过字典键更新值。
答案 2 :(得分:0)
在查看文档时,为什么不尝试仅使用常规滑块dcc.Slider
。您可以在文档底部查看示例:https://dash.plot.ly/getting-started#dash-app-layout。
编辑:从文档中添加了代码示例。
您可以将其作为元素添加到列表hmtl.Div
中。
html.Label('Slider'),
dcc.Slider(
min=0,
max=9,
marks={i: 'Label {}'.format(i) if i == 1 else str(i) for i in range(1, 6)},
value=5,
),
答案 3 :(得分:0)
您的索引单位是什么?熊猫的日期时间还是数字?
我尝试进行一些调试:
app.layout = html.Div([dcc.RangeSlider(id='my-slider',
min=1,
max=5,
step=1,
# value=2,
),
html.H1(id='product')])
事实证明,如果我设置了该值(因此取消注释value=2
),它将中断。
如果您可以不使用value
参数,那就太好了。
编辑:
value
参数必须是列表(范围 ...)。设置value=[2,3]
即可。这可能会解决您的问题。
答案 4 :(得分:0)
只需添加。
import dash
import dash_core_components as dcc
import dash_html_components as html
from dash.dependencies import Input, Output
from datetime import datetime, timedelta, datetime, date
dates = ['03-02-2021', '03-03-2021', '03-04-2021', '03-05-2021', '03-06-2021', '03-07-2021']
mytotaldates = {i:datetime.strptime(x, "%m-%d-%Y").date() for i,x in enumerate(dates)}
a = (list(mytotaldates.keys()))
app = dash.Dash()
app.layout = html.Div(children=[
dcc.Slider(
id='Dateslider',
min=a[0],
max=a[-1],
marks=mytotaldates,
value=a[-1],
),
html.Div(id='OutputContainer')
])
@app.callback(
Output('OutputContainer', 'children'),
[Input('Dateslider', 'value')])
def rangerselection(val):
val = mytotaldates[val]
return f'Selected Date: {val}'
if __name__ == '__main__':
app.run_server(debug=False, use_reloader=True)