Answers for "change figure size jupyter notebook"

4

make jupyter notebook wider

from IPython.core.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
Posted by: Guest on March-30-2020
0

how to increase size of graph in jupyter

from matplotlib import pyplot as plt

f, ax = plt.subplots(1, 1, figsize = (15, 10))
calmap.yearplot(events, year=2015, ax=ax)
Posted by: Guest on September-09-2020

Code answers related to "change figure size jupyter notebook"

Python Answers by Framework

Browse Popular Code Answers by Language