대답: seaborn FactoryPlot를 사용하여 도형 크기를 변경하는 방법 대답: seaborn FactoryPlot를 사용하여 도형 크기를 변경하는 방법

1298 단어 figsizeseaborn

답변: seaborn FactoryPlot을 사용하여 그래픽 크기를 변경하는 방법


2015년 2월 27일
95

Note added in 2019: In modern seaborn versions the size argument has been renamed to height.


좀 더 구체적으로:
%matplotlib inline

import seaborn as sns

exercise = sns.load_dataset("exercise")

# Defaults are size=5, aspect=1
sns.factorplot("kind", "pulse", "diet", exercise, kind="point", size=2, aspect=1)
sns.factorplot("kind", "pulse", "diet", exercise, kind="point", size=4,

Open Full Answer

좋은 웹페이지 즐겨찾기