[Python] Array를 Bar Plot으로 print 하기
In [1]: import numpy as np # dirichlet 분포를 이용해 random하면서도 합이 1인 분포를 생성 rand_distribution = np.random.dirichlet(np.ones(10),size=None) rand_distribution Out[1]: array([0.06777101, 0.13312022, 0.00483812, 0.18864496, 0.08399787, 0.14003386, 0.26656006, 0.06041501, 0.01597788, 0.038641 ]) In [2]: xxx = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'] In [3]: # bar plot으로 이미 생성해 둔 rand_distributio..
2021. 12. 15.