My current dataframe looks like this
site tree
Y Y1
Y Y2
Y Y3
C C1
C C2
F F1
F F2
I would like to add an additional column that is basically the latitude that corresponds to each site ("C" = 67.31949N,"F" = 65.50790N,"Y" = 65.84669N). How can I do this in r? Thanks for any suggestions!
What I want my dataframe to look like
Site Tree Latitude
Y 1 65.84669N
Y 2 65.84669N
Y 3 65.84669N
C 1 67.31949N
C 2 67.31949N
F 1 65.50790N
F 2 65.50790N