orgadish

Results 14 comments of orgadish

Having `esquisse::esquisser(cars)` in a chunk also seems to hang the knitting process. For now my recommendation to my students is to run the esquisse GUI via the Add-in or the...

I think this functionality would be really useful. Though I agree it should not be the default. Either a fail argument, or for example, allow overwrite to take `T`, `F`,...

My primary need for the skipping is precisely because I'm copying from a very slow filesystem to my local machine. I don't think that the risk of files not being...

@DavisVaughan `list_ungroup` seems very specifically about reversing `vec_group_loc`. ~~What if instead of trying to reverse `vec_group_loc` with a new function, a third column was built into the result of `vec_group_loc`...

@vorpalvorpal Instead of copying the files locally to avoid dealing with the slow server, I ended up writing a `cached_read` function (https://github.com/orgadish/cachedread) which reads from the slow server once and...

What would you think about copying the signature specifically for `pivot_wider` and `pivot_longer` as I think those are the ones which I would use the most. I would happily submit...

One partial alternative I recently came across is `vctrs::vec_assert` which works well with for type checking against any prototype.

And I just found that `rlang` has an entire set of functions for type checking in `R/standalone-type-chrck.R` such as `check_number_whole`

Looks like this exists as `pkgload::dev_example()`, so the ask is to add this to the `run_examples` documentation and/or export `dev_example()` as part of `devtools`.

@pawelru I think the better alternative for me is `pkgload::dev_example()` which allows you pass in the topic/name rather than the full path. Since this function already exists, I think the...