Skip to content

Commit

Permalink
add travis/readme
Browse files Browse the repository at this point in the history
  • Loading branch information
zmjones committed Apr 14, 2017
1 parent a348781 commit 47a27d2
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .travis.yml
@@ -0,0 +1,35 @@
language: r
sudo: required
cache: packages

addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
- gfortran-4.9

before_install:
- mkdir $HOME/bin
- ln -s $(which gcc-4.9) $HOME/bin/gcc
- ln -s $(which g++-4.9) $HOME/bin/g++
- ln -s $(which gfortran-4.9) $HOME/bin/gfortran
- export PATH=$HOME/bin:$PATH

r_packages:
- checkmate
- rmarkdown
- data.table
- randomForest
- ggplot2
- testthat
- mmpf
- glmnet
- MatrixModels

notifications:
email:
on_success: change
on_failure: change
5 changes: 5 additions & 0 deletions README.md
@@ -0,0 +1,5 @@
![](https://travis-ci.org/zmjones/fanova.svg)
![](http://www.r-pkg.org/badges/version/fanova)
![](http://cranlogs.r-pkg.org/badges/fanova)

This package implements the generalized functional ANOVA as described in [Hooker (2007)](http://amstat.tandfonline.com/doi/abs/10.1198/106186007X237892). The package currently implements the simple method described in the paper; estimating a weighted standard ANOVA.

0 comments on commit 47a27d2

Please sign in to comment.