import pandas as pd import matplotlib as mpl import matplotlib.pyplot as plt import seaborn as sns 1. 2. 3. 4. 5. plt.scatter #绘制超简单的散点图:变量x1与x2的关系 #定义数据 x1 = np.random.randn(10) #取随机数 x2 = x1 + x1**2 - 10 #确定画布 - 当只有一个图的时候,不是必须...