yufeiminds / echarts-python

Deprecated. Use PyEcharts instead. https://github.com/pyecharts/pyecharts
417 stars 167 forks source link

Implemented plot method for data science work flow. #5

Closed yufeiminds closed 8 years ago

yufeiminds commented 8 years ago

Consider python user who working for data science. Someone want to use echarts like R/Matlab etc. such as,

from echarts import Echart, Pie

chart = Echart('GDP', 'This is a fake chart')
chart.use(Pie('Hi', [2, 3, 4, 5]))

chart.plot()

and we can see the chart on browser immediately.

Thanks Zian Peng pengzianzyec055@gmail.com 's suggestion.