https://github.com/cran/agricolae
Raw File
Tip revision: 8e18d15ec14d76bf12f7050ab1309a5972f889c5 authored by Felipe de Mendiburu on 20 April 2009, 00:00:00 UTC
version 1.0-7
Tip revision: 8e18d15
vark.Rd
\name{vark}
\alias{vark}
%- vark.
\title{ Variance K, ties, Kendall}
\description{
  The Kendall method in order to find the K variance.
}
\usage{
vark(x, y)
}

\arguments{
  \item{x}{ Vector }
  \item{y}{ vector }
}
\details{
  variance of K for Kendall's tau
}
\value{

  \item{x }{Numeric}
  \item{y }{Numeric}
}
\references{Numerical Recipes in C. Second Edition. }
\author{ Felipe de Mendiburu }

\seealso{ cor.matrix, cor.vector, cor.mv }
\examples{
library(agricolae)
x <-c(1,1,1,4,2,2,3,1,3,2,1,1,2,3,2,1,1,2,1,2)
y <-c(1,1,2,3,4,4,2,1,2,3,1,1,3,4,2,1,1,3,1,2)
vark(x,y)
}
\keyword{ nonparametric }% at least one, from doc/KEYWORDS

back to top