mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-21 05:19:07 +02:00
Deploying to gh-pages from @ agdamsbo/FreesearchR@54dd332cd8 🚀
This commit is contained in:
parent
4cf4bd0499
commit
6d545337de
328 changed files with 12930 additions and 1662 deletions
86
reference/visual-summary.md
Normal file
86
reference/visual-summary.md
Normal file
|
|
@ -0,0 +1,86 @@
|
|||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue