Certificate 106

data visualization, dashboard, plotly기초

목차 dash layout -get ready python3 -m pip install packaging python3 -m pip install pandas dash pip3 install httpx==0.20 dash plotly 1. Dash Components 1) html components를 가져오는 구문 import dash_html_componets as html - component for every html tag - style, className, id import dash import dash_tml_components as html #app 인스턴스 생성하기 app=dash.Dash() #layout을 만들기 app.layout = html.Div([ html.H1('제목을 넣어요..

data methodololy, CRISP-DM, 데이터분석 단계

CRIST-DM CRISP-DM은 Cross Industry Standard Process for Data Mining의 약자로, 데이터 마이닝 프로젝트를 위한 표준 절차 모델입니다. CRISP-DM은 데이터 마이닝 프로젝트를 단계별로 구성하고, 각 단계에서 수행해야 할 작업과 활동을 안내합니다. CRISP-DM은 다음과 같은 단계로 구성됩니다: 1. 비즈니스 이해 (Business Understanding) 프로젝트의 목표와 요구사항을 이해하고, 문제를 정의하는 단계입니다. ex) Can we use historical patient hospitalization records and demographic data to predict the current number of patients? 2. 데이터 ..

dashboard

dashboard 최적의 대시보드는 중요한 비지니스 질문에 대한 해답을 제시한다. web-based dashboarding ploty, panel, voila, streamlit, bokeh, matplotlib, Flask 1. ploty python library이다. 40가지 unique한 chart가 있다. financial, maps, scientific, statistical, 3-dimensional style # Import required packages import pandas as pd import dash import dash_core_components as dcc import dash_html_components as html import plotly.express as px f..