2020-03-29 01:33:23 +00:00
|
|
|
### COVID-19 Digital Observatory
|
|
|
|
### 2020-03-28
|
|
|
|
###
|
|
|
|
### Minimal example analysis file using pageview data
|
|
|
|
|
|
|
|
library(tidyverse)
|
|
|
|
library(scales)
|
|
|
|
|
2020-04-01 21:52:22 +00:00
|
|
|
### Import and cleanup one datafile from the observatory
|
2020-03-29 01:33:23 +00:00
|
|
|
|
|
|
|
DataURL <-
|
2020-04-01 21:52:22 +00:00
|
|
|
url("https://covid19.communitydata.science/datasets/wikipedia/digobs_covid19-wikipedia-enwiki_dailyviews-20200401.tsv")
|
2020-03-29 01:33:23 +00:00
|
|
|
|
|
|
|
views <-
|
|
|
|
read.table(DataURL, sep="\t", header=TRUE, stringsAsFactors=FALSE)
|
|
|
|
|
|
|
|
### Alternatively, uncomment and run if working locally with full git
|
|
|
|
### tree
|
|
|
|
###
|
|
|
|
### Identify data source directory and file
|
|
|
|
## DataDir <- ("../data/")
|
|
|
|
## DataFile <- ("dailyviews2020032600.tsv")
|
|
|
|
|
|
|
|
## related.searches.top <- read.table(paste(DataDir,DataFile, sep=""),
|
|
|
|
## sep="\t", header=TRUE,
|
|
|
|
## stringsAsFactors=FALSE)
|
|
|
|
|
|
|
|
### Cleanup and do the grouping with functions from the Tidyverse
|
|
|
|
### (see https://www.tidyverse.org for more info)
|
|
|
|
|
|
|
|
views <- views[,c("article", "project", "timestamp", "views")]
|
2020-04-01 21:52:22 +00:00
|
|
|
views$timestamp <- fct_explicit_na(views$timestamp)
|
|
|
|
|
2020-03-29 01:33:23 +00:00
|
|
|
|
|
|
|
### Sorts and groups at the same time
|
|
|
|
views.by.proj.date <- arrange(group_by(views, project, timestamp),
|
|
|
|
desc(views))
|
|
|
|
|
2020-04-01 21:52:22 +00:00
|
|
|
|
2020-03-29 01:33:23 +00:00
|
|
|
### Export just the top 10 by pageviews
|
|
|
|
write.table(head(views.by.proj.date, 10),
|
|
|
|
file="output/top10_views_by_project_date.csv", sep=",",
|
|
|
|
row.names=FALSE)
|
|
|
|
|
|
|
|
### A simple visualization
|
|
|
|
p <- ggplot(data=views.by.proj.date, aes(views))
|
|
|
|
|
|
|
|
## Density plot with log-transformed axis
|
|
|
|
p + geom_density() + scale_x_log10(labels=comma)
|
|
|
|
|
|
|
|
|
|
|
|
|