Question: Write a short R function called missingMaxMin that accepts two paramters: a . A vector of numbers called InputNumbers, some of which may be missing
Write a short R function called missingMaxMin that accepts two paramters:
a A vector of numbers called InputNumbers, some of which may be missing ie NA
b An indicator variable MaxMin which has a value of either or
i If MaxMin is missing values in InputNumbers are replaced with the maximum value in InputNumbers
ii If MaxMin is missing values in inputNumbers are replaced with the minimum value in InputNumbers
So for instance
x c NA NA
z missingMaxMinx #MaxMin is so replace NAs with the maximum
z would now contain
hint remember to use the narmT parameter when determining the max or min
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
