간헐천의 분출 클러스터
올드 페이스풀 간헐천의 분출 특성을 시각화합니다.
In[1]:=
eruptions = ExampleData[{"Statistics", "OldFaithful"}];
ListPlot[data,
FrameLabel -> {"Eruption time in minutes",
"Waiting time to next eruption in minutes"}, Frame -> True]
Out[1]=
분출을 분할하는 분류자를 계산합니다.
In[2]:=
c = ClusterClassify[eruptions]
Out[2]=
클러스터를 시각화합니다.
In[3]:=
clusters = GatherBy[data, c];
ListPlot[clusters,
FrameLabel -> {"Eruption time in minutes",
"Waiting time to next eruption in minutes"}, Frame -> True]
Out[3]=