Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- tabular-classification
|
| 5 |
+
tags:
|
| 6 |
+
- study-registry
|
| 7 |
+
- computational-science
|
| 8 |
+
- open-science
|
| 9 |
+
- SET
|
| 10 |
+
size_categories:
|
| 11 |
+
- n<1K
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# studyreg-sample-dataset
|
| 15 |
+
|
| 16 |
+
Sample dataset for the [studyreg](https://pypi.org/project/studyreg/) package.
|
| 17 |
+
|
| 18 |
+
## Columns
|
| 19 |
+
- **study_id** - unique identifier
|
| 20 |
+
- **title** - study title
|
| 21 |
+
- **domain** - research domain
|
| 22 |
+
- **sphere** - SET sphere (Science / Entrepreneurship / Technology)
|
| 23 |
+
- **status** - registration status
|
| 24 |
+
- **tags** - comma-separated tags
|
| 25 |
+
- **registered_date** - ISO date
|
| 26 |
+
- **pi** - principal investigator
|
| 27 |
+
|
| 28 |
+
## Usage
|
| 29 |
+
```python
|
| 30 |
+
from studyreg import StudyRegistry
|
| 31 |
+
reg = StudyRegistry()
|
| 32 |
+
reg.load("sample_studies.csv")
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
Maintained by [K-RnD Lab].
|