Code
vec_set_intersect(1, "x")
Condition
Error in `vec_set_intersect()`:
! Can't combine `x` <double> and `y` <character>.
Code
vec_set_difference(1, "x")
Condition
Error in `vec_set_difference()`:
! Can't combine `x` <double> and `y` <character>.
Code
vec_set_union(1, "x")
Condition
Error in `vec_set_union()`:
! Can't combine `x` <double> and `y` <character>.
Code
vec_set_symmetric_difference(1, "x")
Condition
Error in `vec_set_symmetric_difference()`:
! Can't combine `x` <double> and `y` <character>.
Code
vec_set_intersect(1, 2, 3)
Condition
Error in `vec_set_intersect()`:
! `...` must be empty.
x Problematic argument:
* ..1 = 3
i Did you forget to name an argument?
Code
vec_set_difference(1, 2, 3)
Condition
Error in `vec_set_difference()`:
! `...` must be empty.
x Problematic argument:
* ..1 = 3
i Did you forget to name an argument?
Code
vec_set_union(1, 2, 3)
Condition
Error in `vec_set_union()`:
! `...` must be empty.
x Problematic argument:
* ..1 = 3
i Did you forget to name an argument?
Code
vec_set_symmetric_difference(1, 2, 3)
Condition
Error in `vec_set_symmetric_difference()`:
! `...` must be empty.
x Problematic argument:
* ..1 = 3
i Did you forget to name an argument?
ptype
is respectedCode
vec_set_intersect(1, 1.5, ptype = integer())
Condition
Error in `vec_set_intersect()`:
! Can't convert from `y` <double> to <integer> due to loss of precision.
* Locations: 1
Code
vec_set_difference(1, 1.5, ptype = integer())
Condition
Error in `vec_set_difference()`:
! Can't convert from `y` <double> to <integer> due to loss of precision.
* Locations: 1
Code
vec_set_union(1, 1.5, ptype = integer())
Condition
Error in `vec_set_union()`:
! Can't convert from `y` <double> to <integer> due to loss of precision.
* Locations: 1
Code
vec_set_symmetric_difference(1, 1.5, ptype = integer())
Condition
Error in `vec_set_symmetric_difference()`:
! Can't convert from `y` <double> to <integer> due to loss of precision.
* Locations: 1
x_arg
and y_arg
can be adjustedCode
vec_set_intersect(1, "2", x_arg = "foo", y_arg = "bar")
Condition
Error in `vec_set_intersect()`:
! Can't combine `foo` <double> and `bar` <character>.
Code
vec_set_difference(1, "2", x_arg = "foo", y_arg = "bar")
Condition
Error in `vec_set_difference()`:
! Can't combine `foo` <double> and `bar` <character>.
Code
vec_set_union(1, "2", x_arg = "foo", y_arg = "bar")
Condition
Error in `vec_set_union()`:
! Can't combine `foo` <double> and `bar` <character>.
Code
vec_set_symmetric_difference(1, "2", x_arg = "foo", y_arg = "bar")
Condition
Error in `vec_set_symmetric_difference()`:
! Can't combine `foo` <double> and `bar` <character>.
Code
vec_set_intersect(1, "2", x_arg = "", y_arg = "")
Condition
Error in `vec_set_intersect()`:
! Can't combine <double> and <character>.
error_call
can be adjustedCode
my_set_intersect()
Condition
Error in `my_set_intersect()`:
! Can't combine `x` <double> and `y` <character>.
Code
my_set_difference()
Condition
Error in `my_set_difference()`:
! Can't combine `x` <double> and `y` <character>.
Code
my_set_union()
Condition
Error in `my_set_union()`:
! Can't combine `x` <double> and `y` <character>.
Code
my_set_symmetric_difference()
Condition
Error in `my_set_symmetric_difference()`:
! Can't combine `x` <double> and `y` <character>.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.