When you are working on the Jupyter notebook and using seaborn or matplotlib for plotting the curves, you will see that many times your plot is overlapping and you want to change the size of the plot. You can use the below the line of code to resize your plot.

plt.figure(figsize=(16, 24))

You need to change the figsize parameter values based on your need.

I am using it in my model, you can see the below-running code for your reference.

wft = WeibullAFTFitter().fit(X, 'time', 'status', ancillary_df=True)
plt.figure(figsize=(16, 24))
wft.plot()

happy Coding!