【优秀翻译】Dash用户指南 01-02 安装与应用布局

简介:

安装

Dash需要安装以下几个库才能正常使用,这些库仍在不断更新,请注意及时升级。

Dash支持Python2与Python3。

pip install dash==0.25.0 # Dash核心后端 

pip install dash-renderer==0.13.2 # Dash前端 

pip install dash-html-components==0.11.0 # HTML组件 

pip install dash-core-components==0.27.1 # Dash核心组件 

pip install plotly --upgrade # Plotly图形库

译注:通过以下链接查看Dash及其支持库的最新版本。

● dash
● dash-renderer
● dash-html-components

● dash-core-components

2. Dash应用布局

本教程通过6个例子介绍如何创建Dash应用。

使用Dash生成HTML

Dash应用由两部分组成,第一部分是应用的布局layout,描述应用的设计样式。第二部分描述应用的交互性。

Dash为每个可视化组件都提供了Python类,Plotly提供的dash_core_componentsdash_html_components组件库包含了一系列Dash组件,如果这些还不够,可以使用JavaScript 和React.js创建更多组件。

首先,新建 app.py文件,输入以下代码:

# -*- coding: utf-8 -*-

import dash
import dash_core_components as dcc

import dash_html_components as html
app.layout = html.Div(children=[

app = dash.Dash()

 html.H1(children='你好,Dash'),
 dcc.Graph(

html.Div(children='''
 Dash:Python网络应用框架
 '''),

 id='example-graph',
 {'x': [1, 2, 3], 'y': [4, 1, 2], 'type': 'bar', 'name': 'SF'},

figure={
 'data': [
 'layout': {

{'x': [1, 2, 3], 'y': [2, 4, 5], 'type': 'bar', 'name': u'Montréal'},
 ],
 app.run_server(debug=True)

'title': 'Dash数据可视化'
 }
 }
 )
])
if __name__ == '__main__':

运行以下语句:

$ python app.py

...Running on http://127.0.0.1:8050/ (Press CTRL+C to quit)

在浏览器中访问 http://127.0.0.1:8050/ ,就可看到下图所示内容。

050bc9f968a92f3ac592a7aab324e6bee3752926

注意:

layout html.Div dcc.Graph 这样的组件树组成。
dash_html_components 库为每个HTML标签都提供了对应的组件。 html.H1(children='你好,Dash') 组件可以生成 <h1>你好,Dash</h1> 这样的HTML语句。
并非所有组件都使用纯HTML语言。 dash_core_components 这种交互式高阶组件库,就是由JavaScript、HTML和CSS编写,并由React.js库生成的。
Dash是 声明式 的,可以用关键字的属性描述组件。即,Dash主要通过属性描述应用。
children 特性 [1] 有些特殊。一般来说,它是第一个属性 [2] ,可以省略: html.H1(children = '你好, Dash') html.H1('你好,Dash') 的效果一样。此特性支持字符串、数字、单个组件或组件列表。

你的应用字体看上去可能与本教程显示的不一样,这是因为本教程的应用使用了自定义CSS样式,修改了默认元素的格式。要了解更多内容,可以查阅CSS教程。如果需要,可以添加app.css.append_css({"external_url": "https://codepen.io/chriddyp/pen/bWLwgP.css"})至本文件,就能呈现出与本例相同的效果。

关于HTML更多的内容

dash_html_components 库除了为HTML参数提供了关键字外,还为每个HTML标签提供了组件类。

在Dash应用中,可以使用以下代码通过组件的行内样式修改自定义文本。

# -*- coding: utf-8 -*-

import dash
import dash_core_components as dcc

import dash_html_components as html
 'background': '#111111',

app = dash.Dash()

