我想创建一个折线图,但要使用具有不同比例的2个不同的Y轴来替换这段生成2个图表的代码:

ch = chartify.Chart(blank_labels=True)
ch.set_title("Elbow method with Euclidian distance")
ch.plot.line(
    data_frame=df_elbow,
    x_column='K',
    y_column='Distortion',
    line_width=1)
ch.show()

ch = chartify.Chart(blank_labels=True)
ch.set_title("Elbow method with sum of squared errors")
ch.plot.line(
    data_frame=df_elbow,
    x_column='K',
    y_column='SSE',
    line_width=1)
ch.show()


谢谢 !

最佳答案

更新:
已执行第二个y轴图!见chartify.examples.chart_second_axis()

旧答案:
目前尚不支持第二个y轴图,但我将为其添加issue。谢谢你的建议!

现在,我建议您退回到Bokeh。 See an example here

08-20 03:57