Show the number of exclusivities granted by year
Created on Apr 10, 2025

Prompt

Show the number of exclusivities granted by year

Chart

Query Results

Query Results

SQL Query:

SELECT
    EXTRACT(YEAR FROM exclusivity_date) AS category,
    COUNT(*) AS value
FROM
    orange_book_exclusivities
GROUP BY
    category
ORDER BY
    category;

Results:

categoryvalue
20207
202215
20236
202436
2025491
2026481
2027426
2028206
2029148
2030129
2031106
20323
20334
20343
20351
Chart Configuration
{
  "grid": {
    "left": "3%",
    "right": "4%",
    "bottom": "3%",
    "containLabel": true
  },
  "title": {
    "top": "20px",
    "left": "center",
    "text": "Number of Exclusivities Granted Per Year"
  },
  "xAxis": {
    "data": [
      "2020",
      "2022",
      "2023",
      "2024",
      "2025",
      "2026",
      "2027",
      "2028",
      "2029",
      "2030",
      "2031",
      "2032",
      "2033",
      "2034",
      "2035"
    ],
    "name": "Year",
    "type": "category",
    "nameGap": 30,
    "nameLocation": "middle"
  },
  "yAxis": {
    "name": "Number of Exclusivities",
    "type": "value",
    "nameGap": 50,
    "nameLocation": "middle"
  },
  "legend": {
    "top": "60px",
    "data": [
      "undefined"
    ]
  },
  "series": [
    {
      "data": [
        7,
        15,
        6,
        36,
        491,
        481,
        426,
        206,
        148,
        129,
        106,
        3,
        4,
        3,
        1
      ],
      "name": "undefined",
      "type": "bar"
    }
  ],
  "tooltip": {
    "trigger": "axis",
    "axisPointer": {
      "type": "shadow"
    }
  },
  "backgroundColor": "#fff"
}