š Introduction to Modern Statistics - A college-level open-source textbook with a modern approach highlighting multivariable relationships and simulation-based inference. For v1, see https://openintro-ims.netlify.app.
values on the "medals per country of athletes" figure are wrong? For instance it shows 8 for Great Britain but computing a summary shows that the value is 11:
Figure 3.1 issues:
Top lines of
paralympic_1500 |> summarise(n = n(), .by =country_of_athlete) |> arrange(desc(n))
: GreatĀ Britain | 11 Kenya | 10 Algeria | 5 RussianĀ Federation | 5 Tunisia | 5 Spain | 4I suspect a filter has been applied but it is not clearly reported in the text :)