# Create a data overview data.frame ready for sparklines Create a data overview data.frame ready for sparklines ## Usage ``` r overview_vars(data) ``` ## Arguments - data: data ## Value data.frame ## Examples ``` r mtcars |> overview_vars() #> # A tibble: 11 × 7 #> icon class name n_missing p_complete n_unique vals #> #> 1 numeric numeric mpg 0 1 25 #> 2 numeric numeric cyl 0 1 3 #> 3 numeric numeric disp 0 1 27 #> 4 numeric numeric hp 0 1 22 #> 5 numeric numeric drat 0 1 22 #> 6 numeric numeric wt 0 1 29 #> 7 numeric numeric qsec 0 1 30 #> 8 numeric numeric vs 0 1 2 #> 9 numeric numeric am 0 1 2 #> 10 numeric numeric gear 0 1 3 #> 11 numeric numeric carb 0 1 6 ```