[matplotlib] 2D/3D Plot tutorial, mpl_toolkits import mplot3d
Create Data import pandas as pd import numpy as np import math as m a=[i for i in range(1,82)] b=[i*j for i in range(1,10) for j in range(1,10)] c=[n**2 if n%2 == 0 else n**3 for n in range(1,82)] df = pd.DataFrame({"a":a, "b":b, "c":c}) 2D Plot import matplotlib.pyplot as plt plt.title('?Title?') plt.plot(a,b,marker='o', linestyle='--',color='b',linewidth=1,label='b_plot') plt.scatter(a,b,color..