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.
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)
Output is a plot:
Those squares in the x-axis are
attr = ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"]
Edit: I tried the above code in spyder and it works just fine?