Kossisoroyce commited on
Commit
a623321
·
verified ·
1 Parent(s): dda1491

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
+ dropped_call_records.csv filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dropped Call Records
2
+
3
+ ## Dataset Description
4
+
5
+ Records of unsuccessful calls with detailed failure reasons and network conditions
6
+
7
+ ## Dataset Information
8
+
9
+ - **Category**: Network Performance and Operations
10
+ - **Format**: CSV, Parquet
11
+ - **Rows**: 100,000
12
+ - **Columns**: 11
13
+ - **Date Generated**: 2025-10-05
14
+ - **Location**: `data/dropped_call_records/`
15
+
16
+ ## Schema
17
+
18
+ | Column | Type | Sample Values |
19
+ |--------|------|---------------|
20
+ | `drop_id` | String | DROP00000001 |
21
+ | `timestamp` | Datetime | 2025-09-29 22:19:27 |
22
+ | `operator` | String | MTN |
23
+ | `calling_number` | String | +2348138619599 |
24
+ | `called_number` | String | +2348054573294 |
25
+ | `tower_id` | String | JOS-9135 |
26
+ | `city` | String | Jos |
27
+ | `call_duration_before_drop` | Integer | 320 |
28
+ | `drop_reason` | String | tower_overload |
29
+ | `signal_strength_dbm` | Integer | -102 |
30
+ | `network_type` | String | 3G |
31
+
32
+ ## Sample Data
33
+
34
+ ```
35
+ drop_id timestamp operator calling_number called_number tower_id city call_duration_before_drop drop_reason signal_strength_dbm network_type
36
+ DROP00000001 2025-09-29 22:19:27 MTN +2348138619599 +2348054573294 JOS-9135 Jos 320 tower_overload -102 3G
37
+ DROP00000002 2025-09-06 06:40:38 9mobile +2348098254646 +2349029056121 ABE-5633 Abeokuta 146 equipment_failure -77 4G
38
+ DROP00000003 2025-09-26 01:13:35 MTN +2347061520863 +2348099817838 ABA-3864 Aba 570 equipment_failure -76 4G
39
+ ```
40
+
41
+ ## Nigerian Context
42
+
43
+ This dataset incorporates authentic Nigerian telecommunications characteristics:
44
+
45
+ - **Geographic Coverage**: Major Nigerian cities including Lagos, Abuja, Kano, Port Harcourt, Ibadan
46
+ - **Operators**: MTN, Airtel, Glo, 9mobile with realistic market shares
47
+ - **Phone Numbers**: Nigerian format (+234 prefixes)
48
+ - **Currency**: Nigerian Naira (NGN)
49
+ - **Time Zone**: West Africa Time (WAT, UTC+1)
50
+ - **Network Types**: 2G, 3G, 4G, 5G distribution
51
+
52
+ ## File Formats
53
+
54
+ ### CSV
55
+ ```
56
+ data/dropped_call_records/dropped_call_records.csv
57
+ ```
58
+
59
+ ### Parquet (Recommended)
60
+ ```
61
+ data/dropped_call_records/dropped_call_records.parquet
62
+ ```
63
+
64
+ ## Loading the Dataset
65
+
66
+ ### Python (Pandas)
67
+ ```python
68
+ import pandas as pd
69
+
70
+ # Load CSV
71
+ df = pd.read_csv('data/dropped_call_records/dropped_call_records.csv')
72
+
73
+ # Load Parquet (recommended for large datasets)
74
+ df = pd.read_parquet('data/dropped_call_records/dropped_call_records.parquet')
75
+ ```
76
+
77
+ ### Python (PyArrow)
78
+ ```python
79
+ import pyarrow.parquet as pq
80
+
81
+ # Load Parquet
82
+ table = pq.read_table('data/dropped_call_records/dropped_call_records.parquet')
83
+ df = table.to_pandas()
84
+ ```
85
+
86
+ ## License
87
+
88
+ MIT License - For educational and research purposes
89
+
90
+ ## Citation
91
+
92
+ ```
93
+ Nigerian Telecom Datasets - Dropped Call Records
94
+ Generated: 2025-10-05
95
+ Category: Network Performance and Operations
96
+ Rows: 100,000
97
+ ```
98
+
99
+ ## Related Datasets
100
+
101
+ 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.
dropped_call_records.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d5bc303e966cc283f727c6636d6550410c39cada36741b9c10d7ba5e9d34544
3
+ size 11121480
dropped_call_records.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f37fa4e99711b9371df8aabf9ca42bcb7e351227fea489714d3f38fa4152aea
3
+ size 4689120