Python:Plotly - 平行坐标 - 无标记线条的颜色

时间:2018-04-19 09:20:58

标签: python numpy plotly parallel-coordinates

我有以下问题。我正在使用plotlys平行坐标,我需要未标记的线条以标准灰色显示另一种颜色,因为它是默认值。有没有选择呢?

最好的问候![enter image description here] 1

1 个答案:

答案 0 :(得分:0)

你可以试试那种

import plotly.plotly as py
import plotly.graph_objs as go
data = [
    go.Parcoords(
        marker = dict(
            size = 10,
            color = 'rgba(152, 0, 0, .8)', # default
            line = dict(
                width = 2,
                color = 'rgb(0, 0, 0)'
            )
        )
    )
]