skimr

Skimr - cant seem to produce the histograms

佐手、 提交于 2019-12-30 10:14:08
问题 came across this seemingly new package - skimr, which looks pretty nifty, and was trying it out and looks like I'm missing some package installation. Skim works fine except that it doesn't print the histogram, it is supposed to print for numeric variables. I am merely trying the examples given in the documentation. Link to skimr documentation here - https://github.com/ropenscilabs/skimr#skimr this is the code I'm using devtools::install_github("hadley/colformat") devtools::install_github(

skimr: how to remove histogram?

匆匆过客 提交于 2019-12-11 08:41:25
问题 I want to use the function skim from R package skimr on Windows. Unfortunately, in many situations column, hist is printed incorrectly (with many <U+2587> -like symbols), as in the example below. Question: is there an easy way to either disable column "hist" and prevent it from being printed or prevent it from being calculated at all? Is there an option like hist = FALSE ? capture.output(skimr::skim(iris)) #> [1] "Skim summary statistics" #> [2] " n obs: 150 " #> [3] " n variables: 5 " #> [4]

Skimr - cant seem to produce the histograms

主宰稳场 提交于 2019-12-01 06:56:27
came across this seemingly new package - skimr, which looks pretty nifty, and was trying it out and looks like I'm missing some package installation. Skim works fine except that it doesn't print the histogram, it is supposed to print for numeric variables. I am merely trying the examples given in the documentation. Link to skimr documentation here - https://github.com/ropenscilabs/skimr#skimr this is the code I'm using devtools::install_github("hadley/colformat") devtools::install_github("ropenscilabs/skimr") library(skimr) a<-skim(mtcars) dim(a) View(a) instead of histograms being printed, I