일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- List Comprehension
- Seaborn
- 빅데이터 분석기사
- 응시료
- pythonML
- context manger1
- numpy
- matplotlib
- teen learn
- 시험 일정
- 검정수수료
- 준비
- separating data(데이터 분리하기)
- K 데이터 자격시험
Archives
- Today
- Total
재원's 블로그
bar graph2(막대그래프) 본문
최초 작성일 : 2021-11-12
categories: Pandas
오늘은 'pandas'를 이용해서 '막대그래프'를 그려보았다.
import pandas as pd #DataFrame 객체의 plot()메서드를 사용해서 막대그래프를 출력했다.
data=[["Rudra",23,156,70], #DataFrame 객체에 값을 넣어준다.
["Nayan",20,136,60],
["Alok",15,100,35],
["Prince",30,150,85]
]
df=pd.DataFrame(data,columns=["Name","Age","Height(cm)","Weight(kg)"])
print(df)
import pandas as pd #DataFrame 객체의 plot()메서드를 사용해서 막대그래프를 출력했다.
import matplotlib.pyplot as plt
data=[["Rudra",23,156,70],
["Nayan",20,136,60],
["Alok",15,100,35],
["Prince",30,150,85]
]
df=pd.DataFrame(data,columns=["Name","Age","Height(cm)","Weight(kg)"])
df.plot(x="Name", y=["Age", "Height(cm)", "Weight(kg)"], kind="bar",figsize=(9,8))
plt.show()
import pandas as pd #DataFrame 객체의 plot()메서드를 사용해서 막대그래프를 출력했다.
import matplotlib.pyplot as plt
employees=["Rudra","Alok","Prince","Nayan","Reman"]
earnings={
"January":[10,20,15,18,14],
"February":[20,13,10,18,15],
"March":[20,20,10,15,18],
}
df=pd.DataFrame(earnings,index=employees)
df.plot(kind="bar",stacked=True,figsize=(10,8))
plt.legend(loc="lower left",bbox_to_anchor=(0.8,1.0))
plt.show()
'Pandas' 카테고리의 다른 글
pandas 기본문법과 함수 (0) | 2023.01.21 |
---|---|
separating data(데이터 분리하기) (0) | 2023.01.20 |