Nicholas Tierney

Results 356 comments of Nicholas Tierney

Heya @Maschette ! :) Thanks for putting the time into this :) Do you think you could provide an example of the kinds of data you were imagining being compared...

I like this a lot! I would like to include this in visdat! Two things to think about: 1. The name - something to indicate that it is visualising the...

Hi Dale, 1. How about plural: `vis_changes()` or do you think singular `vis_change()` makes more sense for you? `vis_diff()` makes me think of `git diff`, but maybe that evokes more...

Hi there! That is a good question, I can think of two solutions You can change the `theme(text = element_text(size = 6)` Or you can abbreviate the name - I've...

I've added a new function, `abbreviate_vars()` to assist with this: ``` r library(visdat) long_data % abbreviate_vars() %>% vis_miss() ``` ![](https://i.imgur.com/L2VOuWs.png) ``` r long_data %>% abbreviate_vars(min_length = 5) %>% vis_miss() ```...

Thanks! I'll have a read, looks interesting. :)

I've been thinking about this a bit and I'd be interested in your thoughts, Hadley. While I think it's good to incorporate some row+col reordering features into `visdat`, I that...

That's a good way of looking at it. Thanks for that mate, very much appreciated.

just a note to myself to keep an eye on this issue here: https://github.com/dgrtwo/widyr/issues/4 as this looks like it will be very very handy

Thank you for taking the time to write this! The [compare package](https://cran.r-project.org/web/packages/compare/) looks like a great approach to this, hopefully this can make it into the next release of visdat.