注釈としてのデータ集合
EntityValueの注釈として,Datasetオブジェクトを直接使うことができる.
希ガスの特性のデータ集合を作る.
In[1]:=
gases = EntityValue[
EntityClass["Element", "NobleGas"], {"BoilingPoint", "Density"},
"Dataset"]
Out[1]=
沸点が最も高い原子を2つ求める.
In[2]:=
gases[TakeLargest[2], "BoilingPoint"]
Out[2]=
密度が最も低い原子を2つ求める.
In[3]:=
gases[TakeSmallest[2], "Density"]
Out[3]=
各希ガスの密度と沸点を二次元プロットで可視化する.
In[4]:=
ListLogPlot[gases, Frame -> True, FrameLabel -> Automatic]
Out[4]=