Jim Hester

Results 413 comments of Jim Hester

Ah yes, now I remember. These problems stem from the fact that these terms are misspelled elsewhere in the same roxygen blocks. Because roxygen does not provide accurate line information...

This is a good idea, Bioconductor does something similar, requiring exported functions to have runnable examples. Here is an simple implementation, probably something similar could be added to covr. ```...

Definitely think this could be useful, I experimented a little with this for base R's completion at https://github.com/tidyverse/readxl/pull/320/files. People completions independently won't work well because you can only define one...

Jenny, just use https://github.com/jimhester/autoinst :stuck_out_tongue_winking_eye:

Well the lookup has to error first, but it uses http://rpkg.gepuro.net/ to figure out GitHub packages, which is clearly not perfect, but it works pretty well.

One idea is to use similarity matrix similar to [pubmed's for calculating similar articles](https://www.ncbi.nlm.nih.gov/books/NBK3827/#pubmedhelp.Computation_of_Similar_Articles). Basically it calculates a weighted matrix of articles based on the words in the abstract, with...

Tokenizing the full `man/` documentation is a good idea I didn't think of and would likely work better than trying to do the same with the code.

Just a small update, Patrick Wyman sent me the uncleaned spreadsheet for the letters dataset at https://docs.google.com/spreadsheets/d/1sNO1W9R54VaqxPTAgxbtuyqSMz9XMIeJQiyDeAerG2E/edit?usp=sharing. So if anyone wants to work on a small data package including cleaning...

I think the main issue with any of these community driven recommendation systems is not technical, it is getting the critical mass of recommendations to make them useful. I unfortunately...

We should probably provide some [glue](https://github.com/tidyverse/glue) or [whisker](https://github.com/edwindj/whisker) based helpers for doing email templating / mail merging in gmailr. It would also be nice to make an RStudio Addin for...