Skip to content

Commit 96dfb08

Browse files
committed
version 1.01
1 parent b5ca4ab commit 96dfb08

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

confIntVariance/DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: ConfIntVariance
22
Type: Package
33
Title: ConfIntVariance
4-
Version: 1.0
5-
Date: 2019-03-01
4+
Version: 1.01
5+
Date: 2019-03-06
66
Author: Mathias Fuchs
77
Maintainer: <mathias@mathiasfuchs.de>
88
Description: Surrounds the usual sample variance of a univariate numeric sample with a confidence interval.

confIntVariance/R/main.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ varianceOfSampleVariance <- function(x) {
2323
n <- length(x)
2424
# expectation of square minus square of expectation, and analogously for the estimators
2525
# the first term estimates its expectation, the second term the square of the expectation of the unbiased sample variance, i.e., the square of the population variance
26-
var(x)^2 - lsepvs2(x)
26+
var(x)^2 - lsepvs(x)
2727
}
2828

2929
# the confidence interval for the population variance around the usual unbiased sample variance

0 commit comments

Comments
 (0)