Andrew Martin
Andrew Martin
I think that this would help resolve some behavior that is showing up in purrr, eg [#181](https://github.com/tidyverse/purrr/issues/181) - `map_chr` will 'die trying' if it encounters NULL, but can convert NA...
public or private repo? there's a PR (#38) and an issue (#19) that discuss a similar error for private repos.
good suggestion! the PAT is also referenced on the language-specific examples - eg the [python](https://github.com/rhysd/github-action-benchmark/blob/master/.github/workflows/pytest.yml) example
Chris, any more thoughts on this? If non-exported functions are hard to debug, I'm inclined to think that we should export just about everything. Most of the hadley stack is...
bumping this hiding internals make things VERY hard to debug -- if you're stepping through the logic of a function line by line, and you hit a non-exported function, it...
For dplyr or for any package?
[this](https://github.com/almartin82/mapvizieR/commit/83dc0d349c2391442132d21be8a94f5c2369dedd) commit is a perfect example - I needed to get at the internals of `haid_plot`, and doing so required triple prefixing some of the internal calls with `mapvizieR:::`. which...
commit [#b1bc479](https://github.com/almartin82/mapvizieR/commit/b1bc47930cbe0a84d06293a9befa422df3326de7) exports `mv_opening_checks`, `mv_limit_growth`, etc
right, but what if you are _not_ on the package itself? what if you have simply loaded the package in another project (and have variables in that environment that are...
Does MAP always do this consistently? Or (ugh) does it change over cdfs? On May 17, 2017 1:04 PM, "Chris Haid" wrote: > I've got dates such 01/12/2017 (January 12th,...