EU Parliament Monitor — API Documentation - v0.8.24
    Preparing search index...

    Interface SignificanceTrend

    Trend in significance scores over a sequence of items, indicating whether scores are increasing, decreasing, or stable.

    interface SignificanceTrend {
        direction: "stable" | "increasing" | "decreasing";
        averageChange: number;
        confidence: "high" | "medium" | "low";
        dataPoints: number;
    }
    Index

    Properties

    direction: "stable" | "increasing" | "decreasing"

    Direction of the trend

    averageChange: number

    Average signed change in composite score per item

    confidence: "high" | "medium" | "low"

    Confidence in the trend detection

    dataPoints: number

    Number of data points used for trend computation