plotar: Correlation plots

View source: R/target_profiling.R

plotarR Documentation

Correlation plots

Description

Visual correlation analysis. Plot different graphs in order to expose the inner information of any numeric variable against the target variable

Usage

plotar(data, input, target, plot_type, path_out)

Arguments

data

data frame source

input

string input variable (if empty, it runs for all numeric variable), it can take a single character value or a character vector.

target

string of the variable to predict, it supports binary or multinominal values.

plot_type

Indicates the type of plot to retrieve, available values: "boxplot" or "histdens".

path_out

path directory, if it has a value the plot is saved. To save in current directory path must be dot: "."

Value

Single or multiple plots specified by 'plot_type' parameter

Examples


## It runs for all numeric variables automatically
plotar(data=heart_disease, target="has_heart_disease", plot_type="histdens")

plotar(heart_disease, input = 'age', target = 'chest_pain', plot_type = "boxplot")


funModeling documentation built on May 29, 2024, 3:24 a.m.