शुरू करेंमुफ़्त में शुरू करें

Using ratios to describe the frequency of a name

In the video, you learned how to find the difference in the frequency of a baby name between consecutive years. What if instead of finding the difference, you wanted to find the ratio?

You'll start with the babynames_fraction data already, so that you can consider the popularity of each name within each year.

यह अभ्यास पाठ्यक्रम का हिस्सा है

Data Manipulation with dplyr

पाठ्यक्रम देखें

अभ्यास निर्देश

  • Arrange the data in ascending order of name and then year.
  • Group by name so that your mutate works within each name.
  • Add a column ratio containing the ratio (not difference) of fraction between each year.

इंटरैक्टिव व्यावहारिक अभ्यास

इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।

babynames_fraction %>%
  # Arrange the data in order of name, then year 
  ___
  # Group the data by name
  ___
  # Add a ratio column that contains the ratio of fraction between each year 
  ___
कोड संपादित करें और चलाएँ