]> code.communitydata.science - covid19.git/commitdiff
Loading data directly from github URL. Commenting out commands that assume cloned...
authoraaronshaw <aaron.d.shaw@gmail.com>
Sat, 28 Mar 2020 22:30:37 +0000 (17:30 -0500)
committeraaronshaw <aaron.d.shaw@gmail.com>
Sat, 28 Mar 2020 22:30:37 +0000 (17:30 -0500)
transliterations/analysis/related_searches_example.R

index 2576d4a862b066423fa6142ee3c53e5dfc4580a3..e1197b62796ba05814eda58ea8b93a203cd43df4 100644 (file)
@@ -3,16 +3,24 @@
 ### 
 ### Minimal example analysis file using trending search data
 
-### Identify data source directory and file
-DataDir <- ("../data/output/")
-DataFile <- ("related_searches_top.csv")
-
 ### Import and cleanup data
-related.searches.top <- read.table(paste(DataDir,DataFile,
-                                 sep=""),
+
+DataURL <-
+    url("https://github.com/CommunityDataScienceCollective/COVID-19_Digital_Observatory/blob/master/transliterations/data/output/related_searches_top.csv")
+
+related.searches.top <- read.table(DataURL,
                            sep=",", header=TRUE,
                            stringsAsFactors=FALSE) 
 
+### Alternatively, uncomment and run if working locally with full git tree
+### Identify data source directory and file
+## DataDir <- ("../data/output/")
+## DataFile <- ("related_searches_top.csv")
+
+## related.searches.top <- read.table(paste(DataDir,DataFile, sep=""),
+##                                   sep=",", header=TRUE,
+##                                   stringsAsFactors=FALSE)
+
 ### Aggregate top 5 search queries by term/day
 top5.per.term.date <- aggregate(query ~ term + date,
                                 data=related.searches.top,

Community Data Science Collective || Want to submit a patch?