直方图绘制
直接复制了别人的代码,提示有错误:TypeError: bar() missing 1 required positional argument: ‘x’以下是正确的代码:import numpy as npimport osimport matplotlib.pyplot as pltN = 5y = [20,10,30,25,15]y1 = np.random.randint(10,50,5)x = np.random.randint(10,1000,N)index = np.ar




