Every line of 'seaborn 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]
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code