nubdot commited on
Commit
8e52fec
·
verified ·
1 Parent(s): 14f3701

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +311 -50
README.md CHANGED
@@ -11,63 +11,207 @@ pretty_name: hopecorner
11
  size_categories:
12
  - 10K<n<100K
13
  configs:
14
- - config_name: bicycle_repairs
15
- data_files:
16
- - split: train
17
- path: data/bicycle_repairs_rows.csv
18
- - config_name: blocked_slots
19
- data_files:
20
- - split: train
21
- path: data/blocked_slots_rows.csv
22
- - config_name: daily_notes
23
- data_files:
24
- - split: train
25
- path: data/daily_notes_rows.csv
26
- - config_name: donations
27
- data_files:
28
- - split: train
29
- path: data/donations_rows.csv
30
- - config_name: guest_proxies
31
- data_files:
32
- - split: train
33
- path: data/guest_proxies_rows.csv
34
- - config_name: guests
35
- data_files:
36
- - split: train
37
- path: data/guests_rows.csv
38
- - config_name: haircut_visits
39
- data_files:
40
- - split: train
41
- path: data/haircut_visits_rows.csv
42
- - config_name: laundry_bookings
43
- data_files:
44
- - split: train
45
- path: data/laundry_bookings_rows.csv
46
- - config_name: meal_attendance
47
- data_files:
48
- - split: train
49
- path: data/meal_attendance_rows.csv
50
- - config_name: shower_reservations
51
- data_files:
52
- - split: train
53
- path: data/shower_reservations_rows.csv
54
  ---
55
 
56
- # About
57
 
58
- This repository contains anonymized operational data from Hope's Corner, a non-profit organization in Mountain View, CA, providing meals, laundry, showers, haircuts, and bicycle repair services to unhoused and low-income community members.
59
 
60
- ## Problem Statements
61
 
62
- ### Predicting Daily Meal Demand
63
- Forecast daily meal demand using historical check-in records and explore external predictors such as weather impacts (rain, extreme temperatures) and calendar events (federal holidays).
64
 
65
- ### Identifying Service Gaps and Equity in Guest Support
66
- Analyze demographic and housing status differences in service utilization, identify service gaps, and examine potential inequities in support access (e.g., waiting list times or representation across programs).
67
 
68
- ## Data Schema
69
 
70
- The dataset consists of relational CSV files in the `data/` directory, linked by anonymized guest IDs.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
 
