Nothing
## This file is part of the UncertaintyInterpolation 2.0 package.
##
## Copyright 2015 Tomas Burian
#' @title
#' Creates S4 object class UncertainPoints
#'
#' @description
#' Builds an uncertainty model based on the percentual error
#' over the input data. Input data must be type of S4 class
#' \code{Points}. Output object is type of S4 class \code{UncertainPoints}.
#'
#' @param data Input data. S4 class of \code{Points}.
#' @param value Percent value of imprecision that defines the uncertainty.
#'
#' @return Returns an object of class \code{UncertainPoints}.
#'
#' @seealso \code{\link[UncerIn2]{Points-class}}, \code{\link[UncerIn2]{UncertainPoints-class}}, \code{\link[UncerIn2]{uncertaintyInterpolation2-package}}
#'
#' @export
uncertaintyPercent <- function(data, value = 2)
{
if(!(inherits(data, "Points"))){
stop( paste("Dataset: ", deparse(substitute(testData))," is not S4 class of type Points." , sep=""))
}
percent = (data@z/100) * value
modify = abs(percent)
uncertaintyLower = data@z - modify
uncertaintyUpper = data@z + modify
new("UncertainPoints", x=data@x, y=data@y, uncertaintyLower=uncertaintyLower, modalValue=data@z, uncertaintyUpper=uncertaintyUpper)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.