Skip to content

Commit

Permalink
version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
CecileProust-Lima authored and gaborcsardi committed May 28, 2014
1 parent 2ccaeb9 commit 0815cda
Show file tree
Hide file tree
Showing 13 changed files with 84 additions and 77 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION 100755 → 100644
@@ -1,15 +1,15 @@
Package: NormPsy
Type: Package
Title: Normalisation of psychometric tests
Version: 1.0.1
Version: 1.0.2
Date: 2014-05-28
Author: Cecile Proust-Lima, Viviane Philipps
Maintainer: Cecile Proust-Lima <cecile.proust-lima@inserm.fr>
Description: This package provides functions for normalizing psychometric test scores. The normalization aims at correcting the metrological properties of the psychometric tests such as the ceiling and floor effects and the curvilinearity (unequal interval scaling). The package also provides functions to compute and plot predictions in the natural scale of the psychometric test from the estimates of a linear mixed model estimated on the normalized scores.
License: GPL
Depends: R (>= 2.9.0)
Imports: lcmm (>= 1.6.4)
Packaged: 2014-05-30 08:49:11 UTC; vp3
Packaged: 2014-11-27 20:56:50 UTC; cecile
NeedsCompilation: yes
Repository: CRAN
Date/Publication: 2014-05-30 16:22:15
Date/Publication: 2014-11-27 23:19:56
6 changes: 3 additions & 3 deletions MD5
@@ -1,10 +1,10 @@
4b2e9219d56a16fb8ef006ccbbb5a8fc *DESCRIPTION
e7bd7ea169ee3359884b59214aa6243f *DESCRIPTION
e20e454dd825e32673a0eba4740caf3b *NAMESPACE
a1d20aa874ee82dde7db01691182538d *R/normMMSE.R
5708fba01b0ba89e7041066975cbd17c *R/plot.predMMSE.R
241040cf6b5b0b695663b73796c064db *R/predictMMSE.R
bf0a82838c9249d3fe91e0b42ee011a3 *man/NormPsy-package.Rd
e8a086b644314326cedae095a5b2bf97 *man/normMMSE.Rd
bbd150f98e1da2c4e6caefe5baf02055 *man/NormPsy-package.Rd
0cdc1dc48db79fb5a662468d90180b99 *man/normMMSE.Rd
075dd49f8bb2f7169e89fd7ee7fd0b13 *man/plot.predMMSE.Rd
b59d714c34400622130736fe007bb54a *man/predictMMSE.Rd
b9a7c33f1bb2a09f2444f1172acc07c4 *src/Makevars.in
Expand Down
Empty file modified NAMESPACE 100755 → 100644
Empty file.
Empty file modified R/normMMSE.R 100755 → 100644
Empty file.
Empty file modified R/plot.predMMSE.R 100755 → 100644
Empty file.
Empty file modified R/predictMMSE.R 100755 → 100644
Empty file.
51 changes: 27 additions & 24 deletions man/NormPsy-package.Rd 100755 → 100644
@@ -1,24 +1,27 @@
\name{NormPsy-package}
\alias{NormPsy-package}
\alias{NormPsy}
\docType{package}
\title{
Normalization of psychometric test scores
}
\description{
This package provides functions for normalizing psychometric test scores. The normalization aims at correcting the metrological properties of the psychometric tests such as the ceiling and floor effects and the curvilinearity (unequal interval scaling). The package also provides functions to compute and plot predictions in the natural scale of the psychometric test from the estimates of a linear mixed model estimated on the normalized scores.
}
\details{
\tabular{ll}{
Package: \tab NormPsy\cr
Type: \tab Package\cr
Version: \tab 1.0\cr
Date: \tab 2014-05-07\cr
License: \tab GPL\cr
}
}
\author{
Cecile Proust-Lima, Viviane Philipps
}
%\references{
%}
\name{NormPsy-package}
\alias{NormPsy-package}
\alias{NormPsy}
\docType{package}
\title{
Normalization of psychometric test scores
}
\description{
This package provides functions for normalizing psychometric test scores. The normalization aims at correcting the metrological properties of the psychometric tests such as the ceiling and floor effects and the curvilinearity (unequal interval scaling). The package also provides functions to compute and plot predictions in the natural scale of the psychometric test from the estimates of a linear mixed model estimated on the normalized scores.
}
\details{
\tabular{ll}{
Package: \tab NormPsy\cr
Type: \tab Package\cr
Version: \tab 1.0.2\cr
Date: \tab 2014-05-07\cr
License: \tab GPL\cr
}
}
\author{
Cecile Proust-Lima, Viviane Philipps

Maintainer: Cecile Proust-Lima <cecile.proust-lima@inserm.fr>
}
\references{
Philipps V, Amieva H, Andrieu S, Dufouil C, Berr C, Dartigues J-F, et al. Normalized mini-mental state examination for assessing cognitive change in population-based brain aging studies. Neuroepidemiology. 2014; 43(1) 15-25.
}
98 changes: 51 additions & 47 deletions man/normMMSE.Rd 100755 → 100644
@@ -1,47 +1,51 @@
\name{normMMSE}
\alias{normMMSE}
\title{
Normalized scores for the Mini Mental State Examination (MMSE)
}
\description{
This function transforms crude MMSE scores (range 0 - 30) into normalized scores. The normalized scale ranges from 0 to 100, with MMSE minimum score 0 being transformed into 0 and MMSE maximum score 30 into 100. The normalization preserves the ranking of the test but transforms the gaps between two consecutive values in order to correct the curvilinearity of MMSE. The normalization is specifically adapted for heterogeneous elderly propulations mixing normal and pathological aging.
}
\usage{
normMMSE(x)
}
\arguments{
\item{x}{
a numeric vector containing MMSE scores (integer between 0 and 30)
}
}

