Show the most common dosage forms
Created on May 6, 2025

Prompt

Show the most common dosage forms

Chart

Query Results

Query Results

SQL Query:

SELECT
  route AS dosage_form,
  COUNT(*) AS frequency
FROM
  orange_book_products
WHERE
  route IS NOT NULL
GROUP BY
  route
ORDER BY
  frequency DESC
LIMIT 20;

Results:

dosage_formfrequency
TABLET;ORAL18838
INJECTABLE;INJECTION7018
CAPSULE;ORAL5113
TABLET, EXTENDED RELEASE;ORAL2487
CAPSULE, EXTENDED RELEASE;ORAL1164
SOLUTION;INTRAVENOUS831
SOLUTION;ORAL668
CREAM;TOPICAL586
INJECTABLE;INTRAVENOUS556
SOLUTION/DROPS;OPHTHALMIC555
FOR SUSPENSION;ORAL481
TABLET, ORALLY DISINTEGRATING;ORAL406
TABLET, DELAYED RELEASE;ORAL370
OINTMENT;TOPICAL344
SUSPENSION;ORAL330
SYRUP;ORAL302
POWDER;INTRAVENOUS298
CAPSULE, DELAYED REL PELLETS;ORAL256
SOLUTION;TOPICAL248
TABLET, CHEWABLE;ORAL245
Chart Configuration
{
  "grid": {
    "left": "3%",
    "right": "4%",
    "bottom": "10%",
    "containLabel": true
  },
  "title": {
    "text": "Dosage Form Count by Route"
  },
  "xAxis": {
    "data": [
      "TABLET;ORAL",
      "INJECTABLE;INJECTION",
      "CAPSULE;ORAL",
      "TABLET, EXTENDED RELEASE;ORAL",
      "CAPSULE, EXTENDED RELEASE;ORAL",
      "SOLUTION;INTRAVENOUS",
      "SOLUTION;ORAL",
      "CREAM;TOPICAL",
      "INJECTABLE;INTRAVENOUS",
      "SOLUTION/DROPS;OPHTHALMIC",
      "FOR SUSPENSION;ORAL",
      "TABLET, ORALLY DISINTEGRATING;ORAL",
      "TABLET, DELAYED RELEASE;ORAL",
      "OINTMENT;TOPICAL",
      "SUSPENSION;ORAL",
      "SYRUP;ORAL",
      "POWDER;INTRAVENOUS",
      "CAPSULE, DELAYED REL PELLETS;ORAL",
      "SOLUTION;TOPICAL",
      "TABLET, CHEWABLE;ORAL"
    ],
    "name": "Category",
    "type": "category",
    "nameGap": 30,
    "axisLabel": {
      "rotate": 30,
      "interval": 0
    },
    "nameLocation": "middle"
  },
  "yAxis": {
    "name": "Count",
    "type": "value",
    "nameGap": 40,
    "nameLocation": "middle"
  },
  "legend": {},
  "series": [
    {
      "data": [
        18838,
        7018,
        5113,
        2487,
        1164,
        831,
        668,
        586,
        556,
        555,
        481,
        406,
        370,
        344,
        330,
        302,
        298,
        256,
        248,
        245
      ],
      "name": "Dosage Form Count",
      "type": "bar",
      "label": {
        "show": true,
        "position": "top"
      }
    }
  ],
  "tooltip": {
    "trigger": "axis",
    "axisPointer": {
      "type": "shadow"
    }
  }
}