Belirli bir ülkeye göre filtreleme
Daha önce, Endonezya’da gerçekleşen projeler hakkında daha fazla bilgi edinmek için verileri nasıl filtreleyeceğini öğrenmiştin. Şimdi, investment_services_project verilerinde yer alan başka bir ülke için bu bilgileri sunan bir rapor oluşturacaksın. Bu egzersizde, Brezilya’da gerçekleşen projeler hakkında bilgi toplamak için verileri filtrelemeye başlayacaksın.
Bu egzersiz
R Markdown ile Raporlama
kursunun bir parçasıdırEgzersiz talimatları
- İlk kod bloğunda,
8.satırdakireadrpaketinden hemen sonra,9.satırdadplyrpaketini yükle. - Üçüncü kod bloğunda, Brezilya’da gerçekleşen projeleri belirlemek için
investment_services_projectsverisini filtrele. - Sonucu
brazil_investment_projectsolarak kaydet. - Kod bloğunu
brazil-investment-projectsolarak etiketle.
Uygulamalı interaktif egzersiz
Bu örnek kodu tamamlayarak bu egzersizi bitirin.
{"investment_report.Rmd":"---\ntitle: \"Investment Report\"\ndate: \"`r format(Sys.time(), '%d %B %Y')`\"\noutput: html_document\n---\n\n```{r data, include = FALSE}\nlibrary(readr)\n\n\ninvestment_annual_summary <- read_csv(\"https://assets.datacamp.com/production/repositories/5756/datasets/d0251f26117bbcf0ea96ac276555b9003f4f7372/investment_annual_summary.csv\")\ninvestment_services_projects <- read_csv(\"https://assets.datacamp.com/production/repositories/5756/datasets/bcb2e39ecbe521f4b414a21e35f7b8b5c50aec64/investment_services_projects.csv\")\n```\n\n\n## Datasets \n\n### Investment Annual Summary\n\nThe `investment_annual_summary` dataset provides a summary of the dollars in millions provided to each region for each fiscal year, from 2012 to 2018.\n```{r investment-annual-summary}\ninvestment_annual_summary\n```\n\n### Investment Projects in Brazil\n\nThe `investment_services_projects` dataset provides information about each investment project from 2012 to 2018. Information listed includes the project name, company name, sector, project status, and investment amounts.\n```{r}\n___ <- investment_services_projects %>%\n ___\n\nbrazil_investment_projects\n```\n\n\n"}