colors = {
 'text': '#7FDBFF'
}
app.layout = html.Div(style={'backgroundColor': colors['background']}, children=[

html.H1(
 children='你好,Dash',
 style={
 'textAlign': 'center',
 'color': colors['text']
 }
 ),
 id='example-graph-2',

html.Div(children='Dash:Python网络应用框架', style={
 'textAlign': 'center',
 'color': colors['text']
 }),

 dcc.Graph(
 figure={
 'data': [
 'layout': {

{'x': [1, 2, 3], 'y': [4, 1, 2], 'type': 'bar', 'name': 'SF'},
 {'x': [1, 2, 3], 'y': [2, 4, 5], 'type': 'bar', 'name': u'Montréal'},
 ],
 'plot_bgcolor': colors['background'],
 app.run_server(debug=True)

'paper_bgcolor': colors['background'],
 'font': {
 'color': colors['text']
 }
 }
 }
 )
])
if __name__ == '__main__':

df645f102e8c17771fe0d0d14188ec8d8932d8e9

本例中,用style特性修改html.Divhtml.H1组件的行内样式。

Dash应用把html.H1('你好,Dash', style={'textAlign': 'center', 'color': '#7FDFF'})渲染为 <h1 style="text-align: center; color: #7FDFF">你好,Dash</h1>

dash_html_components与HTML属性有以下几点显著区别:

HTML的 style 特性是用 分号 分割的字符串,Dash用的是 字典
Dash的 style 字典关键字是 驼峰式 ,相对于HTML的 text-align ,Dash是 textAlign
HTML的 class 属性在Dash中是 className
HTML标签的子项(即 children )是通过 children 关键字指定的。一般来说,作为第一个参数,可以省略。

除此之外,其他所有HTML属性与标签在Python中都有效。

可复用组件

在Python中写入标记符号(Markup),即可创建表格等可复用组件,无需切换环境或语言。

下面是用Pandas DataFrame生成表格的例子。

import dash

import dash_core_components as dcc

import dash_html_components as html

import pandas as pd
 'https://gist.githubusercontent.com/chriddyp/'

df = pd.read_csv(
 'c78bf172206ce24f77d6363a2d754b59/raw/'

'c353e8ef842413cae56ae3920b8fd78468aa4cb2/'
def generate_table(dataframe, max_rows=10):

'usa-agricultural-exports-2011.csv')

 return html.Table(
 # Header
 html.Td(dataframe.iloc[i][col]) for col in dataframe.columns

[html.Tr([html.Th(col) for col in dataframe.columns])] +

 # Body
 [html.Tr([
 html.H4(children='2011年美国农业出口数据表'),

]) for i in range(min(len(dataframe), max_rows))]
 )

app = dash.Dash()

app.layout = html.Div(children=[
 generate_table(df)
])
 app.run_server(debug=True)

if __name__ == '__main__':

 

eda9b33c061db5e366252c85a4b6335e54a8875e
可视化示例

下面的例子用Pandas DataFrame创建散点图。

import dash

import dash_core_components as dcc

import dash_html_components as html

import plotly.graph_objs as go
app = dash.Dash()

import pandas as pd


df = pd.read_csv(
 '5d1ea79569ed194d432e56108a04d188/raw/' +

'https://gist.githubusercontent.com/chriddyp/' +
app.layout = html.Div([

'a9f9e8076b837d541398e999dcbac2b2826a81f8/'+
 'gdp-life-exp-2007.csv')

 dcc.Graph(
 x=df[df['continent'] == i]['gdp per capita'],

id='life-exp-vs-gdp',
 figure={
 'data': [
 go.Scatter(
 y=df[df['continent'] == i]['life expectancy'],
 'line': {'width': 0.5, 'color': 'white'}

text=df[df['continent'] == i]['country'],
 mode='markers',
 opacity=0.7,
 marker={
 'size': 15,
 },
 name=i
 ) for i in df.continent.unique()
 ],
 legend={'x': 0, 'y': 1},

'layout': go.Layout(
 xaxis={'type': 'log', 'title': 'GDP Per Capita'},
 yaxis={'title': '平均寿命'},
 margin={'l': 40, 'b': 40, 't': 10, 'r': 10},
 hovermode='closest'
 )
 app.run_server()

}
 )
])
if __name__ == '__main__':

