View source: R/barplot_server2.R
barplot_server2 | R Documentation |
Barplot Server2
barplot_server2(
id,
barplot_data,
group_data = shiny::reactive(NULL),
barplot_xlab = shiny::reactive(""),
barplot_ylab = shiny::reactive(""),
barplot_title = shiny::reactive(""),
barplot_label = shiny::reactive("Feature"),
drilldown = shiny::reactive(F),
mock_event_data = shiny::reactive(NULL),
...
)
id |
Module ID |
barplot_data |
A shiny::reactive that returns a dataframe with columns "sample_name", "group_name", feature_display", and "feature_value". |
group_data |
A shiny::reactive that returns a dataframe with columns group_display", and optionally, "group_description". Each value in the "group_name" column should only appear once. |
barplot_xlab |
A shiny::reactive that returns a string |
barplot_ylab |
A shiny::reactive that returns a string |
barplot_title |
A shiny::reactive that returns a string |
barplot_label |
A shiny::reactive that returns a string |
drilldown |
A shiny::reactive that returns True or False |
mock_event_data |
A shiny::reactive that returns a dataframe. For testing purposes only. Must have columns "curveNumber", "pointNumber", "x", "y", and "key". The "x" column corresponds to the group selected. |
... |
arguments sent to plotly_scatter |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.