Specify a "numeric" input box
See also
Other inputtypes:
input_checkbox(),
input_multiselect(),
input_radio(),
input_select(),
input_text()
Examples
library(ggplot2)
library(dplyr)
panel_dat <- (
  ggplot(gap, aes(year, life_exp)) +
    geom_point() +
    facet_panels(vars(country, continent))
  ) |>
  as_panels_df()
trell <- panel_dat |>
as_trelliscope_df() |>
add_inputs(
  input_number(
    name = "Numeric Input",
    label = "A space to add custom ranking for sorting",
    min = 0, max = 10
  )
)
if (FALSE) { # \dontrun{
view_trelliscope(trell)
} # }