6b3513abd2b8ddca606104baa2ed87bdd55062ea

这些图支持交互响应。鼠标悬浮在点上可查看数据的值,点击图例可切换展示的内容,点击拖拽可缩放图形,按下Shift键,再点击拖拽可挪动图形内容。

Dash与Markdown

通过dash_html_components库可以显示HTML的内容,但是,直接写HTML语句非常枯燥。如需要写入大量的格式化文本,可使用dash_core_components库中Markdown组件。

import dash_core_components as dcc

import dash_html_components as html

import dash

app = dash.Dash()
# 1级标题 \#

markdown_text = '''
#### 标题
## 2级标题 \##

#### 分割线
**粗体**,文字两边各写两个\*星号

***

### 粗体斜体
*斜体*,文字两边各写一个\*星号
2. [没有提示的链接](http://url.com/)

1. [有提示的链接](http://url.com/ "有提示的链接")

#### 表格 不支持
姓名|语文|数学|总成绩
使用\>是一级引用,使用两个>,即>>,是引用里面的引用

---|:---|:---:|---:
张三|100|90|190

#### 引用文字
>引用文字
>>引用里面的引用
'''
if __name__ == '__main__':

app.layout = html.Div([
 dcc.Markdown(children=markdown_text)
])
 app.run_server()

2b0daa036672fbf71544f284192d43e749e70869

Dash支持Markdown,使用CommonMark作为Markdown规范。如果不了解Markdown,请查阅 60秒Markdown教程,或本文译者编写的5分钟玩转Markdown。

译注:经测试,不支持表格、[TOC]生成目录、代码块等

核心组件

dash_core_components库包含了一组高阶组件,包括下拉菜单、图形、Markdown等等。

和其它Dash组件一样,这些组件都是声明式的,组件的关键字参数也一样,每个选项都可以进行配置。

本教程将逐一介绍这些组件,在Dash核心组件示例库中也可以查看这些组件。

下面是一些常用的组件:

# -*- coding: utf-8 -*-

import dash
import dash_html_components as html

import dash_core_components as dcc
 {"external_url": "https://codepen.io/chriddyp/pen/bWLwgP.css"})

app = dash.Dash()


