matplotlib plt code example

Example 1: import matplotlib.pyplot as plt

from matplotlib import pyplot as plt

import matplotlib.pyplot as plt

Example 2: import matplotlib plt

import matplotlib.pyplot as plt

Example 3: matplotlib line plot

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

Example 4: python plot

import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
plt.show()

Example 5: show graph matplotlib axes

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt

df = pd.read_csv("filesc/file1.csv")
df.head()

BBox = ((df.x.min(),   df.x.max(), df.y.min(), df.y.max()))

ruh_m = plt.imread('map.png')

print(BBox)

fig, ax = plt.subplots(figsize = (8,7))
ax.scatter(df.x, df.y, zorder=1, alpha= 0.2, c='b', s=10)
ax.set_title('Plotting Spatial Data on Map')
ax.set_xlim(BBox[0],BBox[1])
ax.set_ylim(BBox[2],BBox[3])
ax.imshow(ruh_m, zorder=0, extent = BBox, aspect= 'equal')
plt.show()

Example 6: import matplotlib.pyplot as plt

from matplotlib import pyplot as plt

import matplotlib.pyplot as plt1

print(dir(plt) == dir(plt1))
True

Tags:

Misc Example