In R, I have a data frame that looks like this:
Female.ID Mate.ID relatedness
1 A1 C1 0.0000
2 A1 D1 0.0000
3 A1 E1 0.5062
4 A1 F1 NA
5 B1 G1 0.0425
6 B1 H1 0.0000
7 B1 I1 0.0349
8 B1 J1 0.0000
9 B1 K1 0.0000
10 B1 L1 0.0887
11 B1 M1 0.1106
12 B1 N1 0.0000
I want to create a new dataframe and find the mean relatedness of all the mates for female.ID A1 and the mean relatedness for all the mates of female.ID B1, etc.
I want something like this:
Female.ID mean.relatedness
A1 0.1687
B1 0.0346
This dataframe is much bigger than this example one, which is why I'm not just subsetting for the female one by one and finding the mean relatedness. I was thinking of doing some kind of for loop, but I'm not sure how to start it off.