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