-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from sahirbhatnagar/jasa
First CRAN Release
- Loading branch information
Showing
157 changed files
with
14,245 additions
and
6,813 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,6 @@ | |
^_pkgdown\.yml$ | ||
^manuscript$ | ||
^rda/scott/$ | ||
^appveyor\.yml$ | ||
^CRAN-RELEASE$ | ||
^cran-comments\.md$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
This package was submitted to CRAN on 2019-12-02. | ||
Once it is accepted, delete this file and tag the release (commit 357d86d705). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: sail | ||
Title: Sparse Additive Interaction Learning | ||
Version: 0.0.0.9000 | ||
Version: 0.1.0 | ||
Authors@R: c( | ||
person("Sahir", "Bhatnagar", email = "[email protected]", | ||
role = c("aut", "cre"), comment = "http://sahirbhatnagar.com/"), | ||
|
@@ -9,10 +9,12 @@ Authors@R: c( | |
person("Celia", "Greenwood", email = "[email protected]", | ||
role = c("aut"), comment = "https://www.mcgill.ca/statisticalgenetics/") | ||
) | ||
Description: Sparse Additive Interaction Learning with the strong heredity property, i.e., | ||
Description: Sparse additive interaction learning with the strong heredity property, i.e., | ||
an interaction is selected only if its corresponding main effects are also included. | ||
Fits a linear model with non-linear interactions via penalized maximum likelihood. | ||
Interactions are limited to a single exposure or environment variable. | ||
Interactions are limited to a single exposure or environment variable. For more information, | ||
see the website below and the accompanying paper: Bhatnagar et al., "A sparse additive model for | ||
high-dimensional interactions with an exposure variable", 2019, <DOI:10.1101/445304>. | ||
Depends: R (>= 3.4.0) | ||
Imports: | ||
glmnet, | ||
|
@@ -22,7 +24,7 @@ Suggests: | |
grpreg, | ||
truncnorm, | ||
foreach, | ||
doMC, | ||
doParallel, | ||
testthat, | ||
covr, | ||
vdiffr, | ||
|
@@ -32,6 +34,6 @@ License: MIT + file LICENSE | |
Encoding: UTF-8 | ||
LazyData: true | ||
BugReports: https://github.com/sahirbhatnagar/sail/issues | ||
URL: https://github.com/sahirbhatnagar/sail | ||
RoxygenNote: 6.0.1 | ||
URL: https://sahirbhatnagar.com/sail | ||
RoxygenNote: 6.1.1 | ||
VignetteBuilder: knitr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
S3method(coef,cv.sail) | ||
S3method(coef,sail) | ||
S3method(plot,cv.sail) | ||
S3method(plot,sail) | ||
S3method(predict,cv.sail) | ||
S3method(predict,sail) | ||
S3method(print,sail) | ||
export(cv.sail) | ||
export(gendata) | ||
export(plotInter) | ||
export(plotMain) | ||
export(sail) | ||
importFrom(grDevices,hcl) | ||
importFrom(graphics,abline) | ||
importFrom(graphics,axis) | ||
importFrom(graphics,legend) | ||
importFrom(graphics,lines) | ||
importFrom(graphics,mtext) | ||
importFrom(graphics,par) | ||
importFrom(graphics,plot.default) | ||
importFrom(graphics,segments) | ||
importFrom(graphics,text) | ||
importFrom(stats,approx) | ||
importFrom(stats,coef) | ||
importFrom(stats,predict) | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
S3method(coef,cv.sail) | ||
S3method(coef,sail) | ||
S3method(plot,cv.sail) | ||
S3method(plot,sail) | ||
S3method(predict,cv.sail) | ||
S3method(predict,sail) | ||
S3method(print,sail) | ||
export(cv.sail) | ||
export(gendata) | ||
export(plotInter) | ||
export(plotMain) | ||
export(sail) | ||
importFrom(grDevices,hcl) | ||
importFrom(graphics,abline) | ||
importFrom(graphics,axis) | ||
importFrom(graphics,legend) | ||
importFrom(graphics,lines) | ||
importFrom(graphics,mtext) | ||
importFrom(graphics,par) | ||
importFrom(graphics,plot.default) | ||
importFrom(graphics,segments) | ||
importFrom(graphics,text) | ||
importFrom(stats,approx) | ||
importFrom(stats,coef) | ||
importFrom(stats,predict) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.