Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

change plot size matplotlib python

plt.figure(figsize=(14,7))
Comment

change plot size matplotlib

from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')
Comment

change size of plot

fig, ax = plt.subplots(figsize=(width,height))
Comment

change size of plot python

# importing the matplotlib library
import matplotlib.pyplot as plt
  
# values on x-axis
x = [1, 2, 3, 4, 5]
# values on y-axis
y = [1, 2, 3, 4, 5]
  
# naming the x and y axis
plt.xlabel('x - axis')
plt.ylabel('y - axis')
  
# plotting a line plot with it's default size
print("Plot in it's default size: ")
plt.plot(x, y)
plt.show()
  
# plotting a line plot after changing it's width and height
f = plt.figure()
f.set_figwidth(4)
f.set_figheight(1)
  
print("Plot after re-sizing: ")
plt.plot(x, y)
plt.show()
Comment

plot size

fig.set_size_inches(18.5, 10.5, forward=True)
Comment

plot size

from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')
Comment

how to change plot size in matplotlib

# Import Library

import matplotlib.pyplot as plt

# Increase size of plot in jupyter

plt.rcParams["figure.figsize"] = (8,5.5)

# Define Data

x = [2, 4, 6, 8]
y = [5, 10, 15, 20]

# Plot

plt.plot(x, y, '-.')

# Display

plt.show()
Comment

PREVIOUS NEXT
Code Example
Python :: __gt__ 
Python :: python palindrome string 
Python :: django staff_member_required decorator 
Python :: new in python 
Python :: python3 hello world 
Python :: remove first 2 rows in pandas 
Python :: get working directory in python 
Python :: slack send message python 
Python :: http.server python 
Python :: python swap two elements 
Python :: datetimes to day of year python 
Python :: Converting utc time string to datetime object python 
Python :: Add new column based on condition on some other column in pandas. 
Python :: star pattern in python 
Python :: how to make custom buttons tkinter 
Python :: read live video from usb opencv python 
Python :: tofixed in python 
Python :: stack overflow python timedate 
Python :: pandas save one row 
Python :: python how to change an element in a multi dimensional list 
Python :: python beautifulsoup get content of tag 
Python :: pytest run only failed test 
Python :: python get name of function 
Python :: python string to array 
Python :: remove outliers python dataframe 
Python :: check pandas version 
Python :: python list comprehension with if 
Python :: python change column order in dataframe 
Python :: pasal 
Python :: ternary operator python 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =