Every line of 'matplotlib figure size' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
23 def figsize(sizex, sizey): 24 """Set the default figure size to be [sizex, sizey]. 25 This is just an easy to remember, convenience wrapper that sets:: 26 matplotlib.rcParams['figure.figsize'] = [sizex, sizey] 27 """ 28 import matplotlib 29 matplotlib.rcParams['figure.figsize'] = [sizex, sizey]