\name{meanWithoutNA} \alias{meanWithoutNA} \title{Calculating the mean by excluding all NA and NULL values} \description{ \code{meanWithoutNA} This function calculates the mean from the data submitted by excluding all NA and NULL values. } \usage{ meanWithoutNA(Data) } \arguments{ \item{Data}{A vector containing the values from which the mean should be calculated. NA and NULL values are removed before the calculation.} } \details{ Simple function to calculate the mean from a values vector. } %\references{} \author{Johannes Rainer} \examples{ data <- c(2,3,5,1,NA,NULL,3,NA) data meanWithoutNA(data) } \keyword{data}