Quiz: Valid Functions
dplyr_function
specifies the transformation function, param_one
the parameter for the dplyr function and input_data_frame
the data frame to be transformed. Which of the code lines below are valid according to the dplyr function framework?dplyr_function(param_one, input_data_frame)
dplyr_function(input_data_frame, param_one)
input_data_frame(dplyr_function, param_one)
param_one(dplyr_function, input_data_frame)