mirror of
https://github.com/agdamsbo/FreesearchR.git
synced 2026-06-19 04:27:30 +02:00
This commit is contained in:
parent
16adb622ee
commit
e9422a418b
17 changed files with 173 additions and 48 deletions
|
|
@ -1,11 +1,13 @@
|
|||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/data_plots.R, R/plot_hbar.R, R/plot_ridge.R,
|
||||
% R/plot_sankey.R, R/plot_scatter.R, R/plot_violin.R
|
||||
% Please edit documentation in R/data_plots.R, R/plot_box.R, R/plot_hbar.R,
|
||||
% R/plot_ridge.R, R/plot_sankey.R, R/plot_scatter.R, R/plot_violin.R
|
||||
\name{data-plots}
|
||||
\alias{data-plots}
|
||||
\alias{data_visuals_ui}
|
||||
\alias{data_visuals_server}
|
||||
\alias{create_plot}
|
||||
\alias{plot_box}
|
||||
\alias{plot_box_single}
|
||||
\alias{plot_hbars}
|
||||
\alias{plot_ridge}
|
||||
\alias{sankey_ready}
|
||||
|
|
@ -20,6 +22,10 @@ data_visuals_server(id, data, ...)
|
|||
|
||||
create_plot(data, type, x, y, z = NULL, ...)
|
||||
|
||||
plot_box(data, x, y, z = NULL)
|
||||
|
||||
plot_box_single(data, x, y = NULL, seed = 2103)
|
||||
|
||||
plot_hbars(data, x, y, z = NULL)
|
||||
|
||||
plot_ridge(data, x, y, z = NULL, ...)
|
||||
|
|
@ -56,6 +62,10 @@ ggplot2 object
|
|||
|
||||
ggplot2 object
|
||||
|
||||
ggplot object
|
||||
|
||||
ggplot2 object
|
||||
|
||||
ggplot2 object
|
||||
|
||||
data.frame
|
||||
|
|
@ -71,6 +81,10 @@ Data correlations evaluation module
|
|||
|
||||
Wrapper to create plot based on provided type
|
||||
|
||||
Beautiful box plot(s)
|
||||
|
||||
Create nice box-plots
|
||||
|
||||
Nice horizontal stacked bars (Grotta bars)
|
||||
|
||||
Plot nice ridge plot
|
||||
|
|
@ -85,6 +99,11 @@ Beatiful violin plot
|
|||
}
|
||||
\examples{
|
||||
create_plot(mtcars, "plot_violin", "mpg", "cyl")
|
||||
mtcars |> plot_box(x = "mpg", y = "cyl", z = "gear")
|
||||
mtcars |>
|
||||
default_parsing() |>
|
||||
plot_box(x = "mpg", y = "cyl", z = "gear")
|
||||
mtcars |> plot_box_single("mpg","cyl")
|
||||
mtcars |> plot_hbars(x = "carb", y = "cyl")
|
||||
mtcars |> plot_hbars(x = "carb", y = NULL)
|
||||
mtcars |>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue