Richie Cotton

Results 47 issues of Richie Cotton

To cut a continuous variable into buckets, locally I can do: ```r library(dplyr) d

dplyr
featurerequest

Many git commands have a `--verbose` option for debugging. For example, when cloning, you can see extra output using ``` git clone [email protected]:username/reponame.git --verbose ``` For cases when things aren't...

The word "ominous" has a score of 3, indicating that it has positive sentiment. https://github.com/fnielsen/afinn/search?q=ominous&type=Code This seems counterintuitive to me. By comparison, the Bing lexicon considers it to be a...

If you have data with many zeroes, it can be useful to replace the `0` character with something subtler in printed output. For example, the `Matrix` package defaults to printing...

help wanted

It would be useful to have an executive summary page near the start of the report generated by clean that provides an overview of any problems found. (This is particularly...

enhancement

List columns can cause errors in `clean()`. ```r library(tibble) d

enhancement

`rJava` is a bit painful in that it sometimes takes a ridiculous amount of effort to get working on some systems. I see that [in previous issues](https://github.com/trinker/qdap/issues/169) there has been...

Using some of the built-in graphs types, I see an error ```r library(igraph) tetra Error in names(ver) 4 7 7 0.4660912 g g #> 5 9 10 0.9414583 i j...

If I make a plot manually, using the nest+map approach, I can see the cognostic descriptions in the Labels tool. Here's the setup. ```r library(dplyr) library(tidyr) library(ggplot2) library(trelliscopejs) mpg_selected %...

Checking that two numbers are equal within a specified tolerance is currently a bit clunky and prone to error. See this example of it being done wrong. https://github.com/datacamp/courses-statistical-simulation-in-python/pull/106#pullrequestreview-234160761 Having a...