매개변수 color를 사용합니다.
>>> import numpy as np
>>> import matplotlib.pyplot as plt
>>> x=np.arange(4)
>>> y=np.random.randint(0, 10, size=8).reshape(4,2)
>>> plt.barh(x, y[:,0], color="r")
>>> plt.barh(x, -y[:,1], color="b")
>>> import numpy as np
>>> import matplotlib.pyplot as plt
>>> x=np.arange(4)
>>> y=np.random.randint(0, 10, size=8).reshape(4,2)
>>> plt.barh(x, y[:,0], color="r")
>>> plt.barh(x, -y[:,1], color="b")
>>> plt.barh(x, y[:,0], color="k", edgecolor='r')
>>> plt.barh(x, -y[:,1], color="w", edgecolor='b')
다음은 여러개의 막대그래프를 색의 농도에 의해 구별해 봅니다.
>>> col=[str(i) for i in np.abs(np.random.randint(100, size=100))/100]
>>> plt.bar(np.arange(100), np.random.randint(100, size=100), color=col)
위 그래프에서 col을 정렬하여 나타냅니다.
>>> plt.bar(np.arange(100), np.random.randint(100, size=100), color=np.sort(col))
댓글
댓글 쓰기