주석의 데이터 집합
EntityValue의 주석으로 Dataset 객체를 직접 사용할 수 있습니다.
희귀 가스의 특성 데이터 집합을 구축합니다.
In[1]:=
gases = EntityValue[
EntityClass["Element", "NobleGas"], {"BoilingPoint", "Density"},
"Dataset"]
Out[1]=
끓는점이 가장 높은 원자 두개를 구합니다.
In[2]:=
gases[TakeLargest[2], "BoilingPoint"]
Out[2]=
밀도가 가장 낮은 원자 두개를 구합니다.
In[3]:=
gases[TakeSmallest[2], "Density"]
Out[3]=
각 희귀 가스를 밀도 및 끓는점의 이차원 플롯을 사용하여 시각화합니다.
In[4]:=
ListLogPlot[gases, Frame -> True, FrameLabel -> Automatic]
Out[4]=