Change pillar::new_pillar_type() to pillar::type_sum() since the original code is just grabbing the output from type_sum() anyways. Certainly is more efficient coding. See dgkf/shinyDataFilter PR #15
Replace this:
|
pillar::new_pillar_type(obj)[[1]][1] |
With this:
type <- pillar::type_sum(obj)
if (length(type) == 0L) "" else type
Change
pillar::new_pillar_type()topillar::type_sum()since the original code is just grabbing the output fromtype_sum()anyways. Certainly is more efficient coding. See dgkf/shinyDataFilter PR #15Replace this:
IDEAFilter/R/shiny_vector_filter.R
Line 142 in d216e1e
With this: