Get startedGet started for free

Calculating confidence intervals

We can use the cumulative distribution function and its inverse to calculate confidence intervals in R. You'll do so with the Spotify data now.

This exercise is part of the course

Sampling in R

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Generate a 95% confidence interval using the quantile method
conf_int_quantile <- bootstrap_distribution %>% 
  ___




# See the result
conf_int_quantile
Edit and Run Code