• R/O
  • SSH

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision5a64379eeee529414721aeb786a083ed8875e9fa (tree)
Zeit2021-10-15 16:44:53
AutorLorenzo Isella <lorenzo.isella@gmai...>
CommiterLorenzo Isella

Log Message

I fixed a typo (reading twice the gdp and from the wrong directory).

Ändern Zusammenfassung

Diff

diff -r 6fb922e5c462 -r 5a64379eeee5 R-codes/process_covid_tracker.R
--- a/R-codes/process_covid_tracker.R Fri Oct 15 09:37:25 2021 +0200
+++ b/R-codes/process_covid_tracker.R Fri Oct 15 09:44:53 2021 +0200
@@ -1,6 +1,6 @@
11 rm(list=ls())
22
3-## last saved on Time-stamp: "2021-10-15 09:33:47 lorenzo"
3+## last saved on Time-stamp: "2021-10-15 09:44:10 lorenzo"
44
55
66 library(tidyverse)
@@ -1468,8 +1468,8 @@
14681468 temp2 <- bind_rows(duration_stat_ms, temp1) %>%
14691469 select(member_state_2_letter_code,mean_duration, median_duration)
14701470
1471-gdp <- read_csv("gdp.csv") %>%
1472- clean_data()
1471+## gdp <- read_csv("gdp.csv") %>%
1472+## clean_data()
14731473
14741474 t1 <- budget_test %>%
14751475 left_join(gdp, by=c("member_state_2_letter_code"="country")) %>%