python_matplotlib DAY_22(4)scatter-hist图画
学习内容scatter—hist联合图import numpy as npimport matplotlib.pyplot as pltimport matplotlib.patches as mpx = np.random.randn(200)y = x + np.random.randn(200) * 0.5#产生正相关的随机数margin_border = 0.1widt...