250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- gather_nd
- UDF
- integrated gradient
- Counterfactual Explanations
- API
- login crawling
- correlation
- TensorFlow
- youtube data
- spark udf
- API Gateway
- session 유지
- GenericGBQException
- tensorflow text
- requests
- Airflow
- flask
- top_k
- airflow subdag
- 상관관계
- grad-cam
- Retry
- BigQuery
- 유튜브 API
- XAI
- hadoop
- chatGPT
- GCP
- subdag
- 공분산
Archives
- Today
- Total
데이터과학 삼학년
효율적이고 쉬운 시각화 ipython interact + plotly (px) 본문
반응형
일별, 데이터별 box plot을 확인하는 좋은 방법!!!
콤보박스를 이용해서 보기 원하는 데이터만 볼 수 있도록 ipython widget의 interact를 사용하고
데이터의 정확한 수치를 figure 상 표현하기위해 plotly 를 이용한다!
from ipywidgets import interact
import cufflinks as cf
cf.go_offline(connected=True)
import plotly.express as px
def box_plot_ly(job_date, feature):
fig = px.box(temp_df[temp_df.job_date ==job_date], y=feature, color="speed")
fig.show()
interact(box_plot_ly,job_date=job_date_lst, feature=lst)
728x90
반응형
LIST
'Data Visualization & DataBase' 카테고리의 다른 글
[DB] JOIN condition에 OR 포함? (0) | 2022.11.26 |
---|---|
Fact Table / Dimension Table (0) | 2022.10.23 |
Plotly 활용한 covid-19 데이터 시각화 (0) | 2020.06.19 |
Folium 지리 정보 시각화 tool (0) | 2020.06.17 |
시계열 데이터 시각화 using plotly (0) | 2020.06.05 |
Comments