Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,23 +12,31 @@ size_categories:
|
|
| 12 |
- 10K<n<100K
|
| 13 |
---
|
| 14 |
|
| 15 |
-
🏛️ Dataset Summary
|
| 16 |
|
| 17 |
-
|
| 18 |
|
| 19 |
-
🚀 Key Features
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
|
|
|
| 23 |
|
| 24 |
-
|
| 25 |
-
Hierarchical Mapping: ultimate_parent_id maps complex institutional networks (e.g., university hospitals to parent universities).
|
| 26 |
|
| 27 |
-
|
| 28 |
-
|
| 29 |
|
| 30 |
-
|
| 31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
## 🔗 Resources
|
| 34 |
- **Developer Portal**: [open.patsnap.com](https://open.patsnap.com)
|
|
|
|
| 12 |
- 10K<n<100K
|
| 13 |
---
|
| 14 |
|
| 15 |
+
🏛️ **Dataset Summary**
|
| 16 |
|
| 17 |
+
A global directory of medical institutions and organizations covering 14,065 entities. Provides basic organizational profiles with drug pipeline association counts.
|
| 18 |
|
| 19 |
+
**🚀 Key Features**
|
| 20 |
|
| 21 |
+
- **Global Coverage:** `country` field spans institutions worldwide.
|
| 22 |
+
- **Drug Association Count:** `total_drug` indicates the number of drugs associated with each institution.
|
| 23 |
+
- **Organization Size:** `employee_number` available for ~49% of records.
|
| 24 |
|
| 25 |
+
**💻 Quick Start & MCP Integration**
|
|
|
|
| 26 |
|
| 27 |
+
```python
|
| 28 |
+
from datasets import load_dataset
|
| 29 |
|
| 30 |
+
dataset = load_dataset("your-org/medical-institutions", split="train")
|
| 31 |
+
print(dataset[0]["name"])
|
| 32 |
+
# Output: 'Unlimited Bio'
|
| 33 |
+
print(dataset[0]["country"])
|
| 34 |
+
# Output: 'Honduras'
|
| 35 |
+
print(dataset[0]["total_drug"])
|
| 36 |
+
# Output: 1
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
---
|
| 40 |
|
| 41 |
## 🔗 Resources
|
| 42 |
- **Developer Portal**: [open.patsnap.com](https://open.patsnap.com)
|