Neighorhood is a factor variable with more than 20 levels and I want to see the standard deviation of all levels but I can only see 10 rows by the summarise function. How can I deal with the problem?
train %>%
group_by(Neighborhood) %>%
summarise(sd(price))
## # A tibble: 27 x 2
## Neighborhood `sd(price)`
## <fctr> <dbl>
## 1 Blmngtn 26454.86
## 2 Blueste 10381.23
## 3 BrDale 13337.59
## 4 BrkSide 37309.91
## 5 ClearCr 48068.69
## 6 CollgCr 52786.08
## 7 Crawfor 71267.56
## 8 Edwards 54851.63
## 9 Gilbert 41190.38
## 10 Greens 29063.42
## # ... with 17 more rows