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

Describe substr() in r string manipulation?

1 Answers  


What is more functions in r and name them?

1 Answers  


Explain disadvantages of density-based clustering in R?

1 Answers  


What is functional programming and memory issues in on the performance basis?

1 Answers  


Write the r programming code for an array of words so that the output is displayed in decreasing frequency order?

1 Answers  


What do you understand by R cluster analysis?

1 Answers  


Why the stepaic()?

1 Answers  


Explain What is R?

1 Answers  


how to import data into R?

1 Answers  


How can you resample statistical tests in r language?

1 Answers  


How can you create a pca model in r?

1 Answers  


What is the Use of String Utilities in the edtdbg Debugging Tool in R string manipulation?

1 Answers  


Categories