iamramzan commited on
Commit
004b2c0
·
verified ·
1 Parent(s): ad365a6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +78 -3
README.md CHANGED
@@ -1,3 +1,78 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-classification
5
+ - summarization
6
+ - text-generation
7
+ language:
8
+ - en
9
+ tags:
10
+ - scrapy
11
+ - pandas
12
+ - datasets
13
+ size_categories:
14
+ - n<1K
15
+ ---
16
+
17
+ # List of Countries and Dependencies by Population
18
+
19
+ This dataset contains population-related information for countries and dependencies, scraped from Wikipedia. The dataset includes the following columns:
20
+
21
+ 1. **Location**: The country or dependency name.
22
+ 2. **Population**: Total population count.
23
+ 3. **% of World**: The percentage of the world's population this country or dependency represents.
24
+ 4. **Date**: The date of the population estimate.
25
+ 5. **Source**: Whether the source is official or derived from the United Nations.
26
+
27
+ ---
28
+
29
+ ## Dataset Summary
30
+
31
+ This dataset provides a comprehensive overview of population statistics by country and dependency. It is ideal for researchers, data scientists, and analysts who need accurate and up-to-date population data.
32
+
33
+ ### Dataset Features:
34
+ - **Location**: Textual description of the country or territory.
35
+ - **Population**: Integer value representing the population size.
36
+ - **% of World**: Float representing the percentage of the world's total population.
37
+ - **Date**: The date on which the population estimate was recorded.
38
+ - **Source**: A textual description of the data source (e.g., United Nations or official national statistics).
39
+
40
+ ---
41
+
42
+ ### Source
43
+
44
+ The dataset was scraped from the Wikipedia page: [List of countries and dependencies by population](https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_population).
45
+
46
+ ### Licensing
47
+ This dataset is based on data available under the [Creative Commons Attribution-ShareAlike License](https://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License).
48
+
49
+ ---
50
+
51
+ ## Splits
52
+
53
+ The dataset has one split:
54
+ - `train`: Contains all records from the table (approximately 200 entries).
55
+
56
+ ---
57
+
58
+ ## Examples
59
+
60
+ Here's a sample record from the dataset:
61
+
62
+ | Location | Population | % of World | Date | Source |
63
+ |-----------------|-------------|------------|------------|--------------------------|
64
+ | China | 1,411,778,724 | 17.82% | 2023-01-01 | Official national data |
65
+ | India | 1,393,409,038 | 17.59% | 2023-01-01 | United Nations estimate |
66
+ | Tuvalu | 11,931 | 0.00015% | 2023-01-01 | United Nations estimate |
67
+
68
+ ---
69
+
70
+ ### Usage
71
+
72
+ You can load this dataset using the Hugging Face `datasets` library:
73
+
74
+ ```python
75
+ from datasets import load_dataset
76
+
77
+ dataset = load_dataset("username/dataset_name")
78
+ ```