作为注释的数据集
Dataset 对象可被直接用做 EntityValue 的注释.
构建稀有气体属性的数据集.
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]=
