Nothing
Code
dm_add_pk(d, a, x)
Condition
Error in `dm_add_pk()`:
! Table a already has a primary key. Use `force = TRUE` to change the existing primary key.
Code
dm_add_pk(d, a, x, check = TRUE)
Condition
Error in `check_key()`:
! (`x`) not a unique key of `a`.
Code
dm_rm_pk(d, a)
Condition
Error in `dm_rm_pk()`:
! No primary keys to remove.
Code
dm_add_fk(d, a, x, ref_table = b)
Condition
Error in `dm_add_fk()`:
! ref_table b needs a primary key first. Use `dm_enum_pk_candidates()` to find appropriate columns and `dm_add_pk()` to define a primary key.
Code
dm_add_fk(d, a, x, ref_table = b)
Condition
Error in `dm_add_fk()`:
! (`x`) is already a foreign key of table a into table b.
Code
dm_add_fk(d, a, x, ref_table = b, check = TRUE)
Condition
Error in `dm_add_fk()`:
! Column (`x`) of table a contains values (see examples above) that are not present in column (`x`) of table b.
Code
dm_rm_fk(d, a, x, ref_table = b)
Condition
Error in `dm_rm_fk()`:
! No foreign keys to remove.
Code
dm_add_uk(d, a, x)
Condition
Error in `dm_add_uk()`:
! A PK (`x`) for table a already exists, not adding UK.
Code
dm_add_uk(d, a, x)
Condition
Error in `dm_add_uk()`:
! A UK (`x`) for table a already exists, not adding UK.
Code
dm_rm_uk(d, a)
Condition
Error in `dm_rm_uk()`:
! No unique keys to remove.
Code
check_key(t, x)
Condition
Error in `check_key()`:
! (`x`) not a unique key of `t`.
Code
check_cardinality_1_1(parent, child, by_position = TRUE)
Condition
Error in `check_cardinality_1_1()`:
! 1..1 cardinality (bijectivity) is not given: Column (`x`) in table child contains duplicate values.
Code
check_cardinality_0_1(parent, child, by_position = TRUE)
Condition
Error in `check_cardinality_0_1()`:
! 0..1 cardinality (injectivity from child table to parent table) is not given: Column (`x`) in table child contains duplicate values.
Code
dm_set_colors(d, a)
Condition
Error in `dm_set_colors()`:
! All `...` arguments must be named. The names represent the colors.
Code
dm_set_colors(d, a = "blue")
Condition
Error in `dm_set_colors()`:
! You seem to be using outdated syntax for setting colors, type `?dm_set_colors()` for examples.
Code
dm_set_colors(d, nonexistent_color_xyz = a)
Condition
Error in `dm_set_colors()`:
! The color "nonexistent_color_xyz" is not available. Call `dm_get_available_colors()` for possible color names or use hex color codes.
Code
dm_get_con(d)
Condition
Error in `dm_get_con()`:
! A local <dm> doesn't have a DB connection.
Code
d$a <- tibble(x = 2)
Condition
Error in `$<-`:
! Updating <dm> objects not supported.
Code
d[["a"]] <- tibble(x = 2)
Condition
Error in `[[<-`:
! Updating <dm> objects not supported.
Code
dm_validate("not_a_dm")
Condition
Error in `dm_validate()`:
! Required class <dm> but instead is <character>.
Code
dm_validate(bad)
Condition
Error in `dm_validate()`:
! This <dm> is invalid, reason: A `dm` needs to be a list of one item named `def`.
Code
dm_zoom_to(d, b)
Condition
Error in `dm_zoom_to()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_update_zoomed(d)
Condition
Error in `dm_update_zoomed()`:
! Not supported on an unzoomed <dm>. Consider using `dm_zoom_to()` first.
Code
dm_flatten_to_tbl(d, a, .recursive = TRUE, .join = right_join)
Condition
Error in `dm_flatten_to_tbl()`:
! Recursive flattening only supports `left_join()`, `inner_join()`, or `full_join()`.
Code
dm_flatten_to_tbl(d, a, .join = nest_join)
Condition
Error in `dm_flatten_to_tbl()`:
! `join = nest_join` is not supported. Consider `join = left_join`.
Code
dm_rename_tbl(d, a = b)
Condition
Error in `dm_rename_tbl()`:
! Each new table needs to have a unique name. Duplicate new name: a.
Code
decompose_table(t, x, y)
Condition
Error in `decompose_table()`:
! `new_id_column` can't have an identical name as one of the columns of t.
Code
dm_paste(d, options = "nonexistent_option")
Condition
Error in `dm_paste()`:
! Option unknown: "nonexistent_option". Must be one of "all", "tables", "keys", "select", and "color".
Code
check_set_equality(parent, child, by_position = TRUE)
Output
# A tibble: 1 x 1
x
<int>
1 3
Condition
Error in `check_set_equality()`:
! Column (`x`) of table parent contains values (see examples above) that are not present in column (`x`) of table child.
Code
dm_draw(d, backend_opts = list(unsupported_option = TRUE))
Condition
Error in `dm_draw()`:
! Unsupported `backend_opts` for backend "DiagrammeR": unsupported_option.
i Supported options are: graph_attrs, node_attrs, edge_attrs, focus, graph_name, column_arrow, and font_size.
Code
copy_to(d, 42, name = "b")
Condition
Error in `copy_to()`:
! Only class <data.frame> is supported for argument `df`.
Code
copy_to(d, tibble(y = 1), name = "b", overwrite = TRUE)
Condition
Error in `copy_to()`:
! The `overwrite` argument is not supported.
Code
copy_to(d, tibble(y = 1), name = c("b", "c"))
Condition
Error in `copy_to()`:
! Argument `name` must have length 1, not length 2.
Code
pull_tbl(d, nonexistent)
Condition
Error in `pull_tbl()`:
! Table nonexistent not in <dm> object. Available table names: a.
Code
pull_tbl(d, b)
Condition
Error in `pull_tbl()`:
! Table `b` not zoomed, zoomed tables: `a`.
Code
dm_flatten_to_tbl(d, a, c)
Condition
Error in `dm_flatten_to_tbl()`:
! All selected tables must be reachable from `.start`.
Code
dm_flatten_to_tbl(d, a, b, c)
Condition
Error in `dm_flatten_to_tbl()`:
! All join partners of table `.start` must be its direct neighbors. Use `.recursive = TRUE` for recursive flattening.
Code
dm_flatten_to_tbl(dm_for_filter_w_cycle(), tf_5, .recursive = TRUE)
Condition
Error in `dm_flatten_to_tbl()`:
! Cycles in the relationship graph not yet supported.
i Shortest cycle: tf_5 -> tf_6 -> tf_7 -> tf_2 -> tf_3 -> tf_4 -> tf_5
Code
dm_select_tbl(d, a)
Condition
Error in `dm_select_tbl()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_add_pk(d, b, x)
Condition
Error in `dm_add_pk()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_add_fk(d, a, x, ref_table = b)
Condition
Error in `dm_add_fk()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_get_con(d)
Condition
Error in `dm_get_con()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_insert_zoomed(d)
Condition
Error in `dm_insert_zoomed()`:
! Not supported on an unzoomed <dm>. Consider using `dm_zoom_to()` first.
Code
dm_draw(d)
Condition
Error in `dm_draw()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_paste(d)
Condition
Error in `dm_paste()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_flatten(d, a, parent_tables = c)
Condition
Error in `dm_flatten()`:
! All selected tables must be reachable from `table`.
Code
pull_tbl(d, )
Condition
Error in `pull_tbl()`:
! Argument `table` is missing.
Code
dm_join_to_tbl(d, a, b, join = nest_join)
Condition
Error in `dm_join_to_tbl()`:
! `join = nest_join` is not supported. Consider `join = left_join`.
Code
dm_examine_constraints(d)
Condition
Error in `dm_examine_constraints()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_disambiguate_cols(d)
Condition
Error in `dm_disambiguate_cols()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_rm_pk(d, a)
Condition
Error in `dm_rm_pk()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_rm_fk(d, a, x, ref_table = b)
Condition
Error in `dm_rm_fk()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_add_uk(d, a, x)
Condition
Error in `dm_add_uk()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_rm_uk(d, a)
Condition
Error in `dm_rm_uk()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_has_pk(d, a)
Condition
Error in `dm_has_pk()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_get_pk(d, a)
Condition
Error in `dm_get_pk()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_get_all_pks(d)
Condition
Error in `dm_get_all_pks()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_get_all_fks(d)
Condition
Error in `dm_get_all_fks()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_get_all_uks(d)
Condition
Error in `dm_get_all_uks()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_enum_pk_candidates(d, a)
Condition
Error in `dm_enum_pk_candidates()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_enum_fk_candidates(d, a, b)
Condition
Error in `dm_enum_fk_candidates()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_rename(d, a, y = x)
Condition
Error in `dm_rename()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_select(d, a, x)
Condition
Error in `dm_select()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_set_table_description(d, a = "test")
Condition
Error in `dm_set_table_description()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
dm_get_tables(d)
Condition
Error in `dm_get_tables()`:
! Not supported on a <dm_zoomed>. Consider using one of `dm_update_zoomed()`, `dm_insert_zoomed()` or `dm_discard_zoomed()` first.
Code
check_cardinality_0_n(parent, child, by_position = TRUE)
Output
# A tibble: 1 x 1
x
<dbl>
1 3
Condition
Error in `check_cardinality_0_n()`:
! Column (`x`) of table child contains values (see examples above) that are not present in column (`x`) of table parent.
Code
check_cardinality_1_n(parent, child, by_position = TRUE)
Condition
Error in `check_cardinality_1_n()`:
! (`x`) not a unique key of `parent`.
Code
check_subset(child, parent, by_position = TRUE)
Output
# A tibble: 1 x 1
x
<dbl>
1 3
Condition
Error in `check_subset()`:
! Column (`x`) of table child contains values (see examples above) that are not present in column (`x`) of table parent.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.