Display the evolution of REDI over time and data points.
plot_redi.Rd
Display the evolution of REDI over time and data points.
Usage
plot_redi(
redi,
plot_data = TRUE,
x_axis = "Input",
y_axis = "Output",
alpha = 0.2,
size = 1
)
Arguments
- redi
A tibble or data frame containing 4 mandatory columns :
Input
,Output
,REDI
andLambda
. One can use theredi()
function to get this tibble under the right format.- plot_data
A boolean, indicating whether original data should be displayed. Default is TRUE.
- x_axis
A character string, label of the x-axis. Default is 'Input'.
- y_axis
A character string, label of the y-axis. Default is 'Output'.
- alpha
A number, between 0 and 1, controlling the transparency of data points. Default is 0.2.
- size
A number, controlling the size of the data points. Default is 1.