20 Matching Annotations
  1. Oct 2025
    1. The distribution of a list of numbers is the set of the possible values in the list and how often they occur.

      The distribution of X: is the set of the possible values that X can take, and how often they occur

    2. ince we returned the observed balls to the bowl before getting another sample, we say that we performed sampling with replacement

      No, the experiment did sampling withOUT replacement, because 50 balls were drawn simultaneously.

  2. Sep 2025
    1. Furthermore, observe that the variable continent is of type <fct>, which stands for factor

      major data types: - numeric - character - logical - (NEW!) factor.

      factor is shown like character, but internally saves integers (that matches to factor labels)

  3. Aug 2025
    1. Lastly, the $ operator allows us to extract and then explore a single variable within a data frame.

      One of the most basic command in R. It does not require any package.