Question: IN R PROGRAMMING LANGUAGE- Write a function named month_convert(x, from_lang, to_lang) that will convert month names from one language to another. The function will accept
IN R PROGRAMMING LANGUAGE-
Write a function named month_convert(x, from_lang, to_lang) that will convert month names from one language to another. The function will accept three arguments: x, which is a factor with month information; the language from which we are translating from_lang; and the language to which we are translating to_lang. For example: x <- factor(c("March","March","February","June")) month_convert(x, "English", "Spanish") will output: [1] marzo marzo febrero junio Levels: febrero junio marzo If the input contains a value that is not a real month, then it will be replaced with NA. x <- factor(c("March","March","February","June","Jaly")) month_convert(x, "English", "Spanish") [1] marzo marzo febrero junio Levels: febrero junio marzo File to read is here- https://drive.google.com/open?id=1ci8M7kM9nIuJmgiB2CB8WHfPf_3HOQ6d--fEo7E2_80
IN R PROGRAMMING LANGUAGE-
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
