jsulz HF staff commited on
Commit
f04bf93
1 Parent(s): 5e9f92a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -1
README.md CHANGED
@@ -6,4 +6,24 @@ language:
6
  - en
7
  size_categories:
8
  - n<1K
9
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  - en
7
  size_categories:
8
  - n<1K
9
+ tags:
10
+ - text
11
+ ---
12
+
13
+ This dataset includes all recorded (spoken and written) addresses to the United States Congress from the President of the United States of America.
14
+
15
+ The addresses span all Presidents, but differ in their modality. From 1801 to 1913 the addresses were provided in writing to Congress with the remainder provided in person in the form of a speech.
16
+
17
+ Each address was scraped from [The American Presidency Project](https://www.presidency.ucsb.edu/), a website supported the UC Santa Barbara. Their mission statement is to, "be recognized as the authoritative, non-partisan on-line source for presidential public documents." A truly admirable goal.
18
+
19
+ The main index of the addresses are availble on [this page](https://www.presidency.ucsb.edu/documents/presidential-documents-archive-guidebook/annual-messages-congress-the-state-the-union).
20
+
21
+ The dataset is comprised of a single Parquet file with the following columns:
22
+ * `potus` : The full name of the President of the United States that gave the address
23
+ * `date` : The date the address was given.
24
+ * `categories` : The type of speech, either "Spoken" or "Written"
25
+ * `speech_html` : The unaltered or cleaned text of the speech scraped from the website.
26
+ * `no-contractions` : The speech with all contractions removed.
27
+ * `tokens` : An array of all words in the speech; all punctuation and special characters are now removed.
28
+ * `tokens-nostop` : An iteration of the `tokens` column; all stop words are now removed from the array.
29
+ * `lemmatized` : An iteration of the `tokens-nostop` column; this array contains a lemmatization of all the words from the previous column.