sampled_index: no visible binding for global variable ‘data’
sampled_index: no visible binding for global variable ‘samples’
I believe data is the generated column name when using tidyr::nest() - we should name this explicitly, and then for both that and samples (created in a mutate() call), use the .data$ pronoun: https://rlang.r-lib.org/reference/tidyeval-data.html
When running
devtools::check()
:I believe
data
is the generated column name when usingtidyr::nest()
- we should name this explicitly, and then for both that andsamples
(created in amutate()
call), use the.data$
pronoun: https://rlang.r-lib.org/reference/tidyeval-data.html