Show the top 15 companies by number of approved...
Created on Apr 6, 2025

Prompt

Show the top 15 companies by number of approved products

Chart

Query Results

Query Results

SQL Query:

SELECT applicant, COUNT(DISTINCT appl_no) AS approved_products_count FROM orange_book_products GROUP BY applicant ORDER BY approved_products_count DESC LIMIT 15;

Results:

applicantapproved_products_count
WATSON LABS895
HIKMA567
HOSPIRA465
CHARTWELL RX441
SANDOZ424
TEVA324
FRESENIUS KABI USA317
RISING292
NORVIUM BIOSCIENCE280
TARO246
ANI PHARMS242
STRIDES PHARMA228
AUROBINDO PHARMA LTD227
ENDO OPERATIONS221
ZYDUS PHARMS217
Chart Configuration
{
  "grid": {
    "left": "3%",
    "right": "4%",
    "bottom": "3%",
    "containLabel": true
  },
  "color": [
    "#5470c6",
    "#91cc75",
    "#fac858",
    "#ee6666",
    "#73c0de",
    "#3ba272",
    "#fc8452",
    "#9a60b4",
    "#ea7ccc"
  ],
  "title": {
    "left": "center",
    "text": "Top 15 Companies by Number of Approved Products"
  },
  "xAxis": {
    "data": [
      "WATSON LABS",
      "HIKMA",
      "HOSPIRA",
      "CHARTWELL RX",
      "SANDOZ",
      "TEVA",
      "FRESENIUS KABI USA",
      "RISING",
      "NORVIUM BIOSCIENCE",
      "TARO",
      "ANI PHARMS",
      "STRIDES PHARMA",
      "AUROBINDO PHARMA LTD",
      "ENDO OPERATIONS",
      "ZYDUS PHARMS"
    ],
    "name": "Number of Approved Products",
    "type": "value",
    "axisLabel": {
      "formatter": "{value}"
    },
    "boundaryGap": [
      0,
      0.01
    ]
  },
  "yAxis": {
    "data": [],
    "name": "Company",
    "type": "category",
    "inverse": true
  },
  "series": [
    {
      "id": "series1",
      "data": [
        "895",
        "567",
        "465",
        "441",
        "424",
        "324",
        "317",
        "292",
        "280",
        "246",
        "242",
        "228",
        "227",
        "221",
        "217"
      ],
      "name": "Approved Products",
      "type": "bar",
      "label": {
        "show": true,
        "position": "right",
        "formatter": "{c}"
      },
      "itemStyle": {
        "color": "#5470c6"
      }
    }
  ],
  "tooltip": {
    "trigger": "axis",
    "formatter": "{b}: {c}",
    "axisPointer": {
      "type": "shadow"
    }
  }
}