Update README.md
Browse files
README.md
CHANGED
|
@@ -37,6 +37,18 @@ The original dataset was cleaned and filtered in order to focus only on two reac
|
|
| 37 |
- **PWR**
|
| 38 |
- **BWR**
|
| 39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
## Research Question
|
| 41 |
|
| 42 |
**Can we predict whether a reactor is PWR or BWR?**
|
|
|
|
| 37 |
- **PWR**
|
| 38 |
- **BWR**
|
| 39 |
|
| 40 |
+
## Sample Usage
|
| 41 |
+
|
| 42 |
+
You can load this dataset directly from Hugging Face using the `datasets` library:
|
| 43 |
+
|
| 44 |
+
```python
|
| 45 |
+
from datasets import load_dataset
|
| 46 |
+
|
| 47 |
+
dataset = load_dataset("jonblustein/GeoNuclearData")
|
| 48 |
+
df = dataset["train"].to_pandas()
|
| 49 |
+
print(df.head())
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
## Research Question
|
| 53 |
|
| 54 |
**Can we predict whether a reactor is PWR or BWR?**
|