所以我在 R 的数据框中有一个向量,称为 Month。我的数据框称为 wr200meter。这是输出wr200meter$Month
:
[1] May June June Nov Oct March April
[8] May July July Sept June March April
[15] June Oct August June Oct Sept June
[22] August August August
当我这样做时,as.numeric(wr200meter$Month)
我得到:
[1] 6 4 4 7 8 5 1 6 3 3 9 4 5 1 4 8 2 4 8 9 4 2 2 2
我想得到的是一个十进制数。例如,对于 6 月,我想要 0.5,对于 9 月,我想要 0.75。有人可以告诉我:1)如何获得我想要的十进制数字 2)这些输出的数字来自as.numeric(wr200meter$Month)
哪里?
谢谢!