LoslegenKostenlos loslegen

Apply

In this exercise, you will "apply" the function female_residence_prop() to obtain the proportion of female borrowers for both urban and rural areas for all years using the Map() function.

Diese Übung ist Teil des Kurses

Scalable Data Processing in R

Kurs anzeigen

Anleitung zur Übung

spl from the previous exercise is available in your workspace.

  • Call Map() on each of the row splits of spl.
  • Recall that the function to apply is female_residence_prop(). Assign the result to all_years.
  • View the str()ucture of all_years.

Interaktive Übung

Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.

# For each of the row splits, find the female residence proportion
all_years <- ___(function(rows) ___(mort, rows), ___)

# Call str on all_years
___
Code bearbeiten und ausführen