synavate commited on
Commit
f4ec33d
1 Parent(s): 828b929

Upload ./README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Worldwide Terrorism Dataset (Raw)
2
+
3
+ ![Hugging Face](https://img.shields.io/badge/huggingface-dataset-yellow)
4
+
5
+ This dataset contains raw, pre-encoded data related to worldwide terrorism activities. The data is available in both CSV and Parquet formats. The dataset is intended for use in machine learning projects, particularly those involving text processing, natural language processing, and data analysis in the field of counter-terrorism.
6
+
7
+ ## Dataset Structure
8
+
9
+ ### Files
10
+
11
+ - **CSV File**: \`csv_terrorism_pre_encoding_0x0.csv\`
12
+ - Format: Comma-Separated Values (CSV)
13
+ - Description: Contains raw, unprocessed data in a structured tabular format.
14
+
15
+ - **Parquet File**: \`pq_terrorism_pre_encoding_0x0.parquet\`
16
+ - Format: Parquet
17
+ - Description: Contains the same data as the CSV file, stored in a columnar format that is optimized for fast reading and writing.
18
+
19
+ ### Columns
20
+
21
+ - **Event ID**: Unique identifier for each terrorism-related event.
22
+ - **Date**: The date on which the event occurred.
23
+ - **Country**: The country where the event took place.
24
+ - **City**: The city where the event took place.
25
+ - **Group**: The group responsible for the event.
26
+ - **Target Type**: The type of target attacked in the event.
27
+ - **Weapon Type**: The type of weapon used in the event.
28
+ - **Number of Fatalities**: The number of people who died in the event.
29
+ - **Number of Injuries**: The number of people injured in the event.
30
+
31
+ ## Usage
32
+
33
+ You can load this dataset using the \`datasets\` library in Python:
34
+
35
+ ```python
36
+ from datasets import load_dataset
37
+
38
+ dataset = load_dataset(\"synavate/worldwide_terrorism_raw0x0\")
39
+ ```