1. Learn
  2. /
  3. Courses
  4. /
  5. Reporting with R Markdown

Connected

Exercise

Filtering for a specific country

Previously, you learned how to filter the data to find out more information about projects that occurred in Indonesia. Now, you'll build a report that provides this information for another country that's included in the investment_services_project data. In this exercise, you'll begin filtering the data to gather information about projects that occurred in Brazil.

Instructions

100 XP
  • Load the dplyr package in the first code chunk on line 9 right after the readr package on line 8.
  • In the third code chunk, filter the investment_services_projects data to determine which projects occurred in Brazil.
  • Save the result as brazil_investment_projects.
  • Label the code chunk brazil-investment-projects.