Is there a way to compare individual team member contributions when pitted against another team multiple times? This is in a sport like rowing where you take N number of individuals from a set A and M number of individuals against set B.
Is there a way to make estimations on-going with incomplete sets (not all unique combinations of N vs M exist) or with some interdependence where some in N or M are never changed out?
In a similar vein to this question How to extract an individual's (normalized) contribution from a group? I am interested if there are some recommended approaches or literature on this subject. The difference in my question is this limited to two groups with known team vs team data.
Just to make it clear, I'm trying to compare relative times between teams and then try to see individual performance. So for example here is some fake data between Team A and Team B with 9 members to choose 5 from with the teams results for that Event (note the times are the same for members because they are racing in the same boats).
TEAM A Event1 Event2 Event3
N1 55.5 53.3 51.2
N2 ---- 53.3 ----
N3 55.5 53.3 ----
N4 55.5 ----- 51.2
N5 55.5 ---- 51.2
N6 ---- 53.3 51.2
N7 ---- 53.3 ----
N8 55.5 ---- ----
N9 ---- ---- 51.2
Vs TEAM B
TEAM B EVENT1 Event2 Event3
M1 55.0 52.9 53.2
M2 ---- 52.9 ----
M3 55.0 52.9 ----
M4 55.0 ---- 53.2
M5 55.0 ---- 53.2
M6 ---- 52.9 53.2
M7 ---- 52.9 ----
M8 55.0 ---- ----
M9 ---- ---- 53.2
Each event occurs in different conditions so only the same events can be directly compared of Team A vs B. So for example Team A group at Event1 clocked 55.5 and Team B group won at 55.0.
What I've Tried
I've computed their relative time difference per event. Then I've taken each individuals average time difference and compare them. This works ok, but I don't think this is an accurate comparison and I don't know how to estimate cases where the data is limited or how to know what data still should be gathered.