Answers for "whats matplotlib python"

10

python matplotlib

from matplotlib import pyplot as plt

# Median Developer Salaries by Age
dev_x = [25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35]

dev_y = [38496, 42000, 46752, 49320, 53200,
         56000, 62316, 64928, 67317, 68748, 73752]

plt.plot(dev_x, dev_y)
plt.xlabel('Ages')
plt.ylabel('Median Salary (USD)')
plt.title('Median Salary (USD) by Age')
plt.show()

#Basic line graph using python module matplotlib
Posted by: Guest on October-15-2020
0

figure in matplotlib

pyplot.figure(num=None, figsize=None, dpi=None, facecolor=None, 
			edgecolor=None, frameon=True, FigureClass=<class 'matplotlib.figure.Figure'>, 
            clear=False, **kwargs)
Posted by: Guest on February-04-2021

Python Answers by Framework

Browse Popular Code Answers by Language