Skip to content

Commit

Permalink
fix git-deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
kmasiello committed Aug 7, 2024
1 parent 8623430 commit 43f7c7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions materials/06-usage-monitoring/06-usage-monitoring.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ unique_visitors <- usage |> filter(!is.na(user_guid)) |>pull(user_guid) |> uniqu
## Row

Usage of **`r content_info$title`**, for the period of
**`r as_date(report_from)`** to **`r as_date(as_of_date)`**
**`r as_date(report_from)`** to **`r as_date(as_of_date)`**

## Row

Expand Down Expand Up @@ -163,7 +163,7 @@ usage |>
paste("Top", top_n, "content users")}) |>
tab_stubhead(label = "username") |>
cols_label(tot_usage = "total usage", first_visit ="first visit", last_visit="last visit") |>
tab_footnote(footnote=glue::glue("First and last usage in the period {as_date(report_from)} to {as_date(as_of_date)}"), locations=cells_column_labels(columns=c("first_visit", last_visit)) ) |>
tab_footnote(footnote=glue::glue("First and last usage in the period {as_date(report_from)} to {as_date(as_of_date)}"), locations=cells_column_labels(columns=c("first_visit", last_visit))) |>
cols_nanoplot(
columns = -c(tot_usage, first_visit, last_visit),
new_col_name = "daily usage",
Expand All @@ -174,7 +174,7 @@ usage |>
data_area_fill_color = "#CFD9C7",
data_line_stroke_color = "#546A7B"
)
)
)
```
Expand Down

0 comments on commit 43f7c7a

Please sign in to comment.