Question: python help sf = full_sf.select(Job, Department, Organization Group, Total Compensation) sf.show(5) ... (44520 rows omitted) We want to use this table to generate arrays with
python help
sf = full_sf.select("Job", "Department", "Organization Group", "Total Compensation") sf.show(5) ... (44520 rows omitted) We want to use this table to generate arrays with the job titles of the members of each Organization Group. Question 1. Set job_titles to a table with two columns. The first column should be called and have the name of every "Organization Group" once, and the second column should be called with each row in that second column containing an array of the names of all the job titles within that "Organization Group". Don't worry if there are multiple of the same job titles. (9 Points) Hint 1: Think about how works: it collects values into an array and then applies a function to that array. We have defined two functions below for you, and you will need to use one of them in your call to Hint 2: You might need to rename one of the columns
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
