matplotlib画子图的三种方式

import numpy as np
import matplotlib.pyplot as plt
x=np.array(range(10))

1

fig,axs=plt.subplots(1,2)
axs[0].plot(x)
axs[1].plot(-x)
plt.show()

2

ax1=plt.subplot(121)
ax1.plot(x)
ax2=plt.subplot(122)
ax2.plot(-x)
plt.show()

3

fig=plt.figure()
ax1=fig.add_subplot(121)
ax1.plot(x)
ax2=fig.add_subplot(122)
ax2.plot(-x)
plt.show()

你可能感兴趣的:(python,python,逻辑回归)