[1] 78.77675
[1] 0.665786
Joe Ripberger
On a scale from zero to ten, where zero means you are not at all concerned and ten means you are extremely concerned, how concerned are you about the delivery and cost of healthcare in Oklahoma?
survey_data %>%
drop_na(cncrn_health) %>%
summarise(n = n(),
mean = mean(cncrn_health),
s = sd(cncrn_health),
se = s / sqrt(n),
skewness = skewness(cncrn_health),
kurtosis = kurtosis(cncrn_health))# A tibble: 1 × 6
n mean s se skewness kurtosis
<int> <dbl> <dbl> <dbl> <dbl> <dbl>
1 2530 8.55 1.93 0.0384 -1.78 6.53