Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unexpected error with a particular small dataframe #64

Closed
njtierney opened this issue Jan 12, 2018 · 1 comment
Closed

unexpected error with a particular small dataframe #64

njtierney opened this issue Jan 12, 2018 · 1 comment
Labels
Milestone

Comments

@njtierney
Copy link
Collaborator

dat_ms <- tibble::tribble(~x,  ~y,    ~z,
                          1,   "A",   -100,
                          3,   "N/A", -99,
                          NA,  NA,    -98,
                          -99, "E",   -101,
                          -98, "F",   -1)

visdat::vis_miss(dat_ms)
#> Warning in seq_len(nrow(x)): first element used of 'length.out' argument
#> Error in mutate_impl(.data, dots): Evaluation error: argument must be coercible to non-negative integer.
@njtierney njtierney added this to To do in CRAN 5.0 release Apr 5, 2018
@njtierney njtierney added this to the V0.2.0 milestone Jun 5, 2018
@njtierney njtierney removed the V0.5.0 label Jun 6, 2018
@njtierney
Copy link
Collaborator Author

This was fixed 4878053 - ended up being the same issue as #75

library(visdat)
dat_ms <- tibble::tribble(~x,  ~y,    ~z,
                          1,   "A",   -100,
                          3,   "N/A", -99,
                          NA,  NA,    -98,
                          -99, "E",   -101,
                          -98, "F",   -1)

visdat::vis_miss(dat_ms)

visdat::vis_dat(dat_ms)

Created on 2018-06-07 by the reprex package (v0.2.0).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
No open projects
Development

No branches or pull requests

1 participant