Explore"

Describe Data

data %>% explore_tbl()
describe_tbl(data)
d <- describe(data)
knitr::kable(d)

Explore Variables

# create buckets of variables
buckets <- data %>% 
  explore::get_var_buckets(
    bucket_size = 100
  )

# height of each plot
fig_height <- data[buckets[[1]]] %>% 
  explore::total_fig_height()
for (i in seq_along(buckets)) {
  data[buckets[[i]]] %>% explore_all()
}


Try the explore package in your browser

Any scripts or data that you put into this service are public.

explore documentation built on Oct. 11, 2023, 9:07 a.m.