기본 콘텐츠로 건너뛰기

[ML] 결정트리(Decision Tree) 모델

[data analysis]가상 데이터 만들기

가상데이터 만들기

내용

make_classification

sklearn.datasets.make_classification() 함수는 분류용 가상 데이터를 생성합니다.

  • 인수
    • n_samples : 표본 데이터의 수, 디폴트 100
    • n_features : 독립 변수의 수, 디폴트 20
    • n_informative : 독립 변수 중 종속 변수와 상관 관계가 있는 성분의 수, 디폴트 2
    • n_redundant : 독립 변수 중 다른 독립 변수의 선형 조합으로 나타나는 성분의 수, 디폴트 2
    • n_repeated : 독립 변수 중 단순 중복된 성분의 수, 디폴트 0
    • n_classes : 종속 변수의 클래스 수, 디폴트 2
    • n_clusters_per_class : 클래스 당 클러스터의 수, 디폴트 2
    • weights : 각 클래스에 할당된 표본 수
    • random_state : 난수 발생 시드
  • 반환값
    • X : [n_samples, n_features] 크기의 배열, 독립 변수
    • y : [n_samples] 크기의 배열, 종속 변수

위 함수에서 인수의 관계는 다음을 만족하여야 합니다.

(n_classes) × (n_clusters_per_class) ≤ 2(n_informative)
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
font1={'size':11, 'weight':'bold'}
font2={'family':'nanumgothic', 'size':11, 'weight':'bold'}
from sklearn.datasets import make_classification
X,y=make_classification(n_features=1, n_informative=1, n_redundant=0, n_clusters_per_class=1, random_state=2)
plt.scatter(X, y, marker='o', c=y, s=100, edgecolor='k', linewidth=2)
plt.show()
plt.hist(X[y==0], bins=10, density=True, alpha=0.6, histtype='stepfilled', label="y=0",color="blue")
plt.hist(X[y==1], bins=10, density=True, alpha=0.6, histtype='stepfilled', label="y=1",color="red")
plt.legend()
plt.show()

위 코드는 독립변수 1개에 2개의 클래스를 가지는 데이터입니다. 특성은 라벨과 상관성이 있는 변수입니다. 다음 코드는 특성 2개이지만 라벨과 상관성 있는 특성은 1개입니다. 이 경우 특성 1은 라벨과 상관성은 작습니다.

X1,y1=make_classification(n_features=2, n_informative=1, n_redundant=0, n_clusters_per_class=1, random_state=1)
plt.scatter(X1[:,0], X1[:,1], marker='o', c=y1, s=100, edgecolor='k', linewidth=2)
plt.show()
plt.figure(figsize=(10, 5))
plt.subplot(1,2,1)
plt.hist(X1[:,0][y1==0], bins=10, density=True, histtype="stepfilled", label="y=0",alpha=0.6,color="blue")
plt.hist(X1[:,0][y1==1], bins=10, density=True, histtype="stepfilled", label="y=1",alpha=0.6,color="red")
plt.legend()
plt.xlabel("$\mathbf{x_1}$")
plt.subplot(1,2,2)
plt.hist(X1[:,1][y1==0], bins=10, density=True, histtype="stepfilled", label="y=0",alpha=0.6,color="blue")
plt.hist(X1[:,1][y1==1], bins=10, density=True, histtype="stepfilled", label="y=1",alpha=0.6,color="red")
plt.legend()
plt.xlabel("$\mathbf{x_2}$")
plt.show()

다음은 특성 2개 모두 라벨과 상관성이 있도록 설정한 것입니다.. 그러나 결과는 특성 한개만이 라벨과 상관성을 보입니다. n_features를 n_informative 보다 크게 한다면 라벨과의 상관성있는 변수의 수를 지정한 대로 얻을 수 있습니다.

X2, y2 = make_classification(n_samples=500, n_features=2, n_informative=2, n_redundant=0, n_clusters_per_class=1, random_state=3)
plt.scatter(X2[:,0], X2[:,1], marker='o', c=y2, s=100, edgecolor='k', linewidth=1)
plt.show()
plt.figure(figsize=(10,5))
plt.subplot(1,2,1)
sns.histplot(X2[y2==0,0], label="y=0",alpha=0.6,color="blue")
sns.histplot(X2[y2==1,0], label="y=1",alpha=0.6,color="red")
plt.legend()
plt.xlabel("$\mathbf{x_1}$")
plt.subplot(1,2,2)
sns.histplot(X2[y2==0,1], label="y=0",alpha=0.6,color="blue")
sns.histplot(X2[y2==1,1], label="y=1",alpha=0.6,color="red")
plt.legend()
plt.xlabel("$\mathbf{x_2}$")
plt.show()
X3, y3 = make_classification(n_samples=500, n_features=3, n_informative=2, n_redundant=0, n_clusters_per_class=2, random_state=5)
plt.scatter(X3[:,0], X3[:,1], marker='o', c=y3, s=100, edgecolor='k', linewidth=1)
plt.show()
plt.figure(figsize=(6, 12))
for i in range(3):
    plt.subplot(3,1,i+1)
    sns.histplot(X3[y3==0,i], label="y=0",alpha=0.6,color="blue")
    sns.histplot(X3[y3==1,i], label="y=1",alpha=0.6,color="red")
    plt.legend()
    plt.xlabel(f"X{i+1}")
