인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

asdfs1's profile image
asdfs1

asked

Getting started with Python data analysis using public data

Boxplot 결과가 달라요~(plot.box() vs sns.boxplot)

Written on

·

269

0

안녕하세요, 좋은 강의 올려 주셔서 항상 감사드립니다~

하나의 raw data로 두 가지 방법으로 boxplot을 그려봤습니다. 그런데 그래프가 서로 상이합니다.

왜일까요,,, 확인 부탁 드립니다~

df_last.groupby(["월", "연도"])["분양가격"].mean().round().unstack().plot.box()

sns.boxplot(data = df_last, x = "연도", y = "분양가격")

pythonpandasnumpy

Answer

This question is waiting for answers
Be the first to answer!
asdfs1's profile image
asdfs1

asked

Ask a question