Code
generate_xtab(df = list("2", body(dplyr::mutate)), x = "education_rollup", y = "party_reg",
weight = "weightvec", caption = "caption")
Condition
Error:
! The argument 'df' must be an object of class or subclass of data frame
Code
generate_xtab(df = df, x = "education_rollup", y = "party_reg", weight = "weightvec",
caption = 3)
Condition
Error:
! The argument 'caption' must be a length one character vector
Code
generate_xtab(df = df, x = "education_rollup", y = "party_reg", weight = "weightvec",
caption = c("caption1", "caption2"))
Condition
Error:
! The argument 'caption' must be a length one character vector
Code
generate_xtab(df = df, x = 3, y = "party_reg", weight = "weightvec", caption = "caption")
Condition
Error:
! The arguments 'x', 'y', and 'weight' must be character vectors of length one
Code
generate_xtab(df = df, x = c("education_rollup", "party_reg"), y = "party_reg",
weight = "weightvec", caption = "caption")
Condition
Error:
! The arguments 'x', 'y', and 'weight' must be character vectors of length one
Code
generate_xtab(df = df, x = "party_reg", y = TRUE, weight = "weightvec",
caption = "caption")
Condition
Error:
! The arguments 'x', 'y', and 'weight' must be character vectors of length one
Code
generate_xtab(df = df, x = "does_not_exist", y = "education_rollup", weight = "weightvec",
caption = "caption")
Condition
Error:
! The arguments x, y, weight must be found amongst names(df)
Code
generate_xtab(df = df, x = "education_rollup", y = "does_not_exist", weight = "weightvec",
caption = "caption")
Condition
Error:
! The arguments x, y, weight must be found amongst names(df)
Code
generate_xtab(df = df, x = "education_rollup", y = "issue_focus", weight = "does_not_exist",
caption = "caption")
Condition
Error:
! The arguments x, y, weight must be found amongst names(df)
Code
generate_xtab_3way(df = list("2", body(dplyr::mutate)), x = "education_rollup",
y = "party_reg", z = "issue_focus", weight = "weightvec", caption = "caption")
Condition
Error:
! The argument 'df' must be an object of class or subclass of data frame
Code
generate_xtab_3way(df = df, x = "education_rollup", y = "party_reg", z = "issue_focus",
weight = "weightvec", caption = 3)
Condition
Error:
! The argument 'caption' must be a length one character vector
Code
generate_xtab_3way(df = df, x = "education_rollup", y = "party_reg", z = "issue_focus",
weight = "weightvec", caption = c("caption1", "caption2"))
Condition
Error:
! The argument 'caption' must be a length one character vector
Code
generate_xtab_3way(df = df, x = 3, y = "party_reg", z = "issue_focus", weight = "weightvec",
caption = "caption")
Condition
Error:
! The arguments 'x', 'y', 'z', and 'weight' must be character vectors of length one
Code
generate_xtab_3way(df = df, x = c("education_rollup", "party_reg"), y = "party_reg",
z = "issue_focus", weight = "weightvec", caption = "caption")
Condition
Error:
! The arguments 'x', 'y', 'z', and 'weight' must be character vectors of length one
Code
generate_xtab_3way(df = df, x = "party_reg", y = TRUE, z = "issue_focus",
weight = "weightvec", caption = "caption")
Condition
Error:
! The arguments 'x', 'y', 'z', and 'weight' must be character vectors of length one
Code
generate_xtab_3way(df = df, x = "education_rollup", y = "party_reg", z = complex(
4), weight = "weightvec", caption = "caption")
Condition
Error:
! The arguments 'x', 'y', 'z', and 'weight' must be character vectors of length one
Code
generate_xtab_3way(df = df, x = "does_not_exist", y = "education_rollup", z = "issue_focus",
weight = "weightvec", caption = "caption")
Condition
Error:
! The arguments x, y, z, weight must be found amongst names(df)
Code
generate_xtab_3way(df = df, x = "education_rollup", y = "does_not_exist", z = "issue_focus",
weight = "weightvec", caption = "caption")
Condition
Error:
! The arguments x, y, z, weight must be found amongst names(df)
Code
generate_xtab_3way(df = df, x = "education_rollup", y = "issue_focus", z = "does_not_exist",
weight = "weightvec", caption = "caption")
Condition
Error:
! The arguments x, y, z, weight must be found amongst names(df)
Code
generate_xtab_3way(df = df, x = "education_rollup", y = "issue_focus", z = "party_reg",
weight = "does_not_exist", caption = "caption")
Condition
Error:
! The arguments x, y, z, weight must be found amongst names(df)
Code
generate_topline(df = list("2", body(dplyr::mutate)), x = "education_rollup",
weight = "weightvec", caption = "caption")
Condition
Error:
! The argument 'df' must be an object of class or subclass of data frame
Code
generate_topline(df = df, x = "education_rollup", weight = "weightvec",
caption = 3)
Condition
Error:
! The argument 'caption' must be a length one character vector
Code
generate_topline(df = df, x = "education_rollup", weight = "weightvec",
caption = c("caption1", "caption2"))
Condition
Error:
! The argument 'caption' must be a length one character vector
Code
generate_topline(df = df, x = "party_reg", weight = 3, caption = "caption")
Condition
Error:
! The arguments 'x' and 'weight' must be character vectors of length one
Code
generate_topline(df = df, x = c("education_rollup", "party_reg"), weight = "weightvec",
caption = "caption")
Condition
Error:
! The arguments 'x' and 'weight' must be character vectors of length one
Code
generate_topline(df = df, x = TRUE, weight = "weightvec", caption = "caption")
Condition
Error:
! The arguments 'x' and 'weight' must be character vectors of length one
Code
generate_topline(df = df, x = "does_not_exist", weight = "weightvec", caption = "caption")
Condition
Error:
! The arguments variable and weight must be found amongst names(df)
Code
generate_topline(df = df, x = "party_reg", weight = "does_not_exist", caption = "caption")
Condition
Error:
! The arguments variable and weight must be found amongst names(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.