~ubuntu-branches/ubuntu/trusty/lme4/trusty

« back to all changes in this revision

Viewing changes to tests/extras.R

  • Committer: Package Import Robot
  • Author(s): Dirk Eddelbuettel
  • Date: 2012-06-23 13:55:52 UTC
  • mfrom: (1.1.27) (2.2.15 sid)
  • Revision ID: package-import@ubuntu.com-20120623135552-ftarnupvw0k973hh
Tags: 0.999999-0-1
* New upstream release

* debian/control: Set Build-Depends: to current R version
* debian/control: Change Depends to ${R:Depends}
* debian/control: Set Standards-Version: to current version 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## library(lme4)
2
 
## This example takes too long
3
 
## if (isTRUE(try(data(star, package = 'mlmRev')) == 'star')) {
4
 
##     fm1 <- lme4:::carryOver(math ~ gr+sx*eth+cltype+(yrs|id)+(1|tch)+(yrs|sch),
5
 
##                             star, yrs ~ tch/id,
6
 
##                             control = list(msV = 1, nit = 0, grad = 0))
7
 
##     print(fm1, corr = FALSE)
8
 
## }
 
1
if(FALSE) {## This example takes too long
 
2
    library(lme4)
 
3
    if (isTRUE(try(data(star, package = 'mlmRev')) == 'star')) {
 
4
        fm1 <- lme4:::carryOver(math ~ gr+sx*eth+cltype+(yrs|id)+(1|tch)+(yrs|sch),
 
5
                                  star, yrs ~ tch/id,
 
6
                                  control = list(msV = 1, nit = 0, grad = 0))
 
7
        print(fm1, corr = FALSE)
 
8
    }
 
9
}