app.css.append_css(
 dcc.Dropdown(

app.layout = html.Div([
 html.Label('下拉菜单'),
 options=[
 {'label': '天津', 'value': '天津'},

{'label': '北京', 'value': '北京'},
 {'label': '上海', 'value': '上海'}
 ],
 value='北京'
 ),
 {'label': '天津', 'value': '天津'},

html.Label('多选下拉菜单'),
 dcc.Dropdown(
 options=[
 {'label': '北京', 'value': '纽约'},
 dcc.RadioItems(

{'label': '上海', 'value': '上海'}
 ],
 value=['天津', '上海'],
 multi=True
 ),

 html.Label('单选钮'),
 options=[
 ),

{'label': '北京', 'value': '纽约'},
 {'label': '天津', 'value': '天津'},
 {'label': '上海', 'value': '上海'}
 ],
 value='天津'

 html.Label('多选框'),
 values=['天津', '上海']

dcc.Checklist(
 options=[
 {'label': '北京', 'value': '纽约'},
 {'label': '天津', 'value': '天津'},
 {'label': '上海', 'value': '上海'}
 ],
 ),
 marks={i: '标签 {}'.format(i) if i == 1 else str(i) for i in range(1, 6)},

html.Label('文本输入'),
 dcc.Input(value='天津', type='text'),

 html.Label('滑动条'),
 dcc.Slider(
 min=0,
 max=9,
 value=5,
 ),
], style={'columnCount': 2})
 app.run_server(debug=True)

if __name__ == '__main__':

 

6fbfafa919c6919a533dab04fb80b92e2fe655cc
调用 帮助help

Dash组件是声明式的:在实例化关键字参数时,可设置可配置项。可在Python控制台中调用帮助help ,查看组件及其参数的详细说明。

>>> help(dcc.Dropdown)

class Dropdown(dash.development.base_component.Component)

| A Dropdown component.
| Dropdown is an interactive dropdown element for selecting one or more

| items.
| The values and labels of the dropdown items are specified in the `options`
| Use a dropdown when you have many options (more than 5) or when you are

| property and the selected item(s) are specified with the `value` property.
|
| constrained for space. Otherwise, you can use RadioItems or a Checklist,
| - disabled (boolean; optional): If true, the option is disabled

| which have the benefit of showing the users all of the items at once.
|
| Keyword arguments:
| - id (string; optional)
| - className (string; optional)
| - value (string | list; optional): The value of the input. If `multi` is false (the default)

| - multi (boolean; optional): If true, the user can select multiple values
| - options (list; optional)
| - placeholder (string; optional): The grey, default text shown when no option is selected
| array of items with values corresponding to those in the

| then value is just a string that corresponds to the values
| provided in the `options` property. If `multi` is true, then
| multiple values can be selected at once, and `value` is an
| `options` prop.```

总结

layout用于描述Dash应用的形态,是结构化的树状组件。dash_html_components 库为HTML标签和关键字参数提供了类,用于描述styleclassNameid 等HTML属性 。dash_core_componets库生成控件和图形等高级组件。


原文发布时间为:2018-08-27
本文作者:呆鸟【翻译】
本文来自云栖社区合作伙伴“ Python爱好者社区”,了解相关信息可以关注“ Python爱好者社区”。
相关文章
|
9月前
|
前端开发
Hugo教程#4基础布局
前几期学习了布局,本期学习一下布局更多的用法,比如partial和block,其中partial可以吧每个布局引用,block可作为布局的扩展
79 0
|
安全 Windows
Markdown编辑器“MarkdownPad”下载安装(图)
MarkdownPad是Windows下的一个全功能Markdown编辑器。应该是使用.NET写的,依赖Microsoft .NET 4 Client Profile。 下载MarkdownPad 下载地址:http://markdownpad.com/ 打开网页后,点击“Download MarkdownPad”按钮开始下载: 如果看到以下页面还是没有开始下载,请点击“restart the download”。
2008 0
Qt中文翻译(官方文档,界面,工具等)集锦
Qt中文翻译(官方文档,界面,工具等)集锦
617 0
|
Web App开发 前端开发 Python
【译Py】Dash用户指南03_交互性简介
【译Py】Python交互式数据分析报告框架~Dash介绍 【译Py】Dash用户指南01-02_安装与应用布局【译Py】Dash用户指南03_交互性简介【译Py】Dash用户指南04_交互式数据图【译Py】Dash用户指南05_使用State进行回调 3. 交互性简介 本教程的第一部分介绍了Dash应用布局 ,第二部分将介绍如何实现Dash应用的交互。
1966 0
|
Web App开发 前端开发 JavaScript
【译Py】Dash用户指南01-02_安装与应用布局
封面 【译Py】Python交互式数据分析报告框架~Dash介绍 【译Py】Dash用户指南01-02_安装与应用布局【译Py】Dash用户指南03_交互性简介【译Py】Dash用户指南04_交互式数据图【译Py】Dash用户指南05_使用State进行回调 1. 安装 Dash需要安装以下几个库才能正常使用,这些库仍在不断更新,请注意及时升级。
1510 0
|
开发工具
开发工具总结(5)之Markdown语法图文全面详解及其工具介绍
版权声明:本文为博主原创文章(少量文字参考他人博文,已加上引用说明),未经博主允许不得转载。https://www.jianshu.com/p/c0a2897ad4eb 转载请标明出处:https://www.jianshu.com/p/c0a2897ad4eb 本文出自 AWeiLoveAndroid的博客 【前言】写过博客或者github上面的文档的,应该知道Markdown语法的重要性,不知道的朋友们也别着急,一篇博客轻松搞定Markdown语法。
1647 0