library(tidyverse)
library(janitor)
library(lubridate)
library(stringi)
library(Hmisc)
library(ggeasy)
library(plotly)

theme_set(theme_classic())

COUNTS

# views

log1A %>%
  count(event_name)
## # A tibble: 2 x 2
##   event_name               n
##   <chr>                <int>
## 1 Chapter viewed        1799
## 2 Course module viewed   177
# unique students

n_distinct(log1A$user_full_name)
## [1] 246

PLOTS

views by date

views by week

views by chapter

views by week and chapter