pyecharts: How to display charts made with pyecharts in spyder?

594 Views Asked by At

This is my code.

from pyecharts import Line

attr = ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
v1 = [5, 20, 36, 10, 10, 100]
v2 = [55, 60, 16, 20, 15, 80]
line = Line("折线图示例")
line.add("商家A", attr, v1, mark_point=["average"])
line.add("商家B", attr, v2, is_smooth=True, mark_line=["max", "average"])
line.show_config()
line

output of the code is Html code instead of plot.

2

There are 2 best solutions below

4
On

Question unclear. Not sure what you actually want.

I take it as you want to have two plots: attr (x-axis) and v1 (y-axis), attr (x-axis) and v2 (y-axis)

import matplotlib.pyplot as plt

v1 = [5, 20, 36, 10, 10, 100]
v2 = [55, 60, 16, 20, 15, 80]
attr = ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
fig, ax = plt.subplots()
ax.plot(attr, v1)
ax.plot(attr, v2)

Output is a plot: enter image description here

Those squares in the x-axis are attr = ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]

Edit: I tried the above code in spyder and it works just fine? enter image description here

0
On

In notebook, use bar.render_notebook() instead of bar.render(). The output will be within notebook: