gpt4 book ai didi

matplotlib - 更改 Seaborn Factorplot 中的标记大小

转载 作者:行者123 更新时间:2023-12-04 02:15:32 24 4
gpt4 key购买 nike

我正在尝试更改 Seaborn factorplots 中的标记大小,但我不确定要传递什么关键字参数

import seaborn as sns
exercise = sns.load_dataset("exercise")
g = sns.factorplot(x="time", y="pulse", hue="kind", data=exercise, ci= .95)

我试过了 标记尺寸 s 基于这些 StackOverFlow 答案,但似乎都没有效果

Seaborn_Example

pyplot scatter plot marker size

最佳答案

Factorplot正在调用底层函数 pointplot默认情况下接受参数 markers .这用于区分标记形状。可以使用 scale 更改所有线条和标记的大小。争论。

exercise = sns.load_dataset("exercise")
g = sns.factorplot(x="time", y="pulse", hue="kind", data=exercise, ci=95,
markers=['o', 'v', 's'],
scale = 1.5)

Same data as above with different shapes

另请注意 ci在您的示例中,0.95 会导致不同的数字,而 ci 几乎看不到。

关于matplotlib - 更改 Seaborn Factorplot 中的标记大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34702626/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com