fig, ax = plt.subplots(figsize=(10,6)) ax.scatter(df['HP'], df['Price']) ax.set_xlabel('HP') ax.set_ylabel('Price') plt.show() code example
Example: fig=plt.figure(figsize=(2,2))
subplot(1,1,1)
plot(x, y, 'r--')
subplot(1,2,2)
plot(y, x, 'g*-');
subplot(1,1,1)
plot(x, y, 'r--')
subplot(1,2,2)
plot(y, x, 'g*-');