---------------------------------------------------------------------- This is the API documentation for the gdtest_sec_index_opt library. ---------------------------------------------------------------------- ## Functions Public functions analyze(data: list) -> dict Analyze the given data and return summary statistics. Parameters ---------- data : list A list of numeric values to analyze. Returns ------- dict A dictionary with summary statistics. Examples -------- >>> analyze([1, 2, 3]) {'mean': 2.0, 'count': 3} transform(value: str, upper: bool = False) -> str Transform a string value. Parameters ---------- value : str The string to transform. upper : bool Whether to convert to upper case. Returns ------- str The transformed string. Examples -------- >>> transform("hello", upper=True) 'HELLO'