Plotly: How to manually set the color of points in plotly express scatter plots?(Plotly:如何手动设置 plotly express 散点图中点的颜色?)
问题描述
https://plotly.com/python/line-and-scatter/ 有许多散点图示例,但没有一个向您展示如何在 px.scatter 中设置所有点的颜色:
https://plotly.com/python/line-and-scatter/ has many scatter plot examples, but not a single one showing you how to set all the points' colours within px.scatter:
# x and y given as DataFrame columns
import plotly.express as px
df = px.data.iris() # iris is a pandas DataFrame
fig = px.scatter(df, x="sepal_width", y="sepal_length")
fig.show()
我尝试添加 colour = 'red'
等不起作用.这些示例仅向您展示如何通过其他变量进行着色.
I've tried adding colour = 'red'
etc doesn't work. These examples only show you how to colour by some other variable.
原则上我可以添加另一个功能并将其设置为相同,但这似乎是完成任务的一种奇怪的方式......
In principle I could add another feature and set it all the same but that seems a bizzare way of accomplishing the task....
推荐答案
为此,您可以使用 color_discrete_sequence
参数.
For that you may use the color_discrete_sequence
argument.
fig = px.scatter(df, x="sepal_width", y="sepal_length", color_discrete_sequence=['red'])
这个参数是为离散的 color
因素使用自定义调色板,但如果你没有为 color
使用任何因素,它将使用第一个元素情节中的点.
This argument is to use a custom color paletter for discrete color
factors, but if you are not using any factor for color
it will use the first element for all the points in the plot.
关于离散调色板的更多信息:https://plotly.com/python/discrete-color/
More about discrete color palletes: https://plotly.com/python/discrete-color/
这篇关于Plotly:如何手动设置 plotly express 散点图中点的颜色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Plotly:如何手动设置 plotly express 散点图中点的颜色?


基础教程推荐
- 修改列表中的数据帧不起作用 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 包装空间模型 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01