You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there! Big fan of this package and I use it on regularly when doing analysis. Recently I have been working with a very large dataset and I find that the vis_miss() is not working as intended. I did set warn_large_data=FALSE but for some reason I'm just getting a blank plot.
The data that I am working with is this so making a minimal reproducible example is a little challenging. The code I have is.
Thanks for posting this, glad you are enjoying using naniar and visdat!
This is a problem that has plagued me for years - see ropensci/visdat#32
As far as I can tell, this is due to the way the cells are drawn in ggplot, so for large data, there are too many cells. However, "large data" depends on your machine specs - how much RAM, memory, etc you have.
My main recommendation here is to try downsampling your data:
Or use other functions to explore your missing data, like gg_miss_upset(data), or try modelling missingness using decision trees, as shown in this vignette
Hi there! Big fan of this package and I use it on regularly when doing analysis. Recently I have been working with a very large dataset and I find that the
vis_miss()
is not working as intended. I did setwarn_large_data=FALSE
but for some reason I'm just getting a blank plot.The data that I am working with is this so making a minimal reproducible example is a little challenging. The code I have is.
The output is:
Which is strange as there is missing data but it is not visualized at all.
If you know of any reason why this is the case I would greatly appreciate it!
Thanks!
The text was updated successfully, but these errors were encountered: