Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
base repository: swihart/growth
Choose a Base Repository
Nothing to show
base: jim-lindsey-homepage-version-1.0
head repository: swihart/growth
Choose a Head Repository
Nothing to show
compare: master
Checking mergeability… Don’t worry, you can still create the pull request.
  • 13 commits
  • 24 files changed
  • 0 comments
  • 1 contributor
Commits on Nov 23, 2016
Commits on Nov 24, 2016
Commits on Dec 02, 2016
Commits on Dec 07, 2016
0 errors | 0 warnings | 0 notes
Commits on Dec 08, 2016
Commits on Feb 04, 2019
Showing with 6,475 additions and 3,497 deletions.
  1. +7 −0 .Rbuildignore
  2. +10 −0 .gitignore
  3. +5 −0 .travis.yml
  4. +20 −11 DESCRIPTION
  5. +0 −6 INDEX
  6. +38 −9 NAMESPACE
  7. +1,940 −0 NEWS.md
  8. +191 −123 R/autocor.r
  9. +756 −620 R/carma.r
  10. +1,450 −1,049 R/elliptic.r
  11. +232 −189 R/potthoff.r
  12. +135 −95 R/rmaov.r
  13. +10 −0 README.md
  14. +69 −0 cran-comments.md
  15. +209 −140 man/carma.Rd
  16. +55 −32 man/corgram.Rd
  17. +478 −409 man/elliptic.Rd
  18. +0 −17 man/growth.Rd
  19. +66 −35 man/pergram.Rd
  20. +58 −47 man/potthoff.Rd
  21. +54 −45 man/rmaov.Rd
  22. +0 −11 src/Makefile
  23. +659 −659 src/elliptic.f
  24. +33 −0 src/growth_init.c
@@ -0,0 +1,7 @@
^.*\.Rproj$
^\.Rproj\.user$
^README\.Rmd$
^README-.*\.png$
^\.travis\.yml$
^cran-comments\.md$
^CRAN-RELEASE$
@@ -0,0 +1,10 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
src/*.o
src/*.so
src/*.dll
growth.Rproj
README.Rmd
README_files/*
@@ -0,0 +1,5 @@
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r

language: R
sudo: false
cache: packages
31 DESCRIPTION 100755 → 100644
@@ -1,11 +1,20 @@
Package: growth Package: growth
Version: 1.0 Version: 1.1.1
Title: Multivariate Normal and Elliptically-contoured Repeated Measurements Models Title: Multivariate Normal and Elliptically-Contoured Repeated Measurements
Author: Jim Lindsey <jlindsey@gen.unimaas.nl> Models
Maintainer: Jim Lindsey <jlindsey@gen.unimaas.nl> Authors@R: c(
Depends: R (>= 1.4), rmutil person("Bruce", "Swihart", email="bruce.swihart@gmail.com", role=c("cre", "aut")),
Description: Functions for fitting various normal theory (growth person("Jim" , "Lindsey", email="jlindsey@gen.unimaas.nl", role="aut", comment="Jim created this package, Bruce is maintaining the CRAN version"))
curve) and elliptically-contoured repeated measurements models Depends:
with ARMA and random effects dependence. R (>= 1.4),
License: GPL version 2 or later rmutil
URL: popgen.unimaas.nl/~jlindsey/rcode.html Description: Functions for fitting various normal theory (growth
curve) and elliptically-contoured repeated measurements models
with ARMA and random effects dependence.
License: GPL (>= 2)
URL: http://www.commanster.eu/rcode.html
BugReports: https://github.com/swihart/growth/issues
Encoding: UTF-8
LazyData: true
LazyLoad: true
RoxygenNote: 6.1.1
6 INDEX

This file was deleted.

@@ -1,9 +1,38 @@
useDynLib("growth") # Generated by roxygen2: do not edit by hand


import(rmutil) S3method(coef,carma)

S3method(coef,potthoff)
export(carma,coef.carma,deviance.carma,fitted.carma,mprofile.carma,print.carma,residuals.carma, S3method(deviance,carma)
corgram,pergram,plot.pergram,plot.cum,plot.cum.pergram, S3method(deviance,elliptic)
elliptic,deviance.elliptic,fitted.elliptic,residuals.elliptic,print.elliptic, S3method(deviance,potthoff)
potthoff,print.potthoff,coef.potthoff,deviance.potthoff,residuals.potthoff, S3method(fitted,carma)
rmaov) S3method(fitted,elliptic)
S3method(mprofile,carma)
S3method(plot,pergram)
S3method(plot_cum,pergram)
S3method(print,carma)
S3method(print,elliptic)
S3method(print,potthoff)
S3method(residuals,carma)
S3method(residuals,elliptic)
S3method(residuals,potthoff)
export(carma)
export(corgram)
export(elliptic)
export(pergram)
export(plot_cum)
export(potthoff)
export(rmaov)
import(rmutil)
importFrom(graphics,abline)
importFrom(graphics,lines)
importFrom(graphics,plot)
importFrom(stats,contr.poly)
importFrom(stats,fft)
importFrom(stats,model.frame)
importFrom(stats,model.matrix)
importFrom(stats,na.fail)
importFrom(stats,nlm)
importFrom(stats,terms)
importFrom(stats,var)
useDynLib(growth, .registration = TRUE)

No commit comments for this range

You can’t perform that action at this time.