Update README.md
Browse files
README.md
CHANGED
@@ -76,7 +76,7 @@ Contributions are welcome! If you spot an issue or have suggestions for improvem
|
|
76 |
The data is machine-generated (using web scraping) and subjected to human additional treatment.
|
77 |
|
78 |
below, I provide the script I created to scrape the data (as well as my additional treatment):
|
79 |
-
|
80 |
import scrapy
|
81 |
|
82 |
|
@@ -105,7 +105,7 @@ class StatesspiderSpider(scrapy.Spider):
|
|
105 |
'Sovereignty Dispute': sovereignty_dispute,
|
106 |
'Further Information': further_information,
|
107 |
}
|
108 |
-
|
109 |
## Usage
|
110 |
|
111 |
### Loading the Dataset in Python
|
@@ -120,3 +120,4 @@ df = pd.read_csv(url)
|
|
120 |
|
121 |
# Preview the dataset
|
122 |
print(df.head())
|
|
|
|
76 |
The data is machine-generated (using web scraping) and subjected to human additional treatment.
|
77 |
|
78 |
below, I provide the script I created to scrape the data (as well as my additional treatment):
|
79 |
+
```
|
80 |
import scrapy
|
81 |
|
82 |
|
|
|
105 |
'Sovereignty Dispute': sovereignty_dispute,
|
106 |
'Further Information': further_information,
|
107 |
}
|
108 |
+
```
|
109 |
## Usage
|
110 |
|
111 |
### Loading the Dataset in Python
|
|
|
120 |
|
121 |
# Preview the dataset
|
122 |
print(df.head())
|
123 |
+
```
|