Pythonでのデータのビン分割方法
NumPyのhistogram関数を使用する方法:import numpy as np data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] bins = np.histogram(data, bins=3) print(bins)>>More
NumPyのhistogram関数を使用する方法:import numpy as np data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] bins = np.histogram(data, bins=3) print(bins)>>More