Combining count() with across()
The count() function also works with across() to provide the number of rows matching each combination of the variables specified. You can, thus, get how many rows correspond to different variable combinations in the imf_data with this pairing.
แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร
Programming with dplyr
คำแนะนำการฝึกหัด
count()acrosscharacterclass columns.- Arrange the count tibble with count decreasing.
แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ
ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์
imf_data %>%
count(
# Count over character class columns
___(
___(___)
),
# Arrange the results by descending count
___)