gpt4 book ai didi

python - cph.plot() : how to make it bigger?

转载 作者:太空宇宙 更新时间:2023-11-03 20:19:00 25 4
gpt4 key购买 nike

我需要一些帮助来使我的 cph 图更大,但不幸的是,figsize 似乎无法应用于此图!有人可以帮我吗?

我在 pandas 上使用 Jupyter Notebook!

cph.plot()

这里的问题是绘图函数实际上绘制了我的特征,但它们太多了,所以它们的名称重叠,我什么也看不到!我需要更大的情节!

最佳答案

看起来像cph.plot()来电 matplotlib.pyplot.plot在后端。默认情况下,Matplotlib 使用最后创建的图形,因此创建具有指定宽度和高度的图形应该可以解决问题:

import matplotlib.pyplot as plt

# 8, 12 => width and height in inches
plt.figure(figsize=(8, 12))
cph.plot(/*your params here*/)

看看这是否有效。

关于python - cph.plot() : how to make it bigger?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58268164/

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