Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/evaluate.R
\name{isApproxSame}
\alias{isApproxSame}
\title{Is Approximately the Same}
\usage{
isApproxSame(validationVal, classVal, maxDistance)
}
\arguments{
\item{validationVal}{value of the validationData (exact value)}
\item{classVal}{estimated value (approx. value)}
\item{maxDistance}{percentage of maximum distance of the values}
}
\value{
TRUE, if the difference between the two values is less than or
equal the maxDistance; FALSE, if the difference between the two values is
greater than the maxDistance
}
\description{
checks whether the difference between two values is less than or equal the
maxDistance
}