Test for median price of 1 BR apartments in Manhattan
Let's turn our attention back to Manhattan apartments. We would like to evaluate whether this data provides evidence that the median rent of 1 BR apartments in Manhattan is greater than $2,500.
Este ejercicio forma parte del curso
Inference for Numerical Data in R
Ejercicio interactivo práctico
Prueba este ejercicio y completa el código de muestra.
n_replicates <- 15000
# Generate 15000 bootstrap samples centered at null
rent_med_ht <- manhattan %>%
specify(response = rent) %>%
# Use a point hypothesis with a median of 2500
___(null = "___", med = ___) %>%
generate(reps = n_replicates, type = "bootstrap") %>%
calculate(stat = "median")
# See the result
rent_med_ht