본문 바로가기

Seaborn7

Folium Icon Site Folium Icon 01. fa type 02. glyphicon type ✔️ folium icon : 가끔 표시 안되면 prefix="fa" 값 설정 . option 확인. 모든 아이콘이 나타나는건 아니다. https://fontawesome.com/search?m=free&o=r Font Awesome The internet's icon library + toolkit. Used by millions of designers, devs, & content creators. Open-source. Always free. Always awesome. fontawesome.com ✔️glyphicon : 애초에 입력시에 glyphicon glyphicon-cloud 기재 해주나, prefix="glyph.. 2022. 11. 16.
Examples 05. Anscombe data 05. Anscombe data lmplot anscombe = sns.load_dataset("anscombe") anscombe.tail() 2022. 11. 16.
Example 04.Iris data 04. Iris data iris = sns.load_dataset("iris") iris.tail() pairplot sns.set_style("ticks") unique로 species 확인 후 hue option으로 가독성 + 종 나누기 원하는 columns만 지정하여 pairplot 생성도 가능 2022. 11. 15.
Example 03.flight data 03.Flight data heatmap pivot_table(index, columns, values) flights = sns.load_dataset("flights") flights.head() flights.info() # pivot # index, columns, values flights = flights.pivot(index = "month" , columns = "year", values = "passengers") flights.head() heatmap annot : heatmap 위 데이터 숫자 표현 fmt : d, f 등 정수 , 실수 표현 가능 cmap : color 바꿀 수 있음 2022. 11. 15.
Example 02. seaborn tips data 02. Seaborn tips data - boxplot - swarmplot - lmplot tips = sns.load_dataset("tips") tips tips.info() x=tips["total bill"] 박스 가운데 선은 평균값 x="day", y="total_bill", data="tips" boxplot hue palette option hue ="smoker" : smoker yes, no 판단 palette="Set3' : 색상 결정. Set1 ~ 3까지 있음. swarmplot color : 0(검정) ~ 1(흰) 색상 표현 boxplot + swarmplot lmplot : total_bill과 tip의 상관관계 파악 여기서, size는 height로 표기됨. ▵데이터 구분되어.. 2022. 11. 14.
Example 01. seaborn basic 01. seaborn basic np.linspace(0, 14, 100) # 0부터 14까지 100개의 데이터 - sns.set_style() white, whitegrid dark, darkgrid ticks -> 예제 4번 참고 2022. 11. 14.
seaborn 정리 ✔️ seaborn은 import하는 것만으로도 뭔가 효과를 준다.( 색상 등 보기 좋아짐) - 실습용 데이터 내장되어있음. ex) tips = sns.load_dataset("tips") tips.head() ✔️ 불러오기 import matplotlib.pyplot as plt import seaborn as sns ✔️ sns.set_style() "white", "whitegrid", "dark", "darkgrid", "ticks" ✔️ boxplot에 컬럼 지정 plt.figure(figsize(8, 6) sns.boxplot(x = "", y= "", data = "", color= "") plt.show total bill과 tip 사이의 관계 파악 sns.set_style() sns.lm.. 2022. 11. 13.