\HeaderA{kOverA}{A filter function for k elements larger than A.}{kOverA}
\keyword{manip}{kOverA}
\begin{Description}\relax
\code{kOverA} returns a filter function with bindings for \code{k} and
\code{A}. This function evaluates to \code{TRUE} if at least \code{k}
of the arguments elements are larger than \code{A}.
\end{Description}
\begin{Usage}
\begin{verbatim}
kOverA(k, A=100, na.rm=TRUE)
\end{verbatim}
\end{Usage}
\begin{Arguments}
\begin{ldescription}
\item[\code{A}] The value you want to exceed. 
\item[\code{k}] The number of elements that have to exceed A.
\item[\code{na.rm}] If set to \code{TRUE} any \code{NA}'s will be removed. 
\end{ldescription}
\end{Arguments}
\begin{Value}
A function with bindings for \code{A} and \code{k}.
\end{Value}
\begin{Author}\relax
R. Gentleman
\end{Author}
\begin{SeeAlso}\relax
\code{\LinkA{pOverA}{pOverA}}
\end{SeeAlso}
\begin{Examples}
\begin{ExampleCode}
   fg <- kOverA(5, 100)
   fg(90:100)
   fg(98:110)
\end{ExampleCode}
\end{Examples}


