| var | R Documentation | 
S3 methods for the variance of a fdt. 
 
Useful to estimate the variance (when the real data vector is not known) from a previous fdt.
## S3 generic
var(x, ...)
## S3 methods: numerical
## Default S3 method:
var(x, ...)
## S3 method for class 'fdt'
var(x, ...)
## S3 method for class 'fdt.multiple'
var(x, ...)
x | 
 a   | 
... | 
 required to be generic.  | 
var.fdt calculates the value of the variance based on a known formula. 
var.fdt.multiple calls var.fdtfor each variable, that is, each column of the data.frame.
var.fdt returns a numeric vector containing the value of the median of the fdt.
median.fdt.multiple returns a list, where each element is a numeric vector 
containing the value of the variance of the fdt for each variable.
Faria, J. C. 
Allaman, I. B 
Jelihovschi, E. G.
sd.fdt, mean.fdt.
mdf <- data.frame(x=rnorm(1e2, 
                          20, 
                          2),
                  y=rnorm(1e2, 
                          30,
                          3),
                  z=rnorm(1e2,
                          40,
                          4))
head(mdf)
# From a data.frame
apply(mdf,
      2,
      var)
# From a fdt object
var(fdt(mdf))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.