This project explores the public dataset using BigQuery and SQL queries to gain insights on the amount of homeless per state and the type and amount of shelters provided.
This project uses the data collected from the BigQuery public dataset on homelessness:
https://console.cloud.google.com/bigquery?ws=!1m5!1m4!4m3!1sbigquery-public-data!2ssdoh_hud_pit_homelessness!3shud_pit_by_coc
Information about the dataset:
CREATE TABLE
Exploration_Project.homelessness AS
SELECT
CoC_Number,
LEFT(CoC_Number, 2) AS State,
CoC_Name,
Overall_Homeless,
Sheltered_ES_Homeless,
Sheltered_TH_Homeless,
Sheltered_SH_Homeless,
Sheltered_Total_Homeless,
Unsheltered_Homeless,
Homeless_Individuals,
Homeless_People_in_Families,
Chronically_Homeless,
Homeless_Veterans,
Homeless_Unaccompanied_Youth_Under_18,
Count_Year
FROM
`bigquery-public-data.sdoh_hud_pit_homelessness.hud_pit_by_coc`