Write a user-defined function (UDF) named order that takes t…

Write a user-defined function (UDF) named order that takes three numeric input arguments: a, b, and c. The function must determine the relative order of the three values and return three outputs: Max – the largest of the three values Middle – the value that is neither the largest nor the smallest Min – the smallest of the three values   If the function is called as: = order(7, 2, 5);   The function must return: Max    = 7Middle = 5Min    = 2

Using the acct_type_balance data frame, fill in the blanks i…

Using the acct_type_balance data frame, fill in the blanks in the code below to generate a violin plot of the variable balance separately for each type of account (variable bank_account_type). Fill in only what is needed to complete the code. Do not repeat what is already there. acct_type_balance |>   (   ~  ,    = “violin”)