조별과제 4

x,y 둘다 value를 넣고 싶을때

질문 'product_raw 데이터가 있고 x축은 cloth y축은 season으로 그래프 만들고 싶으면 어떻게 해?' 1. 막대 그래프import seaborn as snsimport matplotlib.pyplot as plt# cloth별 season의 빈도수를 계산season_counts = product_raw.groupby(['cloth', 'season']).size().reset_index(name='counts')# 막대 그래프 그리기sns.barplot(data=season_counts, x='cloth', y='counts', hue='season')plt.xticks(rotation=45)plt.show()  2. 히트맵# cloth와 season 빈도수를 교차 테이블로 변환heat..

조별과제 2025.01.10

조별과제(game) Dashboard

주어진 데이터들에 대한 설명:https://www.kaggle.com/datasets/sohyunjun0401/game-rawdata-240705account_idlzp4q7rw-z30g-8jpz-v50m-12poovfh29b5ip_addr70.30.233.132countryCNlatitude35.86166longitude104.1954age34genderMALEosiOSfirst_login_date2020-12-16last_login_date2024-12-16level88exp(획득 경험치 총량(레벨과비례아님))999972serverno16job전사action_type(주요 활동)PVEmarketing_info_yn(마케팅 정보제공 활용동의 여부)Ypay_amont(누적 결제금액)99997151refu..

조별과제 2024.12.30