Save the union
In the previous lesson, you determined the rows that are in both asia_wb_combos and imf_combos using intersect(). You may have noticed some properties of the different Venn diagrams that we'll start to build towards with union() and then in the next exercise with union_all(). The Venn diagrams split the datasets into different pieces. Can you combine the coloring in the diagrams to see how one of the operations is the combination of two of the other operations?

asia_wb_combos and imf_combos have been loaded for you.
แบบฝึกหัดนี้เป็นส่วนหนึ่งของหลักสูตร
Programming with dplyr
คำแนะนำการฝึกหัด
- Identify the rows in either
asia_wb_combosorimf_combos(in that order), excluding duplicates.
แบบฝึกหัดเชิงโต้ตอบแบบลงมือทำ
ลองทำแบบฝึกหัดนี้โดยเติมโค้ดตัวอย่างนี้ให้สมบูรณ์
# Find rows in one or the other tibble
___