saving . . . saved median has been deleted. median has been hidden .
median
Title
Question
What is meaning of na.rm=FALSE in formula when finding median?

R Introduction-to-Data-Frames-in-R 00-01 min 10-20 sec 11-09-20, 4:02 p.m. anita19dsm@gmail.com

Answers:

When using a data frame function na.rm in R, it refers to the logical parameter that tells the function whether or not to remove NA values from the calculation. It means NA remove. When na.rm is TRUE, the function skips over any NA values. However, when na.rm is FALSE, then it returns NA from the calculation being done on the entire row or column. For more details, you might want to refer to https://www.programmingr.com/tutorial/na-rm/
11-09-20, 4:22 p.m. sudhakarst


Log-in to answer to this question.