calculate_skewness_and_kurtosis

calculate_skewness_and_kurtosis(csv_file: str, column_name: str) -> tuple

Calculate the skewness and kurtosis of a specified column in a CSV file. The kurtosis is calculated using the Fisher definition.
The two metrics are computed using scipy.stats functions.

Parameters:
NameDescription
csv_fileThe path to the CSV file.

Type: str
column_nameThe name of the column to calculate skewness and kurtosis for.

Type: str
Returns:
TypeDescription
tupletuple: (skewness, kurtosis)