Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Write a function in R language to replace the missing value in a vector with the mean of that vector?



Write a function in R language to replace the missing value in a vector with the mean of that vector..

Answer / Ankur

Here is a simple function named `fill_mean()` that replaces NA values in a vector with the mean of the non-NA values:
```R
fill_mean <- function(vector) {
if (any(is.na(vector))) {
vector[is.na(vector)] <- mean(vector, na.rm = TRUE)
}
return(vector)
}
```

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More R Programming Interview Questions

What is Descriptive analysis in R?

1 Answers  


Given a vector of numbers, how would you turn the values into scientific notation?

0 Answers  


Write a custom function in R?

1 Answers  


List the functions available in “dplyr” package?

1 Answers  


Explain what is with () and by () function in r is used for?

1 Answers  


What is a white noise model?

1 Answers  


What is reference class?

1 Answers  


How can you save your data in R?

1 Answers  


What is r vector?

1 Answers  


What is a factor? How would you create a factor in r?

1 Answers  


Why the stepaic()?

1 Answers  


What is TCP/IP in R?

1 Answers  


Categories