mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2025-12-16 17:42:10 +01:00
86 lines
1 KiB
Markdown
86 lines
1 KiB
Markdown
# Data correlations evaluation module
|
|
|
|
Data correlations evaluation module
|
|
|
|
Visual summary server
|
|
|
|
Visual summary modal
|
|
|
|
Plot missings and class with apexcharter. Not in use with FreesearchR.
|
|
|
|
Ggplot2 data summary visualisation based on visdat::vis_dat.
|
|
|
|
## Usage
|
|
|
|
``` r
|
|
visual_summary_ui(id)
|
|
|
|
visual_summary_server(id, data_r = shiny::reactive(NULL), ...)
|
|
|
|
modal_visual_summary(
|
|
id,
|
|
title = "Visual overview of data classes and missing observations",
|
|
easyClose = TRUE,
|
|
size = "xl",
|
|
footer = NULL,
|
|
...
|
|
)
|
|
|
|
missings_apex_plot(data, animation = FALSE, ...)
|
|
|
|
visual_summary(data, legend.title = NULL, ylab = "Observations", ...)
|
|
```
|
|
|
|
## Arguments
|
|
|
|
- id:
|
|
|
|
id
|
|
|
|
- data_r:
|
|
|
|
reactive data
|
|
|
|
- ...:
|
|
|
|
optional arguments passed to data_summary_gather()
|
|
|
|
- title:
|
|
|
|
title
|
|
|
|
- easyClose:
|
|
|
|
easyClose
|
|
|
|
- size:
|
|
|
|
modal size
|
|
|
|
- footer:
|
|
|
|
modal footer
|
|
|
|
- data:
|
|
|
|
data
|
|
|
|
- legend.title:
|
|
|
|
Legend title
|
|
|
|
- ylab:
|
|
|
|
Y axis label
|
|
|
|
## Value
|
|
|
|
Shiny ui module
|
|
|
|
shiny server
|
|
|
|
shiny modal
|
|
|
|
An `apexchart()` `htmlwidget` object.
|
|
|
|
ggplot2 object
|