-
Notifications
You must be signed in to change notification settings - Fork 47
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
fixes for vis_expect #73
Comments
Here is the current behaviour (as of commit be1fdf6) library(visdat)
dat_test <- tibble::tribble(
~x, ~y,
-1, "A",
0, "B",
1, "C"
)
vis_expect(dat_test,
~ .x == -1) vis_expect(airquality,
~ .x == 5.1) Created on 2018-06-04 by the reprex package (v0.2.0). |
At the moment I am deciding to leave out the percentages of expectations that are TRUE in each column, I think you would be better off getting this kind of information from a dataframe summary method - as discussed in #83 I am going to keep the NA values as grey for the moment, but these might need to change in the future. |
Expect frame- helps to address some parts of #73
Need to add:
vis_miss
)- [ ] Maybe add in the % of cases true in each column?expect_frame
expect_frame
expect_frame
into vignette (Along withvis_cor()
The text was updated successfully, but these errors were encountered: