Bob Muenchen
Bob Muenchen
summarytools is great! I've taught it in my R Markdown workshop for several years. This time, I switched to piping the variables in. It mostly works, but also generates an...
As is pointed out on page 7 of: chrome-extension://efaidnbmnnnibpcajpcglclefindmkaj/viewer.html? pdfurl=http%3A%2F%2Fhaozhu233.github.io%2FkableExtra%2Fawesome_table_in_pdf.pdf&clen=624152&chunk=true the scale_down option actually *scales up* if the table does not fill the textwidth:  A useful alternative is the...
It would be helpful if vis_compare could have an argument to tell it to ignore minor differences such as a shifted column location, storage type, or a different sort order....
I've been using the WordStat Sentiment dictionary: https://provalisresearch.com/products/content-analysis-software/wordstat-dictionary/ but before I imported it, I removed the negation rules at the top with a text editor and it then works fine...
I think it would be fairly easy to add support for the lsa package to tidytext and broom. See example below. ```r # Put some docs in a vector library("dplyr")...
``` r # nearest_neighbor() demo showing that for datasets with factor # predictors, kknn package must be loaded manually library(tidyverse) library("tidymodels") #> Registered S3 method overwritten by 'xts': #> method...
Congrats on changing the syntax to be more compatible with the tidyverse! Another change that would be most helpful would be to have this code: mtcars %>% select(cyl, am) %>%...
When running contTables in RStudio, the Chi symbol in Chi-Squared shows up fine in the notebook view, but when it knits to HTML or Word, it shows up as ²....
It would be helpful if the contTables function accepted string vectors in its rows and cols arguments. We very often use multiple variables in one or the other position. Occasionally...