Group 5 - Logan Rossell & Talia Walderman
The number of homeless individuals in Portland, OR has increased over time from 11,430 at the start of 2024 to 18,260 individuals, according to the Homeless Services Department. We sought to explore the spatial relationship between homelessness in a neighborhood, available services, and documented crime in an effort to understand where areas of Portland, OR are underserving its unsheltered residents.
# creating regression equation
linear_model <- lm(log_clean_sites_per_capita ~
Vandalism_per_capita +
Burglary_per_capita +
`Weapon Law Violations_per_capita` +
library_count_per_capita +
`Drug/Narcotic Offenses_per_capita` +
pov,
data = model_data)
summary(linear_model)
##
## Call:
## lm(formula = log_clean_sites_per_capita ~ Vandalism_per_capita +
## Burglary_per_capita + `Weapon Law Violations_per_capita` +
## library_count_per_capita + `Drug/Narcotic Offenses_per_capita` +
## pov, data = model_data)
##
## Residuals:
## Min 1Q Median 3Q Max
## -1.64609 -0.70736 0.00541 0.47339 2.79150
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) -6.3099 0.1918 -32.905 < 2e-16 ***
## Vandalism_per_capita 41.8621 14.9536 2.799 0.00630 **
## Burglary_per_capita 42.3439 14.4656 2.927 0.00436 **
## `Weapon Law Violations_per_capita` 258.0864 128.3317 2.011 0.04741 *
## library_count_per_capita 2669.8383 1570.8470 1.700 0.09278 .
## `Drug/Narcotic Offenses_per_capita` -17.6035 66.2500 -0.266 0.79109
## pov 4.0333 1.7828 2.262 0.02617 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 0.8621 on 87 degrees of freedom
## (28 observations deleted due to missingness)
## Multiple R-squared: 0.6254, Adjusted R-squared: 0.5996
## F-statistic: 24.21 on 6 and 87 DF, p-value: < 2.2e-16
“The Impact Reduction Program is designed to be a stopgap measure that addresses the issues of hygiene, waste management, and public access that arise as a result of unsheltered homelessness. The program treats the symptoms of the problem of homelessness, but is not designed to be a root cause solution to homelessness.” Source: https://www.portland.gov/homelessness-impact-reduction/overview