gpt4 book ai didi

python - 如何将 'markersize' 参数添加到 DataFrame 图中?

转载 作者:行者123 更新时间:2023-12-04 01:45:42 24 4
gpt4 key购买 nike

我正在尝试绘制一个 DataFrame 并且我想修改标记大小,但似乎我无法在同一个 plot() 调用中执行此操作。

ax0 = df_can_t.plot(kind='scatter', x='Year', y='China', \
figsize=(30,10), color = 'red', marker= '+', markersize = 14.0)

我收到错误:AttributeError:未知属性标记大小。

但是,似乎允许使用 'markersize'( https://matplotlib.org/api/_as_gen/matplotlib.pyplot.plot.html ),所以我不确定问题是什么。

最佳答案

scatter plot ,你的大小参数只是 s , 尝试:

ax0 = df_can_t.plot(kind='scatter', x='Year', y='China', \
figsize=(30,10), color = 'red', marker= '+', s = 14.0)

这是一个MVCE:
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

df = sns.load_dataset('iris')

ax = df.plot(kind='scatter', x='petal_width', y='sepal_width', s=10.0)

输出:

enter image description here

关于python - 如何将 'markersize' 参数添加到 DataFrame 图中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55368045/

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