Pinkwink님 블로그를 보고 연습하였다.
https://pinkwink.kr/986?category=522424
pairplot 이랑 jointplot은 정말 유용하게 사용 할 수 있을거 같다.
import numpy as np
import seaborn as sns
from matplotlib import pyplot as plt
x = np.random.rand( 5, 12)
x
sns.heatmap(x, vmin=0, vmax=1)
flights= sns.load_dataset("flights")
flights.head()
flights = flights.pivot( "month", "year", "passengers" )
flights.head(5)
plt.figure(figsize = (10, 8))
sns.heatmap(flights, annot = True, fmt = "d")
plt.show()
sns.set(style = "ticks",color_codes=True)
iris = sns.load_dataset("iris")
iris.head(5)
sns.pairplot(iris, hue = "species", palette ="husl" )
tips = sns.load_dataset("tips")
tips.head(5)
sns.set_style("whitegrid")
sns.jointplot(x="total_bill", y = "tip", data = tips)
plt.show()
#jointplot은 scatter 플롯을 보이면서도 또 각 축에 히스토그램을 보여준다.
iris = sns.load_dataset("iris")
sns.jointplot("sepal_width", "petal_length", data = iris, kind ="kde", color ="r")
x = np.linspace( 0 , 15, 31)
data = np.sin(x) + np.random.rand(10,31) + np.random.randn(10, 1)
data
sns.tsplot(data = data, err_style= "boot_traces", n_boot = 200)
iopub data rate exceeded in 쥬피터노트북 (0) | 2020.09.23 |
---|---|
Jupyter Notebook 함수 도움말, 설명 보는 방법! (0) | 2020.02.20 |
형태소분석(Okt)와 워드클라우드, raw file = txt 기반 (1) | 2020.02.12 |
(Python) RuntimeError : java.lang.ClassNotFoundException (4) | 2020.02.12 |
No matching overloads found for constructor java. lang.Boolean(bool), options are:.... (0) | 2020.02.12 |
댓글 영역