| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
10年前发布

基于D3的Python绘图库:D3py

D3py是一个基于D3的Python绘图库。d3py的目的是提供一个简单的方法将来自命令行或简单的脚本数据画到浏览器窗口。

import d3py  import pandas  import numpy as np    # some test data  T = 100  # this is a data frame with three columns (we only use 2)  df = pandas.DataFrame({      "time" : range(T),      "pressure": np.random.rand(T),      "temp" : np.random.rand(T)  })  ## build up a figure, ggplot2 style  # instantiate the figure object  fig = d3py.PandasFigure(df, name="basic_example", width=300, height=300)   # add some red points  fig += d3py.geoms.Point(x="pressure", y="temp", fill="red")  # writes 3 files, starts up a server, then draws some beautiful points in Chrome  fig.show() 

散点图

线图

条形图

区域图



项目主页:http://www.open-open.com/lib/view/home/1404377308264

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1404377308264.html
D3py 图表/报表制作