- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在下面的例子中:
import plotly.express as px
df = px.data.iris()
fig = px.scatter_3d(df, x='sepal_length', y='sepal_width', z='petal_width',
color='petal_length', symbol='species')
fig.show()
symbol
由
'species'
决定用圆形、菱形和正方形表示。当样本量变大并且样本点涂抹图时,这可能不是很清楚。我们如何自定义符号,比如使用圆形、方形和十字(或其他对比形状的组合)?
fig = px.scatter_3d(df8, x='X', y='Y', z='Z',
color='P', symbol='C')
# specify trace names and symbols in a dict
symbols = {'True': 'cross',
'False':'circle-open'}
# set all symbols in fig
for i, d in enumerate(fig.data):
fig.data[i].marker.symbol = symbols[fig.data[i].name]
fig.show()
哪里
C
有两个值:
True
或
False
.但是它捕获了错误:
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
<ipython-input-183-ea1e2ec7dd8e> in <module>
36 # set all symbols in fig
37 for i, d in enumerate(fig.data):
---> 38 fig.data[i].marker.symbol = symbols[fig.data[i].name]
39
40 fig.show()
KeyError: 'P, True'
{'ID': {0: '672590',
1: '672120',
2: '672090',
3: '672349',
4: '672453',
5: '672560',
6: '672051',
7: '880505',
8: '672593',
9: '880097',
10: '891458',
11: '672091',
12: '672569',
13: '672603',
14: '790030',
15: '672350',
16: '673480',
17: 'I00042',
18: '880297',
19: '894620'},
'X': {0: 0.20111215435497176,
1: 0.21248998904335528,
2: 0.2086689759935364,
3: 0.22337836085443835,
4: 0.17847099434376115,
5: 0.24827331723865761,
6: 0.14411891907440183,
7: 0.20863940038267367,
8: 0.166299824101773,
9: 0.20548401328860527,
10: 0.18007828100726822,
11: 0.21887731187605308,
12: 0.1971207940494219,
13: 0.19247420041228508,
14: 0.21605657330040987,
15: 0.15779241902165092,
16: 0.22536060645732897,
17: 0.19268784843224268,
18: 0.2400112771421119,
19: 0.22548124117213691},
'Y': {0: 2473.923076923077,
1: 2031.1538461538462,
2: 2383.1923076923076,
3: 1830.7692307692307,
4: 1780.2307692307693,
5: 1194.8461538461538,
6: 1641.0,
7: 1563.3076923076924,
8: 1246.2307692307693,
9: 931.6153846153846,
10: 1207.076923076923,
11: 799.6538461538462,
12: 560.8461538461538,
13: 1158.076923076923,
14: 1221.6923076923076,
15: 3030.076923076923,
16: 1178.076923076923,
17: 552.3846153846154,
18: 1380.3076923076924,
19: 1027.5384615384614},
'Z': {0: 385.84615384615387,
1: 288.46153846153845,
2: 281.9230769230769,
3: 273.61538461538464,
4: 252.0,
5: 231.69230769230768,
6: 213.30769230769232,
7: 203.3846153846154,
8: 191.07692307692307,
9: 189.46153846153845,
10: 181.07692307692307,
11: 176.76923076923077,
12: 173.30769230769232,
13: 169.6153846153846,
14: 166.15384615384616,
15: 165.30769230769232,
16: 160.53846153846155,
17: 159.84615384615384,
18: 159.0,
19: 145.3846153846154},
'C': {0: True,
1: True,
2: True,
3: True,
4: True,
5: True,
6: True,
7: True,
8: True,
9: True,
10: True,
11: False,
12: False,
13: True,
14: True,
15: True,
16: True,
17: False,
18: True,
19: True},
'P': {0: 'P',
1: 'P',
2: 'P',
3: 'P',
4: 'P',
5: 'X',
6: 'P',
7: 'P',
8: 'P',
9: 'P',
10: 'P',
11: 'P',
12: 'P',
13: 'P',
14: 'P',
15: 'P',
16: 'P',
17: 'X',
18: 'P',
19: 'P'}}
最佳答案
答案:
# specify trace names and symbols in a dict
symbols = {'setosa': 'cross',
'versicolor':'circle-open',
'virginica':'diamond-open'}
# set all symbols in fig
for i, d in enumerate(fig.data):
fig.data[i].marker.symbol = symbols[fig.data[i].name]
细节:
fig.data[<i>].marker.symbol = <symbol>
哪里
<i>
是一个整数索引,指定您要更改的跟踪,以及
<symbol>
3D 分散对象的属性是一个枚举,可以指定为以下枚举值之一:
['circle', 'circle-open', 'square', 'square-open',
'diamond', 'diamond-open', 'cross', 'x']
示例 1 - 单个跟踪:
fig.data[2].marker.symbol = 'circle-open'
fig.show()
plotly 1:
['setosa', 'versicolor', 'virginica']
然后您可以指定自己的名称和符号字典,并使用以下方法设置所有跟踪的所有符号:
# specify trace names and symbols in a dict
symbols = {'setosa': 'cross',
'versicolor':'circle-open',
'virginica':'diamond-open'}
# set all symbols in fig
for i, d in enumerate(fig.data):
fig.data[i].marker.symbol = symbols[fig.data[i].name]
fig.show()
plotly 2:
import plotly.express as px
df = px.data.iris()
fig = px.scatter_3d(df, x='sepal_length', y='sepal_width', z='petal_width',
color='petal_length', symbol='species')
#fig.show()
# specify trace names and symbols in a dict
symbols = {'setosa': 'cross',
'versicolor':'circle-open',
'virginica':'diamond-open'}
# set all symbols in fig
for i, d in enumerate(fig.data):
fig.data[i].marker.symbol = symbols[fig.data[i].name]
fig.show()
编辑:OP 对附录的回答
px.scatter3d
中分配颜色和符号。使用
color='P', symbol='C'
.这会对现在的跟踪名称产生影响,例如
'name': 'P, True'
.这导致以下内容中断:
for i, d in enumerate(fig.data):
fig.data[i].marker.symbol = symbols[fig.data[i].name]
根据您定义的符号字典判断:
# specify trace names and symbols in a dict
symbols = {'True': 'cross',
'False':'circle-open'}
看起来您只想通过
'name': 'P, True'
的最后一部分来区分您的符号。是
True
或
False
.您可以通过在
symbols[fig.data[i].name.split(', ')[1]]
中指定来对符号字典进行子集化从而得到:
import pandas as pd
import plotly.express as px
df8 = pd.DataFrame({'ID': {0: '672590',
1: '672120',
2: '672090',
3: '672349',
4: '672453',
5: '672560',
6: '672051',
7: '880505',
8: '672593',
9: '880097',
10: '891458',
11: '672091',
12: '672569',
13: '672603',
14: '790030',
15: '672350',
16: '673480',
17: 'I00042',
18: '880297',
19: '894620'},
'X': {0: 0.20111215435497176,
1: 0.21248998904335528,
2: 0.2086689759935364,
3: 0.22337836085443835,
4: 0.17847099434376115,
5: 0.24827331723865761,
6: 0.14411891907440183,
7: 0.20863940038267367,
8: 0.166299824101773,
9: 0.20548401328860527,
10: 0.18007828100726822,
11: 0.21887731187605308,
12: 0.1971207940494219,
13: 0.19247420041228508,
14: 0.21605657330040987,
15: 0.15779241902165092,
16: 0.22536060645732897,
17: 0.19268784843224268,
18: 0.2400112771421119,
19: 0.22548124117213691},
'Y': {0: 2473.923076923077,
1: 2031.1538461538462,
2: 2383.1923076923076,
3: 1830.7692307692307,
4: 1780.2307692307693,
5: 1194.8461538461538,
6: 1641.0,
7: 1563.3076923076924,
8: 1246.2307692307693,
9: 931.6153846153846,
10: 1207.076923076923,
11: 799.6538461538462,
12: 560.8461538461538,
13: 1158.076923076923,
14: 1221.6923076923076,
15: 3030.076923076923,
16: 1178.076923076923,
17: 552.3846153846154,
18: 1380.3076923076924,
19: 1027.5384615384614},
'Z': {0: 385.84615384615387,
1: 288.46153846153845,
2: 281.9230769230769,
3: 273.61538461538464,
4: 252.0,
5: 231.69230769230768,
6: 213.30769230769232,
7: 203.3846153846154,
8: 191.07692307692307,
9: 189.46153846153845,
10: 181.07692307692307,
11: 176.76923076923077,
12: 173.30769230769232,
13: 169.6153846153846,
14: 166.15384615384616,
15: 165.30769230769232,
16: 160.53846153846155,
17: 159.84615384615384,
18: 159.0,
19: 145.3846153846154},
'C': {0: True,
1: True,
2: True,
3: True,
4: True,
5: True,
6: True,
7: True,
8: True,
9: True,
10: True,
11: False,
12: False,
13: True,
14: True,
15: True,
16: True,
17: False,
18: True,
19: True},
'P': {0: 'P',
1: 'P',
2: 'P',
3: 'P',
4: 'P',
5: 'X',
6: 'P',
7: 'P',
8: 'P',
9: 'P',
10: 'P',
11: 'P',
12: 'P',
13: 'P',
14: 'P',
15: 'P',
16: 'P',
17: 'X',
18: 'P',
19: 'P'}})
fig = px.scatter_3d(df8, x='X', y='Y', z='Z',
color='P', symbol='C')
# specify trace names and symbols in a dict
symbols = {'True': 'cross',
'False':'circle-open'}
# set all symbols in fig
for i, d in enumerate(fig.data):
fig.data[i].marker.symbol = symbols[fig.data[i].name.split(', ')[1]]
fig.show()
关于python - Plotly:如何自定义 3D 散点图的符号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64057632/
好的,所以我编辑了以下... 只需将以下内容放入我的 custom.css #rt-utility .rt-block {CODE HERE} 但是当我尝试改变... 与 #rt-sideslid
在表格 View 中,我有一个自定义单元格(在界面生成器中高度为 500)。在该单元格中,我有一个 Collection View ,我按 (10,10,10,10) 固定到边缘。但是在 tablev
对于我的无能,我很抱歉,但总的来说,我对 Cocoa、Swift 和面向对象编程还很陌生。我的主要来源是《Cocoa Programming for OS X》(第 5 版),以及 Apple 的充满
我正在使用 meta-tegra 为我的 NVIDIA Jetson Nano 构建自定义图像。我需要 PyTorch,但没有它的配方。我在设备上构建了 PyTorch,并将其打包到设备上的轮子中。现
在 jquery 中使用 $.POST 和 $.GET 时,有没有办法将自定义变量添加到 URL 并发送它们?我尝试了以下方法: $.ajax({type:"POST", url:"file.php?
Traefik 已经默认实现了很多中间件,可以满足大部分我们日常的需求,但是在实际工作中,用户仍然还是有自定义中间件的需求,为解决这个问题,官方推出了一个 Traefik Pilot[1] 的功
我想让我的 CustomTextInputLayout 将 Widget.MaterialComponents.TextInputLayout.OutlinedBox 作为默认样式,无需在 XML 中
我在 ~/.emacs 中有以下自定义函数: (defun xi-rgrep (term) (grep-compute-defaults) (interactive "sSearch Te
我有下表: 考虑到每个月的权重,我的目标是在 5 个月内分散 10,000 个单位。与 10,000 相邻的行是我最好的尝试(我在这上面花了几个小时)。黄色是我所追求的。 我试图用来计算的逻辑如下:计
我的表单中有一个字段,它是文件类型。当用户点击保存图标时,我想自然地将文件上传到服务器并将文件名保存在数据库中。我尝试通过回显文件名来测试它,但它似乎不起作用。另外,如何将文件名添加到数据库中?是在模
我有一个 python 脚本来发送电子邮件,它工作得很好,但问题是当我检查我的电子邮件收件箱时。 我希望该用户名是自定义用户名,而不是整个电子邮件地址。 最佳答案 发件人地址应该使用的格式是: You
我想减小 ggcorrplot 中标记的大小,并减少文本和绘图之间的空间。 library(ggcorrplot) data(mtcars) corr <- round(cor(mtcars), 1)
GTK+ noob 问题在这里: 是否可以自定义 GtkFileChooserButton 或 GtkFileChooserDialog 以删除“位置”部分(左侧)和顶部的“位置”输入框? 我实际上要
我正在尝试在主页上使用 ajax 在 magento 中使用 ajax 显示流行的产品列表,我可以为 5 或“N”个产品执行此操作,但我想要的是将分页工具栏与结果集一起添加. 这是我添加的以显示流行产
我正在尝试使用 PasswordResetForm 内置函数。 由于我想要自定义表单字段,因此我编写了自己的表单: class FpasswordForm(PasswordResetForm):
据我了解,新的 Angular 7 提供了拖放功能。我搜索了有关 DnD 的 Tree 组件,但没有找到与树相关的内容。 我在 Stackblitz 上找到的一个工作示例.对比drag'ndrop功能
我必须开发一个自定义选项卡控件并决定使用 WPF/XAML 创建它,因为我无论如何都打算学习它。完成后应该是这样的: 到目前为止,我取得了很好的进展,但还有两个问题: 只有第一个/最后一个标签项应该有
我要定制xtable用于导出到 LaTeX。我知道有些问题是关于 xtable在这里,但我找不到我要找的具体东西。 以下是我的表的外观示例: my.table <- data.frame(Specif
用ejs在这里显示日期 它给我结果 Tue Feb 02 2016 16:02:24 GMT+0530 (IST) 但是我需要表现为 19th January, 2016 如何在ejs中执行此操作?
我想问在 JavaFX 中使用自定义对象制作 ListView 的最佳方法,我想要一个每个项目如下所示的列表: 我搜了一下,发现大部分人都是用细胞工厂的方法来做的。有没有其他办法?例如使用客户 fxm
我是一名优秀的程序员,十分优秀!