Kossisoroyce commited on
Commit
7dd5a5e
·
verified ·
1 Parent(s): 7d86dad

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -57,3 +57,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
57
  # Video files - compressed
58
  *.mp4 filter=lfs diff=lfs merge=lfs -text
59
  *.webm filter=lfs diff=lfs merge=lfs -text
60
+ call_detail_records.csv filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Call Detail Records
2
+
3
+ ## Dataset Description
4
+
5
+ Comprehensive logs of voice calls, SMS, and data usage across Nigerian telecom networks
6
+
7
+ ## Dataset Information
8
+
9
+ - **Category**: Network Performance and Operations
10
+ - **Format**: CSV, Parquet
11
+ - **Rows**: 1,000,000
12
+ - **Columns**: 13
13
+ - **Date Generated**: 2025-10-05
14
+ - **Location**: `data/call_detail_records/`
15
+
16
+ ## Schema
17
+
18
+ | Column | Type | Sample Values |
19
+ |--------|------|---------------|
20
+ | `cdr_id` | String | CDR00000001 |
21
+ | `timestamp` | Datetime | 2025-09-12 01:47:41 |
22
+ | `operator` | String | Airtel |
23
+ | `calling_number` | String | +2349078978178 |
24
+ | `called_number` | String | +2348057135387 |
25
+ | `call_type` | String | data |
26
+ | `duration_seconds` | Integer | 0 |
27
+ | `data_volume_mb` | Float | 69.63 |
28
+ | `sms_count` | Integer | 0 |
29
+ | `tower_id` | String | LAG-8972 |
30
+ | `city` | String | Lagos |
31
+ | `network_type` | String | 4G |
32
+ | `call_status` | String | completed |
33
+
34
+ ## Sample Data
35
+
36
+ ```
37
+ cdr_id timestamp operator calling_number called_number call_type duration_seconds data_volume_mb sms_count tower_id city network_type call_status
38
+ CDR00000001 2025-09-12 01:47:41 Airtel +2349078978178 +2348057135387 data 0 69.63 0 LAG-8972 Lagos 4G completed
39
+ CDR00000002 2025-09-14 13:49:36 MTN +2348133004465 +2347035891260 data 0 342.29 0 WAR-7779 Warri 4G completed
40
+ CDR00000003 2025-09-11 14:09:43 9mobile +2348090322661 +2348127029601 voice 2897 0.00 0 BEN-3528 Benin City 3G failed
41
+ ```
42
+
43
+ ## Nigerian Context
44
+
45
+ This dataset incorporates authentic Nigerian telecommunications characteristics:
46
+
47
+ - **Geographic Coverage**: Major Nigerian cities including Lagos, Abuja, Kano, Port Harcourt, Ibadan
48
+ - **Operators**: MTN, Airtel, Glo, 9mobile with realistic market shares
49
+ - **Phone Numbers**: Nigerian format (+234 prefixes)
50
+ - **Currency**: Nigerian Naira (NGN)
51
+ - **Time Zone**: West Africa Time (WAT, UTC+1)
52
+ - **Network Types**: 2G, 3G, 4G, 5G distribution
53
+
54
+ ## File Formats
55
+
56
+ ### CSV
57
+ ```
58
+ data/call_detail_records/call_detail_records.csv
59
+ ```
60
+
61
+ ### Parquet (Recommended)
62
+ ```
63
+ data/call_detail_records/call_detail_records.parquet
64
+ ```
65
+
66
+ ## Loading the Dataset
67
+
68
+ ### Python (Pandas)
69
+ ```python
70
+ import pandas as pd
71
+
72
+ # Load CSV
73
+ df = pd.read_csv('data/call_detail_records/call_detail_records.csv')
74
+
75
+ # Load Parquet (recommended for large datasets)
76
+ df = pd.read_parquet('data/call_detail_records/call_detail_records.parquet')
77
+ ```
78
+
79
+ ### Python (PyArrow)
80
+ ```python
81
+ import pyarrow.parquet as pq
82
+
83
+ # Load Parquet
84
+ table = pq.read_table('data/call_detail_records/call_detail_records.parquet')
85
+ df = table.to_pandas()
86
+ ```
87
+
88
+ ## License
89
+
90
+ MIT License - For educational and research purposes
91
+
92
+ ## Citation
93
+
94
+ ```
95
+ Nigerian Telecom Datasets - Call Detail Records
96
+ Generated: 2025-10-05
97
+ Category: Network Performance and Operations
98
+ Rows: 1,000,000
99
+ ```
100
+
101
+ ## Related Datasets
102
+
103
+ This dataset is part of the Nigerian Telecom Datasets collection, which includes 34 datasets covering network performance, customer behavior, financial transactions, infrastructure, geospatial data, customer experience, and emerging technologies.
call_detail_records.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2164c300cdbd1231ebe308f7d409cf589b1b377a8890efaf77da44b780d58265
3
+ size 110928871
call_detail_records.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:690fcb08d5fb5088a7e8bc33472676ef0fca95a7298458f7f7d33a7faa63cd30
3
+ size 42012902