# pltx **Repository Path**: summry/pltx ## Basic Information - **Project Name**: pltx - **Description**: Tools for matplotlib - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-12-05 - **Last Updated**: 2025-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: matplotlib ## README Usage Sample '''''''''''' .. code:: python import pltx y_true = [1, 1, 1, 0, 0, 0] y_pred = [1, 0, 1, 0, 0, 0] y_prob = [0.9, 0.1, 0.8, 0.2, 0.7, 0.3] pltx.plot_roc(y_true, y_prob) pltx.plot_confusion_matrix2(y_true, y_pred)