Skip to content

Commit

Permalink
version 1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Korbinian Strimmer authored and gaborcsardi committed Jul 4, 2011
1 parent a12c387 commit ec135dd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
8 changes: 4 additions & 4 deletions DESCRIPTION
@@ -1,6 +1,6 @@
Package: st
Version: 1.1.5
Date: 2011-06-27
Version: 1.1.6
Date: 2011-07-04
Title: Shrinkage t Statistic and CAT Score
Author: Rainer Opgen-Rhein, Verena Zuber, and Korbinian Strimmer.
Maintainer: Korbinian Strimmer <strimmer@uni-leipzig.de>
Expand All @@ -15,6 +15,6 @@ Description: This package implements the "shrinkage t" statistic
studies.
License: GPL (>= 3)
URL: http://strimmerlab.org/software/st/
Packaged: 2011-06-28 10:16:34 UTC; strimmer
Packaged: 2011-07-04 13:26:42 UTC; strimmer
Repository: CRAN
Date/Publication: 2011-06-28 10:18:33
Date/Publication: 2011-07-05 08:44:28
5 changes: 5 additions & 0 deletions NEWS
Expand Up @@ -2,6 +2,11 @@
RELEASE HISTORY OF THE "st" PACKAGE
=======================================

CHANGES IN `st' PACKAGE VERSION 1.1.6

- small change in studentt.fun and diffmean.fun to avoid uncessary
verbose output


CHANGES IN `st' PACKAGE VERSION 1.1.5

Expand Down
6 changes: 3 additions & 3 deletions R/studentt.R
@@ -1,4 +1,4 @@
### studentt.R (2011-06-26)
### studentt.R (2011-07-04)
###
### Student t statistic and related stuff
###
Expand Down Expand Up @@ -38,7 +38,7 @@ diffmean.fun = function (L)

function(X)
{
tmp = centroids(X, L, var.groups=FALSE, shrink=FALSE, verbose=TRUE)
tmp = centroids(X, L, var.groups=FALSE, shrink=FALSE, verbose=FALSE)

# differences between the two groups
diff = tmp$means[,1]-tmp$means[,2]
Expand All @@ -64,7 +64,7 @@ studentt.fun = function (L)

function(X)
{
tmp = centroids(X, L, var.groups=FALSE, shrink=FALSE, verbose=TRUE)
tmp = centroids(X, L, var.groups=FALSE, shrink=FALSE, verbose=FALSE)

# differences between the two groups
diff = tmp$means[,1]-tmp$means[,2]
Expand Down

0 comments on commit ec135dd

Please sign in to comment.