72
  ```mermaid
73
  erDiagram
@@ -149,4 +293,121 @@ erDiagram
149
  GUESTS ||--o{ SHOWER_RESERVATIONS : "guest_id"
150
  GUESTS ||--o{ HAIRCUT_VISITS : "guest_id"
151
  GUESTS ||--o{ BICYCLE_REPAIRS : "guest_id"
152
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  size_categories:
12
  - 10K<n<100K
13
  configs:
14
+ - config_name: bicycle_repairs
15
+ data_files:
16
+ - split: train
17
+ path: data/bicycle_repairs_rows.csv
18
+ - config_name: blocked_slots
19
+ data_files:
20
+ - split: train
21
+ path: data/blocked_slots_rows.csv
22
+ - config_name: daily_notes
23
+ data_files:
24
+ - split: train
25
+ path: data/daily_notes_rows.csv
26
+ - config_name: donations
27
+ data_files:
28
+ - split: train
29
+ path: data/donations_rows.csv
30
+ - config_name: guest_proxies
31
+ data_files:
32
+ - split: train
33
+ path: data/guest_proxies_rows.csv
34
+ - config_name: guests
35
+ data_files:
36
+ - split: train
37
+ path: data/guests_rows.csv
38
+ - config_name: haircut_visits
39
+ data_files:
40
+ - split: train
41
+ path: data/haircut_visits_rows.csv
42
+ - config_name: laundry_bookings
43
+ data_files:
44
+ - split: train
45
+ path: data/laundry_bookings_rows.csv
46
+ - config_name: meal_attendance
47
+ data_files:
48
+ - split: train
49
+ path: data/meal_attendance_rows.csv
50
+ - config_name: shower_reservations
51
+ data_files:
52
+ - split: train
53
+ path: data/shower_reservations_rows.csv
54
  ---
55
 
56
+ # Dataset Card for Hope's Corner
57
 
58
+ Anonymized operational data from [Hope's Corner](https://hopescorner.org/), a non-profit in Mountain View, CA that provides meals, laundry, showers, haircuts, and bicycle repair to unhoused and low-income community members. The dataset covers guest visits and service records across ten relational tables, linked by anonymized guest IDs.
59
 
60
+ ## Dataset Details
61
 
62
+ ### Dataset Description
 
63
 
64
+ Hope's Corner runs drop-in services for community members who are unhoused or low-income. Staff log each service interaction in an internal system, recording which guests attended, what services they used, and operational notes. This dataset is an anonymized export of those records, structured as relational CSV files. It covers meal attendance, laundry and shower bookings, haircut visits, bicycle repairs, donations received, and guest demographic information.
 
65
 
66
+ The two main research questions this dataset is designed to support are forecasting daily meal demand and identifying gaps or inequities in service access across different guest populations.
67
 
68
+ - **Curated by:** Hope's Corner, Mountain View, CA
69
+ - **Language(s) (NLP):** English
70
+ - **License:** MIT
71
+
72
+ ### Dataset Sources
73
+
74
+ - **Source:** Internal operational records from Hope's Corner
75
+ - **Repository:** `data/` directory, one CSV per table
76
+
77
+ ## Uses
78
+
79
+ ### Direct Use
80
+
81
+ - **Meal demand forecasting:** Predict daily attendance using historical check-in records, and explore external predictors like weather (rain, extreme temperatures) and calendar events (federal holidays, local events).
82
+ - **Service gap analysis:** Identify which guest populations use which services, spot underserved groups, and examine differences in wait times or access across demographics and housing statuses.
83
+ - **Operational planning:** Understand slot utilization for laundry, showers, and haircuts to inform scheduling decisions.
84
+ - **Donation tracking:** Analyze the volume and type of donations over time relative to service demand.
85
+
86
+ ### Out-of-Scope Use
87
+
88
+ - Should not be used to re-identify individual guests. Records are anonymized and must remain so.
89
+ - Not suitable for any use that could be used to surveil, profile, or target unhoused individuals.
90
+ - Not a representative sample of all unhoused individuals in Mountain View or the broader region; it reflects only guests who visited Hope's Corner.
91
+
92
+ ## Dataset Structure
93
+
94
+ ### Tables
95
+
96
+ The dataset is organized as ten relational CSV files in the `data/` directory, all linked by anonymized guest UUIDs.
97
+
98
+ | Table | File | Description |
99
+ |---|---|---|
100
+ | `guests` | `guests_rows.csv` | One row per guest; core demographic and status fields |
101
+ | `guest_proxies` | `guest_proxies_rows.csv` | Records when one guest picks up services on behalf of another |
102
+ | `meal_attendance` | `meal_attendance_rows.csv` | Each meal service transaction, including meal type and quantity |
103
+ | `laundry_bookings` | `laundry_bookings_rows.csv` | Laundry slot reservations with date, slot label, and status |
104
+ | `shower_reservations` | `shower_reservations_rows.csv` | Shower slot reservations with date, slot label, and status |
105
+ | `haircut_visits` | `haircut_visits_rows.csv` | Individual haircut service visits with timestamps |
106
+ | `bicycle_repairs` | `bicycle_repairs_rows.csv` | Bicycle repair requests with repair types and status |
107
+ | `donations` | `donations_rows.csv` | Donation records by type, item, weight, and donor |
108
+ | `daily_notes` | `daily_notes_rows.csv` | Staff notes by date and service type |
109
+ | `blocked_slots` | `blocked_slots_rows.csv` | Dates and times when service slots were unavailable |
110
+
111
+ ### Schema
112
+
113
+ **guests**
114
+
115
+ | Field | Type | Description |
116
+ |---|---|---|
117
+ | `id` | uuid | Primary key |
118
+ | `external_id` | string | External reference ID |
119
+ | `housing_status` | string | Guest's housing situation |
120
+ | `age_group` | string | Age bracket |
121
+ | `gender` | string | Gender |
122
+ | `location` | string | General location or neighborhood |
123
+ | `notes` | string | Staff notes |
124
+ | `bicycle_description` | string | Description of guest's bicycle, if any |
125
+ | `ban_reason` | string | Reason for any service ban |
126
+
127
+ **guest_proxies**
128
+
129
+ | Field | Type | Description |
130
+ |---|---|---|
131
+ | `id` | uuid | Primary key |
132
+ | `guest_id` | uuid | Guest receiving the service |
133
+ | `proxy_id` | uuid | Guest picking up on their behalf |
134
+
135
+ **meal_attendance**
136
+
137
+ | Field | Type | Description |
138
+ |---|---|---|
139
+ | `id` | uuid | Primary key |
140
+ | `guest_id` | uuid | Guest served |
141
+ | `picked_up_by_guest_id` | uuid | Guest who physically picked up the meal (may differ from guest_id) |
142
+ | `meal_type` | string | Type of meal (e.g., breakfast, lunch) |
143
+ | `quantity` | integer | Number of meals |
144
+ | `served_on` | date | Date of service |
145
+
146
+ **laundry_bookings**
147
+
148
+ | Field | Type | Description |
149
+ |---|---|---|
150
+ | `id` | uuid | Primary key |
151
+ | `guest_id` | uuid | Guest who booked |
152
+ | `scheduled_for` | date | Booking date |
153
+ | `slot_label` | string | Time slot identifier |
154
+ | `status` | string | Booking status (e.g., completed, no-show, cancelled) |
155
+
156
+ **shower_reservations**
157
+
158
+ | Field | Type | Description |
159
+ |---|---|---|
160
+ | `id` | uuid | Primary key |
161
+ | `guest_id` | uuid | Guest who reserved |
162
+ | `scheduled_for` | date | Reservation date |
163
+ | `slot_label` | string | Time slot identifier |
164
+ | `status` | string | Reservation status |
165
+
166
+ **haircut_visits**
167
+
168
+ | Field | Type | Description |
169
+ |---|---|---|
170
+ | `id` | uuid | Primary key |
171
+ | `guest_id` | uuid | Guest served |
172
+ | `served_at` | datetime | Timestamp of service |
173
+ | `service_date` | date | Date of service |
174
+
175
+ **bicycle_repairs**
176
+
177
+ | Field | Type | Description |
178
+ |---|---|---|
179
+ | `id` | uuid | Primary key |
180
+ | `guest_id` | uuid | Guest requesting repair |
181
+ | `requested_at` | datetime | Timestamp of request |
182
+ | `repair_types` | string | Types of repairs requested |
183
+ | `status` | string | Repair status |
184
+
185
+ **donations**
186
+
187
+ | Field | Type | Description |
188
+ |---|---|---|
189
+ | `id` | uuid | Primary key |
190
+ | `donation_type` | string | Category of donation |
191
+ | `item_name` | string | Specific item donated |
192
+ | `weight_lbs` | float | Weight in pounds |
193
+ | `donor` | string | Donor name or identifier |
194
+ | `donated_at` | datetime | Timestamp of donation |
195
+
196
+ **daily_notes**
197
+
198
+ | Field | Type | Description |
199
+ |---|---|---|
200
+ | `id` | uuid | Primary key |
201
+ | `note_date` | date | Date the note was written |
202
+ | `service_type` | string | Service the note refers to |
203
+ | `note_text` | string | Staff note content |
204
+
205
+ **blocked_slots**
206
+
207
+ | Field | Type | Description |
208
+ |---|---|---|
209
+ | `id` | uuid | Primary key |
210
+ | `service_type` | string | Service type affected |
211
+ | `slot_time` | string | Time slot that was blocked |
212
+ | `date` | date | Date of the blocked slot |
213
+
214
+ ### Entity Relationship Diagram
215
 
216
  ```mermaid
