Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,56 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
---
|
6 |
+
# Sovereign States Dataset
|
7 |
+
|
8 |
+
This dataset provides a comprehensive list of sovereign states, along with their **common and formal names**, **membership within the UN system**, and details on **sovereignty disputes and recognition status**. The data was originally scraped from [Wikipedia's List of Sovereign States](https://en.wikipedia.org/wiki/List_of_sovereign_states) and processed for clarity and usability.
|
9 |
+
|
10 |
+
## Dataset Features
|
11 |
+
|
12 |
+
- **Common Name**: The commonly used name of the country or state.
|
13 |
+
- **Formal Name**: The official/formal name of the country or state.
|
14 |
+
- **Membership within the UN System**: Indicates whether the country is a UN member state or has observer status.
|
15 |
+
- **Sovereignty Dispute**: Any sovereignty or territorial disputes involving the state.
|
16 |
+
- **Further Information**: Additional details regarding the state’s recognition and status.
|
17 |
+
|
18 |
+
---
|
19 |
+
|
20 |
+
## Dataset Details
|
21 |
+
|
22 |
+
### Source
|
23 |
+
- **Website**: [Wikipedia - List of Sovereign States](https://en.wikipedia.org/wiki/List_of_sovereign_states)
|
24 |
+
- **Scraped On**: [12 January 2025]
|
25 |
+
- **Data Cleaning**: Non-ASCII characters, unnecessary symbols, and text within brackets were cleaned for clarity.
|
26 |
+
|
27 |
+
### Format
|
28 |
+
- **File Type**: CSV
|
29 |
+
- **Encoding**: UTF-8
|
30 |
+
- **Number of Rows**: [196]
|
31 |
+
- **Columns**:
|
32 |
+
- `Common Name`
|
33 |
+
- `Formal Name`
|
34 |
+
- `Membership within the UN System`
|
35 |
+
- `Sovereignty Dispute`
|
36 |
+
- `Further Information`
|
37 |
+
|
38 |
+
---
|
39 |
+
|
40 |
+
## Usage
|
41 |
+
|
42 |
+
### Loading the Dataset in Python
|
43 |
+
To use the dataset in Python, you can load it using pandas:
|
44 |
+
|
45 |
+
```python
|
46 |
+
import pandas as pd
|
47 |
+
|
48 |
+
# Load the dataset
|
49 |
+
url = "https://huggingface.co/datasets/your-username/sovereign-states-dataset/resolve/main/sovereign_states_cleaned_final.csv"
|
50 |
+
df = pd.read_csv(url)
|
51 |
+
|
52 |
+
# Preview the dataset
|
53 |
+
print(df.head())
|
54 |
+
|
55 |
+
# Licensing
|
56 |
+
This dataset is derived from publicly available information on Wikipedia. The content is licensed under CC BY-SA 3.0.
|