\value{
a vector containing the transformed MMSE scores
}

\author{
Cecile Proust-Lima, Viviane Philipps
}


\examples{

#import data paquid from lcmm package
library(lcmm)
data(paquid)

# computation of the normalized MMSE
paquid$MMSEnorm <- normMMSE(paquid$MMSE)

# histogram of these data
par(mfrow=c(1,2))
hist(paquid$MMSE,breaks=seq(-0.5,30.5,1),col=2,main="crude MMSE")
hist(paquid$MMSEnorm,breaks=seq(0,100,10),col=3,main="normalized MMSE")
}




%\seealso{
%
%}
\name{normMMSE}
\alias{normMMSE}
\title{
Normalized scores for the Mini Mental State Examination (MMSE)
}
\description{
This function transforms crude MMSE scores (range 0 - 30) into normalized scores. The normalized scale ranges from 0 to 100, with MMSE minimum score 0 being transformed into 0 and MMSE maximum score 30 into 100. The normalization preserves the ranking of the test but transforms the gaps between two consecutive values in order to correct the curvilinearity of MMSE. The normalization is specifically adapted for heterogeneous elderly propulations mixing normal and pathological aging.
}
\usage{
normMMSE(x)
}
\arguments{
\item{x}{
a numeric vector containing MMSE scores (integer between 0 and 30)
}
}

\value{
a vector containing the transformed MMSE scores
}

\references{
Philipps V, Amieva H, Andrieu S, Dufouil C, Berr C, Dartigues J-F, et al. Normalized mini-mental state examination for assessing cognitive change in population-based brain aging studies. Neuroepidemiology. 2014; 43(1) 15-25.
}

\author{
Cecile Proust-Lima, Viviane Philipps
}


\examples{

#import data paquid from lcmm package
library(lcmm)
data(paquid)

# computation of the normalized MMSE
paquid$MMSEnorm <- normMMSE(paquid$MMSE)

# histogram of these data
par(mfrow=c(1,2))
hist(paquid$MMSE,breaks=seq(-0.5,30.5,1),col=2,main="crude MMSE")
hist(paquid$MMSEnorm,breaks=seq(0,100,10),col=3,main="normalized MMSE")
}




%\seealso{
%
%}
Empty file modified man/plot.predMMSE.Rd 100755 → 100644
Empty file.
Empty file modified man/predictMMSE.Rd 100755 → 100644
Empty file.
Empty file modified src/Makevars.in 100755 → 100644
Empty file.
Empty file modified src/Makevars.win 100755 → 100644
Empty file.
Empty file modified src/backtransformation.f90 100755 → 100644
Empty file.

0 comments on commit 0815cda

Please sign in to comment.