根据每个数据框的两列合并两个熊猫数据框

时间:2019-12-02 16:09:37

标签: python pandas astronomy

我有两个要合并的DataFrame,下面显示其中的小片段:

GNdf: enter image description here

GNtabledf:

enter image description here

我需要一种基于“ RA”和“ DEC”列合并这两者的方法,而且我知道必须有一种方法可以执行以下操作:

newgndf = pd.merge(GNdf, GNtabledf , on = ['RA' , 'DEC])

这似乎不起作用,也没有给我任何结果: enter image description here

我认为问题可能与RA和DEC列中小数点的浮动有关。

0 个答案:

没有答案