plt.show()

함수의 인수 weights는 각 클래스에 할당되는 sample의 수입니다. 이 인자를 사용하여 비대칭 가상 데이터를 생성할 수 있습니다.

X4, y4=make_classification(n_features=2, n_informative=2, n_redundant=0, n_clusters_per_class=1, weights=[0.9, 0.1], random_state=6)
np.unique(y4, return_counts=True)
(array([0, 1]), array([90, 10]))
plt.scatter(X4[:,0], X4[:,1], s=100, c=y4, marker='o', edgecolor="k")
plt.xlabel(r"$\mathbf{x_1}$", size=15)
plt.ylabel(r"$\mathbf{x_2}$", size=15)
plt.show()

다중 클래스 생성

X5, y5=make_classification(n_features=2, n_informative=2, n_redundant=0, n_clusters_per_class=1, n_classes=4, random_state=7)
plt.scatter(X5[:,0], X5[:,1], s=100, c=y5, marker='o', edgecolor="k")
plt.xlabel(r"$\mathbf{x_1}$", size=15)
plt.ylabel(r"$\mathbf{x_2}$", size=15)
plt.show()

make_blobs

make_blobs() 함수는 사우시안 정규분포를 사용하여 군집된 데이터(clustered data)를 생성합니다. 군집 데이터의 모든 방향은 같은 특성을 가지므로 등방성이 유지됩니다. 그러므로 make_classifiction 분류를 위한 데이터 생성인 점은 같지만 make_blobs()에 의해 생성된 데이터들은 원형의 형태로 밀집된 형태를 보입니다.

  • 인수
    • n_samples : 표본 데이터의 수, 디폴트 100
    • n_features : 독립 변수의 수, 디폴트 20
    • centers : 생성할 클러스터의 수 혹은 중심, [n_centers, n_features] 크기의 배열. 디폴트 3
    • cluster_std: 클러스터의 표준 편차, 디폴트 1.0
    • center_box: 생성할 클러스터의 바운딩 박스(bounding box), 디폴트 (-10.0, 10.0))
  • 반환값
    • X : [n_samples, n_features] 크기의 배열, 독립 변수
    • y : [n_samples] 크기의 배열, 종속 변수
from sklearn.datasets import make_blobs
X6, y6=make_blobs(n_samples=500, n_features=2, centers=3, random_state=8)
plt.scatter(X6[:,0], X6[:,1], s=100, c=y6, marker='o', edgecolor="k")
plt.xlabel(r"$\mathbf{x_1}$", size=15)
plt.ylabel(r"$\mathbf{x_2}$", size=15)
plt.show()

make_moons

make_moons() 함수는 이진분류를 위한 데이터를 생성합니다. 군집 데이터는 초승달 모양으로 분포되어 있습니다.

  • 인수
    • n_samples : 표본 데이터의 수, 디폴트 100
    • noise: 잡음의 크기. 0이면 정확한 반원을 이룸
from sklearn.datasets import make_moons
X7,y7=make_moons(n_samples=200, noise=0, random_state=9)
plt.scatter(X7[:,0], X7[:,1], s=100, c=y7, marker='o', edgecolor="k")
plt.xlabel(r"$\mathbf{x_1}$", size=15)
plt.ylabel(r"$\mathbf{x_2}$", size=15)
plt.show()
X7,y7=make_moons(n_samples=200, noise=0.1, random_state=9)
plt.scatter(X7[:,0], X7[:,1], s=100, c=y7, marker='o', edgecolor="k")
plt.xlabel(r"$\mathbf{x_1}$", size=15)
plt.ylabel(r"$\mathbf{x_2}$", size=15)
plt.show()
X7,y7=make_moons(n_samples=200, noise=1, random_state=9)
plt.scatter(X7[:,0], X7[:,1], s=100, c=y7, marker='o', edgecolor="k")
plt.xlabel(r"$\mathbf{x_1}$", size=15)
plt.ylabel(r"$\mathbf{x_2}$", size=15)
plt.show()

make_gaussian_quantiles

make_gaussian_quantiles() 함수는 다차원 정규 분포의 표본을 생성하고 분포의 평균(기대값)을 중심으로 한 등고선으로 클래스를 분리한다. 이 데이터는 타원형 형태의 닫힌 경계선으로만 분류할 수 있다.

  • 인수
    • mean: 기댓값 벡터
    • cov: 공분산 행렬
    • n_samples : 표본 데이터의 수, 디폴트 100
    • n_features : 독립 변수의 수, 디폴트 20
    • n_classes : 클래스의 수
  • 반환값
    • X : [n_samples, n_features] 크기의 배열, 독립 변수
    • y : [n_samples] 크기의 배열, 종속 변수
