Dustinhax commited on
Commit
fd5d64c
·
verified ·
1 Parent(s): 99ef649

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - tabular-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - congress
9
+ - legislators
10
+ - politics
11
+ - usa
12
+ size_categories:
13
+ - 1K<n<10K
14
+ ---
15
+
16
+ # Paper Trail Data
17
+
18
+ Processed congressional data for the Paper Trail API. Derived from the [Dustinhax/tyt](https://huggingface.co/datasets/Dustinhax/tyt) dataset.
19
+
20
+ ## Files
21
+
22
+ ### distinct_legislators.parquet
23
+
24
+ Deduplicated list of US legislators from 1979 (96th Congress) to present.
25
+
26
+ | Column | Type | Description |
27
+ |--------|------|-------------|
28
+ | bioguide_id | string | Primary key (unique per legislator) |
29
+ | bioname | string | Full name (LAST, First format) |
30
+ | state_abbrev | string | Most recent state represented |
31
+ | party_code | float64 | Most recent party (100=Dem, 200=Rep, 328=Ind) |
32
+ | congresses_served | list[int16] | Array of all congress numbers served |
33
+ | first_congress | int16 | Earliest congress (for range queries) |
34
+ | last_congress | int16 | Latest congress (for range queries) |
35
+ | nominate_dim1 | float64 | Economic ideology score (-1 to +1) |
36
+ | nominate_dim2 | float64 | Social issues score (-1 to +1) |
37
+
38
+ **Stats:**
39
+ - 2,303 legislators
40
+ - Congress 96-119 (1979-2026)
41
+ - ~53 KB (ZSTD compressed)
42
+
43
+ **Source:** Voteview HSall_members, aggregated by bioguide_id
44
+
45
+ ## Data Sources
46
+
47
+ All data derived from:
48
+ - **Voteview** (Lewis, Poole, Rosenthal, Boche, Rudkin, Sonnet) - https://voteview.com/
49
+ - **Congress Legislators** (@unitedstates) - https://github.com/unitedstates/congress-legislators
50
+
51
+ ## License
52
+
53
+ MIT (processing code) / Public domain (source data)