detect_outlier_zscore

detect_outlier_zscore(
    csv_file,
    column_name,
    threshold=3
) -> 

Detect outliers in a CSV file based on a specified column. The outliers are determined by calculating the z-score of the data points in the column.

Parameters:
NameDescription
csv_fileThe path to the CSV file.

column_nameThe name of the column to calculate z-scores for.

threshold=3