Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
56 lines (50 sloc)
1.56 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: 'EX1 Experiment for Google users' | |
author: 'Mint Metrics' | |
date: Knitted `r format(Sys.Date(),format = "%d %B %Y")` | |
output: | |
html_document: | |
toc: true | |
toc_float: true | |
theme: sandstone | |
--- | |
<style type="text/css">@media print {#TOC {display: none;}}</style> | |
```{r includes, include=FALSE, echo=FALSE, cache=FALSE, warning=FALSE} | |
# TO CONFIGURE: Path to Redshift/PostgreSQL connection (must expose "con" connection variable in this namespace) | |
for (lib in c("reports","plots","tables","queries_snowplow_redshift","experiment_sizing")) { | |
source(paste0("./mojito-functions/",lib,".R")) | |
} | |
``` | |
```{r options, echo=FALSE, include=FALSE, message=FALSE, warning=FALSE} | |
wave_params <- list( | |
client_id = "mintmetrics", | |
wave_id = "ex1", | |
start_date = "2019-05-15 09:19:45", | |
stop_date = "2019-06-05 14:29:00", | |
time_grain = "days", | |
subject = "usercookie", | |
recipes = c("Control", "Treatment") | |
) | |
``` | |
**Started: ** `r wave_params$start_date` | |
**Ended: ** `r mojitoReportDates(wave_params)` | |
# Summary | |
```{r, echo=FALSE, message=FALSE, warning=FALSE, results='asis', fig.height=3, fig.width=10, fig.align='center'} | |
goalList <- list( | |
list( | |
title = "Transactions", | |
goal = "purchase", | |
operand = "=" | |
), | |
list( | |
title = "Page views", | |
goal = "page_view %", | |
operand = "like" | |
) | |
) | |
goalList <- mojitoFullKnit(wave_params, goal_list = goalList) | |
``` | |
# Test diagnostics | |
```{r, echo=FALSE, message=FALSE, warning=FALSE, results='asis', fig.height=3, fig.width=10, fig.align='center'} | |
mojitoDiagnostics(wave_params, lapply(goalList, "[")[[1]]$result) | |
``` |