corrShiny.Rd
Correlation Explorer Shiny App. This function creates a Shiny application to explore the correlation between variables in a given dataset.
corrShiny(
data,
x_var,
y_var,
color_var = NULL,
size_var = NULL,
correlation_method = "pearson"
)
A data frame with the variables to be analyzed.
The name of the variable to be plotted on the X-axis.
The name of the variable to be plotted on the Y-axis.
The name of the variable to be used for coloring the points on the scatter plot.
The name of the variable to be used for sizing the points on the scatter plot.
The method to be used for computing the correlation coefficient, must be one of "pearson", "spearman" or "kendall".
A Shiny app that displays a scatter plot and the correlation coefficient between two variables.