여러분도 아래의 파일을 다운받아서 실습할 수 있습니다
엑셀에서 사용된 코드는 아래와 같습니다
df = xl("표1[#모두]", headers=True)
sns.set_theme(style='ticks')
sns.histplot(data=df, x='height', hue='gender')
파이썬으로 실습해보시려면 아래 깃허브의 코드를 참조하세요
코드만 보고 싶은 분들은 아래를 참고하면 됩니다
import pandas as pd
import seaborn as sns
# seaborn theme 변경
sns.set_theme(style="ticks")
# 데이터 프레임 불러오기
url = 'https://raw.githubusercontent.com/panda-kim/csv_files/main/student_hw_1000.csv'
df = pd.read_csv(url)
# 히스토그램 그리기
sns.histplot(data=df, x='height', hue='gender')
'판다스 강의(유튜브) > python in excel' 카테고리의 다른 글
[Python in Excel] 엑셀에서 파이썬의 seaborn을 이용해 산포도 그리기 (0) | 2023.11.13 |
---|---|
[Python in Excel] vlookup보다 엑셀에서 파이썬을 사용하는 것이 좋은 5가지 이유 (0) | 2023.10.18 |
[Python in Excel] 엑셀에서 파이썬을 이용해 다중요건 vlookup하기 (0) | 2023.10.12 |