import seaborn as sns | |
sns.lineplot(x=xdata, y=ydata, label="y1") | |
sns.lineplot(data=df, x="col1", y="col3", errorbar=None) | |
sns.set_style("darkgrid") 테마명 | |
x축 값을 col2기준으로 또 나 | sns.barplot(data=df, x="col1", y="col3", hue="col2") |
'코딩' 카테고리의 다른 글
[Python] Matplotlib 라이브러리 (0) | 2024.11.13 |
---|---|
[Python] Pandas 라이브러리 (0) | 2024.11.12 |
[Python] 경로 (절대경로, 상대경로, os, pathlib, shutil) (1) | 2024.11.11 |
[Python] 파일 다루기 (txt, csv, with문, json) (0) | 2024.11.10 |
[Python] 프롬프트 사용 (가상환경, 라이브러리) (1) | 2024.11.09 |