Datasets:
Added references to the shape files
Browse files
README.md
CHANGED
@@ -50,4 +50,15 @@ df_csv <- fread("https://huggingface.co/datasets/siacus/flourishing/resolve/main
|
|
50 |
# Load the Parquet
|
51 |
library(arrow)
|
52 |
df_parquet <- read_parquet("https://huggingface.co/datasets/siacus/flourishing/resolve/main/flourishingStateYear.parquet")
|
53 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
# Load the Parquet
|
51 |
library(arrow)
|
52 |
df_parquet <- read_parquet("https://huggingface.co/datasets/siacus/flourishing/resolve/main/flourishingStateYear.parquet")
|
53 |
+
```
|
54 |
+
|
55 |
+
|
56 |
+
This dataset contains also two shape files archives
|
57 |
+
```cb_2021_us_county_20m.zip``` taken from [here](https://www2.census.gov/geo/tiger/GENZ2021/shp/cb_2021_us_county_20m.zip) and
|
58 |
+
```cb_2021_us_state_20m.zip``` taken from [here](https://www2.census.gov/geo/tiger/GENZ2021/shp/cb_2021_us_state_20m.zip) which can be useful to visualize the maps in python.
|
59 |
+
Unfortunately US Census Bureau web site is stopping download from bots/scripts, so we provide the files here.
|
60 |
+
|
61 |
+
To get them from python use this code
|
62 |
+
```
|
63 |
+
|
64 |
+
```
|