Write Function Named Monthconvert X Fromlang Tolang Convert Month Names One Language Anoth Q43858307
Using R programming!
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 tranlating 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 <NA> Levels: febrero junio marzo Show transcribed image text 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 tranlating from_lang; and the language to which we are translating to_lang. For example: x
Expert Answer
Answer to Using R programming! …
OR