?python高级数据可视化视频Dash1

Posted webrobot

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了?python高级数据可视化视频Dash1相关的知识,希望对你有一定的参考价值。

 

 

在谷歌浏览器输入http://127.0.0.1:8050/后,回车,看到下图可视化结果

技术分享图片

技术分享图片

# -*- coding: utf-8 -*-
"""
Created on Sun Mar 11 10:16:43 2018

@author: Administrator
"""

import dash
import dash_core_components as dcc
import dash_html_components as html

app = dash.Dash()

app.layout = html.Div(children=[
    html.H1(children=‘Dash Tutorials‘),
    dcc.Graph(
        id=‘example‘,
        figure={
            ‘data‘: [
                {‘x‘: [1, 2, 3, 4, 5], ‘y‘: [9, 6, 2, 1, 5], ‘type‘: ‘line‘, ‘name‘: ‘Boats‘},
                {‘x‘: [1, 2, 3, 4, 5], ‘y‘: [8, 7, 2, 7, 3], ‘type‘: ‘bar‘, ‘name‘: ‘Cars‘},
            ],
            ‘layout‘: {
                ‘title‘: ‘Basic Dash Example‘
            }
        })
    ])
if __name__ == ‘__main__‘:
    app.run_server(debug=True)

  

以上是关于?python高级数据可视化视频Dash1的主要内容,如果未能解决你的问题,请参考以下文章

高级数据分析可视化低代码技术框架选型初步分析

Python数据可视化利器Matplotlib从入门到高级4

Python高级应用程序设计任务

15种Python片段去优化你的数据科学管道

python高级数据可视化Dash2

Python高级数据处理与可视化