본문 바로가기
CODING/Python

[Python/graphs] plotly.express 에서 그래프 크기 조절하기/plotly figure size 조절

by 밍톨맹톨 2023. 5. 11.
728x90
728x90

매개변수 width, height로 조절 가능

px.scatter(data, x = 'average_montly_hours', y = 'satisfaction_level', 
           width=800, height=400)

 [OUTPUT]

ex 1) scatter plot

px.box(data, x = 'number_project', y = 'satisfaction_level', 
           width=400, height=400)

ex 2) box plot

 

 

728x90

댓글