from sklearn.datasets import make_gaussian_quantiles
X8, y8=make_gaussian_quantiles(mean=[1, 5], n_samples=300, n_features=2, n_classes=2, random_state=10)
plt.scatter(X8[:,0], X8[:,1], s=100, c=y8, marker='o', edgecolor="k")
plt.xlabel(r"$\mathbf{x_1}$", size=15)
plt.ylabel(r"$\mathbf{x_2}$", size=15)
plt.show()

댓글

이 블로그의 인기 게시물

[Linear Algebra] 유사변환(Similarity transformation)

유사변환(Similarity transformation) n×n 차원의 정방 행렬 A, B 그리고 가역 행렬 P 사이에 식 1의 관계가 성립하면 행렬 A와 B는 유사행렬(similarity matrix)이 되며 행렬 A를 가역행렬 P와 B로 분해하는 것을 유사 변환(similarity transformation) 이라고 합니다. $$\tag{1} A = PBP^{-1} \Leftrightarrow P^{-1}AP = B $$ 식 2는 식 1의 양변에 B의 고유값을 고려한 것입니다. \begin{align}\tag{식 2} B - \lambda I &= P^{-1}AP – \lambda P^{-1}P\\ &= P^{-1}(AP – \lambda P)\\ &= P^{-1}(A - \lambda I)P \end{align} 식 2의 행렬식은 식 3과 같이 정리됩니다. \begin{align} &\begin{aligned}\textsf{det}(B - \lambda I ) & = \textsf{det}(P^{-1}(AP – \lambda P))\\ &= \textsf{det}(P^{-1}) \textsf{det}((A – \lambda I)) \textsf{det}(P)\\ &= \textsf{det}(P^{-1}) \textsf{det}(P) \textsf{det}((A – \lambda I))\\ &= \textsf{det}(A – \lambda I)\end{aligned}\\ &\begin{aligned}\because \; \textsf{det}(P^{-1}) \textsf{det}(P) &= \textsf{det}(P^{-1}P)\\ &= \textsf{det}(I)\end{aligned}\end{align} 유사행렬의 특성 유사행렬인 두 정방행렬 A와 B는 'A ~ B' 와 같

[matplotlib] 히스토그램(Histogram)

히스토그램(Histogram) 히스토그램은 확률분포의 그래픽적인 표현이며 막대그래프의 종류입니다. 이 그래프가 확률분포와 관계가 있으므로 통계적 요소를 나타내기 위해 많이 사용됩니다. plt.hist(X, bins=10)함수를 사용합니다. x=np.random.randn(1000) plt.hist(x, 10) plt.show() 위 그래프의 y축은 각 구간에 해당하는 갯수이다. 빈도수 대신 확률밀도를 나타내기 위해서는 위 함수의 매개변수 normed=True로 조정하여 나타낼 수 있다. 또한 매개변수 bins의 인수를 숫자로 전달할 수 있지만 리스트 객체로 지정할 수 있다. 막대그래프의 경우와 마찬가지로 각 막대의 폭은 매개변수 width에 의해 조정된다. y=np.linspace(min(x)-1, max(x)+1, 10) y array([-4.48810153, -3.54351935, -2.59893717, -1.65435499, -0.70977282, 0.23480936, 1.17939154, 2.12397372, 3.0685559 , 4.01313807]) plt.hist(x, y, normed=True) plt.show()

R 미분과 적분

내용 expression 미분 2차 미분 mosaic를 사용한 미분 적분 미분과 적분 R에서의 미분과 적분 함수는 expression()함수에 의해 생성된 표현식을 대상으로 합니다. expression expression(문자, 또는 식) 이 표현식의 평가는 eval() 함수에 의해 실행됩니다. > ex1<-expression(1+0:9) > ex1 expression(1 + 0:9) > eval(ex1) [1] 1 2 3 4 5 6 7 8 9 10 > ex2<-expression(u, 2, u+0:9) > ex2 expression(u, 2, u + 0:9) > ex2[1] expression(u) > ex2[2] expression(2) > ex2[3] expression(u + 0:9) > u<-0.9 > eval(ex2[3]) [1] 0.9 1.9 2.9 3.9 4.9 5.9 6.9 7.9 8.9 9.9 미분 D(표현식, 미분 변수) 함수로 미분을 실행합니다. 이 함수의 표현식은 expression() 함수로 생성된 객체이며 미분 변수는 다음 식의 분모의 변수를 의미합니다. $$\frac{d}{d \text{변수}}\text{표현식}$$ 이 함수는 어떤 함수의 미분의 결과를 표현식으로 반환합니다. > D(expression(2*x^3), "x") 2 * (3 * x^2) > eq<-expression(log(x)) > eq expression(log(x)) > D(eq, "x") 1/x > eq2<-expression(a/(1+b*exp(-d*x))); eq2 expression(a/(1 + b * exp(-d * x))) > D(eq2, "x") a * (b * (exp(-d * x) * d))/(1 + b