EDIT: To clarify, I'm specifically attempting to project the number of points that will be scored by a particular player in the NBA on any given night. So the groups below display the points scored by Player A, Player B, and Player C. Then, when all three players are on my team their combined averages are 73.25. What I'm trying to calculate is the Standard Deviation from the combined points that all three players have scored. In other words, if I put all three players on my team, and the would combime to score an average of 73.25 points, what would the STDEV on that average be based on the number sets that I have?
I'm trying to figure out what the Standard Devation of a group of multiple subsets would be once they are combined.
I have 3 sets of numbers, as follows: Group A:
9
18
27
26
Avg: 20
STDEV: 7.25
Group B:
15
27
32
18
Avg:23
STDEV: 6.82
Group C:
19
48
34
20
Avg: 30.25
STDEV: 11.84
So I have the Standard Deviation for each individual group, but if I were to combine the three groups, for example, the average would be 73.25 (the sum of all of the averages). How would I calculate the Standard Deviation for the total I would get for all of these sets combined?
If I take the STDEV of every number I get 9.91, but the average of 73.25 and STDEV of 9.91 doesn't seem right to me. Is there another way to do it?