ro-h commited on
Commit
8f154fa
1 Parent(s): 167008c

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +110 -0
README.md ADDED
@@ -0,0 +1,110 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dataset Card for Regulatory Comments (Predownloaded; No API Call)
2
+
3
+ United States governmental agencies often make proposed regulations open to the public for comment.
4
+ Proposed regulations are organized into "dockets". This dataset will use Regulation.gov public API
5
+ to aggregate and clean public comments for dockets that mention opioid use.
6
+
7
+ Each example will consist of one docket, and include metadata such as docket id, docket title, etc.
8
+ Each docket entry will also include information about the top 10 comments, including comment metadata
9
+ and comment text.
10
+
11
+ In this version, the data has been preloaded and saved to the repository. If the user wants to call from the API
12
+ directly, reference [https://huggingface.co/datasets/ro-h/regulatory_comments_api].
13
+
14
+ ## Dataset Details
15
+
16
+ ### Dataset Description and Structure
17
+
18
+ This dataset will contain approximately 70 dockets. The number of dockets included are rate-limited by the
19
+ government API. If a larger set of dockets are required, consider requesting a rate-unlimited API key and
20
+ directly calling from the API using [https://huggingface.co/datasets/ro-h/regulatory_comments_api].
21
+
22
+ Each docket will be associated with at least one comment. The maximum number of comments per docket is 10.
23
+ Comments will be retrieved in relevance order according to Regulation.gov.
24
+
25
+ The following information is included in this dataset:
26
+
27
+ **Docket Metadata**
28
+ id (int): A unique numerical identifier assigned to each regulatory docket.
29
+ title (str): The official title or name of the regulatory docket. This title typically summarizes the main issue or area of regulation covered by the docket.
30
+ context (str): The date when the docket was last modified on Regulations.gov.
31
+ purpose (str): Whether the docket was rulemaking, non-rulemaking, or other.
32
+ keywords (list): A string of keywords, as determined by Regulations.gov.
33
+
34
+ **Comment Metadata**
35
+ comment_id (int): A unique numerical identifier for each public comment submitted on the docket.
36
+ comment_title (str): The title or subject line of the individual public comment.
37
+ comment_url (str): A URL or web link to the specific comment or docket on Regulations.gov. This allows direct access to the original document or page for replicability purposes.
38
+ comment_date (str): The date when the comment was posted on Regulations.gov. This is important for understanding the timeline of public engagement.
39
+ commenter_fname (str): The first name of the individual or entity that submitted the comment. This could be a person, organization, business, or government entity.
40
+ commenter_lname (str): The last name of the individual or entity that submitted the comment.
41
+ comment_length (int): The length of the comment in terms of the number of characters (spaces included)
42
+
43
+ **Comment Content**
44
+ text (str): The actual text of the comment submitted. This is the primary content for analysis, containing the commenter's views, arguments, and feedback on the regulatory matter.
45
+
46
+ - **Curated by:** Ro Huang
47
+
48
+ ### Dataset Sources
49
+
50
+ - **Repository:** [https://huggingface.co/datasets/ro-h/regulatory_comments_api]
51
+ - **Original Website:** [https://www.regulations.gov/]
52
+ - **API Website:** [https://open.gsa.gov/api/regulationsgov/]
53
+
54
+ ## Uses
55
+
56
+ This dataset may be used by researchers or policy-stakeholders curious about the influence of
57
+ public comments on regulation development. For example, sentiment analysis may be run on
58
+ comment text; alternatively, simple descriptive analysis on the comment length and agency regulation
59
+ may prove interesting.
60
+
61
+ ## Dataset Creation
62
+
63
+ ### Curation Rationale
64
+
65
+ After a law is passed, it may require specific details or guidelines to be practically enforceable or operable.
66
+ Federal agencies and the Executive branch engage in rulemaking, which specify the practical ways that legislation
67
+ can get turned into reality. Then, they will open a Public Comment period in which they will receive comments,
68
+ suggestions, and questions on the regulations they proposed. After taking in the feedback, the agency will modify their
69
+ regulation and post a final rule.
70
+
71
+ As an example, imagine that the legislative branch of the government passes a bill to increase the number of hospitals
72
+ nationwide. While the Congressman drafting the bill may have provided some general guidelines (e.g., there should be at
73
+ least one hospital in a zip code), there is oftentimes ambiguity on how the bill’s goals should be achieved.
74
+ The Department of Health and Human Services is tasked with implementing this new law, given its relevance to national
75
+ healthcare infrastructure. The agency would draft and publish a set of proposed rules, which might include criteria for
76
+ where new hospitals can be built, standards for hospital facilities, and the process for applying for federal funding.
77
+ During the Public Comment period, healthcare providers, local governments, and the public can provide feedback or express
78
+ concerns about the proposed rules. The agency will then read through these public comments, and modify their regulation
79
+ accordingly.
80
+
81
+ While this is a vital part of the United States regulatory process, there is little understanding of how agencies approach
82
+ public comments and modify their proposed regulations. Further, the data extracted from the API is often unclean and difficult
83
+ to navigate. This dataset seeks to offer some clarity through aggregating comments related to Opioid Use Disorders,
84
+ an issue that a diversity of stakeholders have investment in.
85
+
86
+
87
+ #### Data Collection and Processing
88
+
89
+ **Filtering Methods:**
90
+ For each docket, we retrieve relevant metadata such as docket ID,
91
+ title, context, purpose, and keywords. Additionally, the top 10 comments
92
+ for each docket are collected, including their metadata (comment ID, URL, date,
93
+ title, commenter's first and last name) and the comment text itself. The process
94
+ focuses on the first page of 25 comments for each docket, and the top 10 comments
95
+ are selected based on their order of appearance in the API response.
96
+
97
+ **Data Normalization:**
98
+ The collected data is normalized into a structured format. Each docket and
99
+ its associated comments are organized into a nested dictionary structure.
100
+ This structure includes key information about the docket and a list of comments,
101
+ each with its detailed metadata.
102
+
103
+ **Tools and Libraries Used:**
104
+ Requests Library: Used for making API calls to the Regulations.gov API to fetch dockets and comments data.
105
+ Datasets Library from HuggingFace: Employed for defining and managing the dataset's structure and generation process.
106
+ Python: The entire data collection and processing script is written in Python.
107
+
108
+ **Error Handling:**
109
+ In the event of a failed API request (indicated by a non-200 HTTP response status),
110
+ the data collection process for the current docket is halted, and the process moves to the next docket.