217
  erDiagram
 
293
  GUESTS ||--o{ SHOWER_RESERVATIONS : "guest_id"
294
  GUESTS ||--o{ HAIRCUT_VISITS : "guest_id"
295
  GUESTS ||--o{ BICYCLE_REPAIRS : "guest_id"
296
+ ```
297
+
298
+ ## Dataset Creation
299
+
300
+ ### Curation Rationale
301
+
302
+ Hope's Corner staff collect service data as part of daily operations, but that data has rarely been used for analysis. This dataset was exported and anonymized to support two specific research questions: forecasting how many meals will be needed on a given day, and understanding whether all guest populations have equal access to services. Both have direct operational value for a small non-profit with limited staff and resources.
303
+
304
+ ### Source Data
305
+
306
+ #### Data Collection and Processing
307
+
308
+ Records were exported from Hope's Corner's internal management system. Guest identifiers were replaced with random UUIDs prior to export. No names, contact information, or other direct identifiers are present in the dataset. Each table was exported as a separate CSV file.
309
+
310
+ #### Who are the source data producers?
311
+
312
+ Data were recorded by Hope's Corner staff during normal service operations in Mountain View, CA.
313
+
314
+ ### Annotations
315
+
316
+ #### Annotation process
317
+
318
+ No annotations have been applied. All fields reflect operational records as entered by staff.
319
+
320
+ #### Who are the annotators?
321
+
322
+ N/A
323
+
324
+ #### Personal and Sensitive Information
325
+
326
+ This dataset covers a vulnerable population. Although guest records are anonymized with UUIDs, the combination of housing status, age group, gender, location, and service history could in principle narrow down individuals in a small community. Handle with care:
327
+
328
+ - Do not attempt to re-identify guests.
329
+ - Do not share individual-level records outside of research or analysis contexts covered by your data use agreement with Hope's Corner.
330
+ - The `notes` and `ban_reason` fields in `guests` may contain sensitive staff observations and should be treated accordingly.
331
+
332
+ ## Bias, Risks, and Limitations
333
+
334
+ - **Self-selected population:** This dataset only covers guests who visited Hope's Corner. It does not represent all unhoused or low-income individuals in Mountain View.
335
+ - **Recording gaps:** Not every interaction may have been logged, particularly during busy service periods. Attendance counts may undercount actual demand.
336
+ - **Demographic fields are categorical:** `housing_status`, `age_group`, and `gender` use a fixed set of categories that may not capture the full range of guest situations.
337
+ - **Proxy pickups:** Meal attendance records can reflect a proxy picking up for multiple guests, which requires care when counting unique individuals served.
338
+ - **Seasonal and event variation:** Meal demand is affected by weather, holidays, and local events. Models that don't account for these factors will likely underperform.
339
+
340
+ ### Recommendations
341
+
342
+ Join `meal_attendance` to `guests` through `guest_id` to segment attendance by demographics. When modeling demand, incorporate external data sources such as weather records and a holiday calendar. Use `blocked_slots` and `daily_notes` to identify and exclude or annotate days with unusual operational circumstances.
343
+
344
+ ## Citation [optional]
345
+
346
+ **BibTeX:**
347
+
348
+ [More Information Needed]
349
+
350
+ **APA:**
351
+
352
+ [More Information Needed]
353
+
354
+ ## Glossary
355
+
356
+ | Term | Definition |
357
+ |---|---|
358
+ | **UUID** | Universally Unique Identifier, used here as an anonymized guest key |
359
+ | **Proxy** | A guest who picks up a meal or service on behalf of another registered guest |
360
+ | **Slot label** | The identifier for a specific time block within a service day (e.g., "9:00 AM") |
361
+ | **Housing status** | A categorical field describing a guest's current living situation (e.g., unhoused, transitional, low-income housed) |
362
+ | **Blocked slot** | A time slot that was unavailable for bookings due to staffing, closures, or other operational reasons |
363
+
364
+ ## More Information
365
+
366
+ ### Loading the Dataset
367
+
368
+ Each table is available as a separate configuration:
369
+
370
+ ```python
371
+ from datasets import load_dataset
372
+
373
+ # Load guest records
374
+ guests = load_dataset("org/hopescorner", "guests")
375
+
376
+ # Load meal attendance
377
+ meals = load_dataset("org/hopescorner", "meal_attendance")
378
+
379
+ # Load laundry bookings
380
+ laundry = load_dataset("org/hopescorner", "laundry_bookings")
381
+ ```
382
+
383
+ ### Joining Tables with pandas
384
+
385
+ ```python
386
+ import pandas as pd
387
+
388
+ guests = pd.read_csv("data/guests_rows.csv")
389
+ meals = pd.read_csv("data/meal_attendance_rows.csv")
390
+ laundry = pd.read_csv("data/laundry_bookings_rows.csv")
391
+
392
+ # Meal counts per guest with demographics
393
+ meal_counts = (
394
+ meals.groupby("guest_id")["quantity"]
395
+ .sum()
396
+ .reset_index()
397
+ .rename(columns={"quantity": "total_meals"})
398
+ )
399
+ guest_meals = guests.merge(meal_counts, left_on="id", right_on="guest_id", how="left")
400
+
401
+ # Daily meal totals (for demand forecasting)
402
+ meals["served_on"] = pd.to_datetime(meals["served_on"])
403
+ daily_totals = meals.groupby("served_on")["quantity"].sum().reset_index()
404
+ daily_totals.columns = ["date", "total_meals"]
405
+ ```
406
+
407
+ ## Dataset Card Authors
408
+
409
+ Hope's Corner, Mountain View, CA
410
+
411
+ ## Dataset Card Contact
412
+
413
+ [More Information Needed]