figsize

How do I enlarge my boxplot?

How do I enlarge my boxplot? Question: How can I enlarge my boxplot in jupyter? I can’t find any optional parameters that allows me to do so. specifically using seaborn. Asked By: The Dodo || Source Answers: You can try using rc parameter in seaborn: sns.set(rc={‘figure.figsize’:(11,8)}) where (11,8) refers 11 inch width and 8 inch …

Total answers: 1

How to change the figure size of a seaborn axes or figure level plot

How to change the figure size of a seaborn axes or figure level plot Question: How do I change the size of my image so it’s suitable for printing? For example, I’d like to use to A4 paper, whose dimensions are 11.7 inches by 8.27 inches in landscape orientation. Asked By: Michael Grazebrook || Source …

Total answers: 13

Specify figure size in centimeter in matplotlib

Specify figure size in centimeter in matplotlib Question: I am wondering whether you can specify the size of a figure in matplotlib in centimeter. At the moment I write: def cm2inch(value): return value/2.54 fig = plt.figure(figsize=(cm2inch(12.8), cm2inch(9.6))) But is there a native approach? Asked By: HyperCube || Source Answers: This is not an answer to …

Total answers: 5