数据可视化
风控大鱼
这个作者很懒,什么都没留下…
展开
-
AttributeError: 'Request' object has no attribute 'is_xhr' 报错的解决办法
在用 Flask+VUE 做前后端分离的数据可视化项目时,遇到了这个报错:AttributeError: 'Request' object has no attribute 'is_xhr'是 Werkzeug 的版本问题,只需在命令行执行: pip install Werkzeug==0.16.1 ⬇️ 扫描下方二维码关注公众号【数据池塘】 ⬇️回复【算法】,获取最全面的...原创 2020-04-22 09:58:39 · 7044 阅读 · 3 评论 -
Python Plotly Dash 画多折线图
import plotly.plotly as pyimport plotly.graph_objs as go# Create random data with numpyimport numpy as npN = 500random_x = np.linspace(0, 1, N)random_y = np.random.randn(N)# Create a trace...原创 2019-07-07 17:39:26 · 6236 阅读 · 2 评论 -
Plotly Dash 画多个子图
import plotly.plotly as pyimport plotly.graph_objs as gotrace1 = go.Scatter( x=[1, 2, 3], y=[4, 5, 6])trace2 = go.Scatter( x=[20, 30, 40], y=[50, 60, 70], xaxis='x2', yax...原创 2019-07-05 09:39:47 · 6173 阅读 · 2 评论 -
用 dash_bootstrap_components 为 dash 生成美观的导航栏
先安装 pip 包:pip install dash-bootstrap-components把 bootstrap 的 sheetstyle 加入你的 app 中:app = dash.Dash(__name__, external_stylesheets=[dbc.themes.BOOTSTRAP])生成 navbar:import dash_bootstrap_co...原创 2019-07-17 10:00:27 · 5351 阅读 · 1 评论