library(knitr)
knitr::opts_chunk$set(echo = F, warning = F)
options(width = 10000)
# Achtung! Dieses RMD kann nur in Kombination mit render_overview laufen. 
# Dort werden die benötigten Daten erstellt. 
# TODO: wahrscheinilch noch zu ändern 

R Answer Shares

Filter Variables

if (exists("overview_shares_filter")) {
kable(overview_shares_filter)
} else {
  cat("This method was not applied!")
}

All Variables

if (exists("overview_shares")) {
kable(overview_shares)
} else {
  cat("This method was not applied!")
}

Time Patterns

Quantile Method

Filter Variables

if (exists("overview_q_filter")) {
kable(overview_q_filter)
} else {
  cat("This method was not applied!")
}

All Variables

if (exists("overview_q")) {
kable(overview_q)
} else {
  cat("This method was not applied!")
}

20%-Quantile Method

Filter Variables

if (exists("overview_q20_filter")) {
kable(overview_q_filter)
} else {
  cat("This method was not applied!")
}

All Variables

if (exists("overview_q20")) {
kable(overview_q20)
} else {
  cat("This method was not applied!")
}


marleneweinauer/iatools documentation built on Jan. 13, 2020, 3:24 p.m.