Visualize
-
[plotly dash] 01. dash로 시각화 하기Visualize 2021. 4. 11. 17:41
회사에서 분석가, 인공지능 개발자로 일하다 보니 데이터를 필요로 하는 사람들에게 어떻게 시각화해서 보여 줄 수 있을까? 라는 고민이 생겼다. matplotlib이나 seaborn과 같이 주간 회의 때 보여주는 것에는 다소 한계가 있었고, 나에게 그때그떄 요청하기는 어렵기 때문에 쉽게 보여 줄수 있는 방법을 계속 고민해 봤다. 대안은 plotly dash 였다. interective한 라이브러리인 plotly를 사용해서 django서버를 통해 시각화 결과를 계속 노출 시키는 것이 목표이다. import dash import dash_html_components as html app = dash.Dash(__name__) app.layout = html.H1('hello dash') if __name__ =..
-
데이터 시각화 할 때 그래프 색상 참고하면 좋은 사이트 들Visualize 2021. 2. 17. 16:35
그래프를 그리다 보면 그래프 색상이 단조롭게 느껴질 때가 있는데, 그 때 참고해보면 좋은 사이트. hex code로 보통 색상을 변경할 수 있는데, 아래의 사이트를 통해서 유사한 색상들의 hex code를 알 수 있다. color.adobe.com/ko/create/color-wheel https://color.adobe.com/ko/create/color-wheel color.adobe.com www.webdesignrankings.com/resources/lolcolors/ LOL Colors - Curated color palette inspiration www.webdesignrankings.com colorhunt.co/ Color Hunt - Color Palettes for Designers..