International phone numbers
You work for a multinational company that uses auto-dialer software to contact its customers. When new customers subscribe online they are asked for a phone number but they often forget to add the country code needed for international calls. You were asked to fix this issue in the database.
You've been given a data frame with national numbers and country codes named phone_nr_df. Now you want to combine the country_code and national_number columns to create valid international numbers.
यह अभ्यास पाठ्यक्रम का हिस्सा है
Reshaping Data with tidyr
अभ्यास निर्देश
- Use the
unite()function to create a newinternational_numbercolumn, using an empty string as the separator.
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
phone_nr_df %>%
# Unite the country_code and national_number columns
___