Correlation between Columns#
Description:
Measures the strength and direction of a linear relationship between two variables
Function:
Correlation(table = string, first_col = string, second_col = string, new_col = string)
Parameters:
Table: Table name on which to perform function
First Column: The 1st column to correlate
Second Column: The 2nd column to correlate
New Column Name: Name for new column
Example:
Correlation(table = Budget, first_col = "Date", second_col = "Actual", new_col = "Correl")