전체 글

This space is my database for experiencing, thinking, studying, reading and working results
작성일자 : 2024-10-14Ver 0.1.1참고 사이트 : wiki docs 이번 포스팅에서는 Plotly의 축 범위를 조절하는 방법, 축의 범위를 역방향으로 전환하는 방법, Log 스케일로 변환하는 방법에 대해 학습합니다. Keyword : Plotly axes range, Plotly 축 범위, Plotly axes reverse range, Plotly 역방향 축범위, Plotly Log scale, Plotly 로그 스케일축 범위 지정하기fig.update_xaxes(range=[min, max])fig.update_yaxes(range=[min, mam]) [사용 함수]fig.update_xaxes() : x축 범위를 업데이트 할떄 사용fig.update_yaxes() : y축 범위를 업데이..
작성일자 : 2024-10-13Ver 0.1.1참고 사이트 : wiki docs 이번 포스팅에서는 Plotly의 각각의 그래프 생성방법에(express, graph_object ) 따라 그래프 X축, Y축의 타이틀 지정 방법과 위치, 스타일 지정 방법, 삭제 방법에 대해 알아봅니다. Keyword : Plotly Aexs Title, Plotly Aexs Title size, Plotly Aexs Title position, Plotly Aexs Title font, Plotly 축 타이틀, Plotly 축 타이틀 크기, Plotly 축 타이틀 위치, Plotly 축 타이틀 폰트 [TOC] express 그래프import plotly.express as px# 데이터 불러오기df = px.data.tip..
작성일자 : 2024-10-12Ver 0.1.1참고 사이트 : wiki docs Plotly의 각각의 그래프 생성방법에(express, graph_object ) 따라 타이틀 설정이 다르니다.이번 포스팅에서는 각각의 타이틀 생성 방법에 대해 알아보고, 생성방법과 무관하게 모두에서 사용할수있는 title 생성 방법에 대해서도 알아본다. 또한 타이틀 위치지정, 폰트 스타일(크기, 색, 서체) 설정 방법에 대해 알아보겠다. Keyword : Plotly Title, Plotly Title size, Plotly Title position, Plotly Title font, Plotly 타이틀, Plotly 타이틀 크기, Plotly 타이틀 위치, Plotly 타이틀 폰트express 그래프import plo..
작성일자 : 2024-10-11Ver 0.1.1참고 사이트 : wiki docs 이번 포스팅에서는 Plotly의 각각의 그래프 생성방법에(express, graph_object ) 따라 그래프 사이즈 및 Margin 설정 방법에 대해 알아본다. Keyword : Plotly 그래프 사이즈, Plotly graph size ,Plotly 그래프 마진, Plotly graph margin , Plotly width, Plotly heightexpress 그래프import plotly.express as pxfig = px.bar(x = ["a","b","c"], y = [1, 3, 2], width = 600, height = 400)fig.show() px.그래프 함수 안에 width= , height=..
Unlimited Jun
JUST DO IT