Question: A data analyst is working with a data frame named users. It has separate columns for first name ( first _ name ) and last

A data analyst is working with a data frame named users. It has separate columns for first name (first_name) and last name (last_name). The analyst wants to combine the two columns into a single column called full_name, with the first name and last name separated by a space. What code chunk lets the analyst create the full_namecolumn?
1 point
merge(users, "full_name", first_name, last_name, sep ="")
unite(users, "full_name", first_name, last_name, sep =",")
unite(users, "full_name", first_name, last_name, sep ="")
unite(users, first_name, last_name, "full_name", sep ="")

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!