-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version 0.5.0 release - CRAN version
Merge branch 'develop' # Conflicts: # DESCRIPTION # cleanup # cleanup.win # src/Makevars.win # src/include/models.hpp # src/include/models.hpp.bak
- Loading branch information
Showing
116 changed files
with
16,402 additions
and
13,480 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 |
---|---|---|
@@ -1,14 +1,15 @@ | ||
cleanup* | ||
^\.travis\.yml$ | ||
^.*\.Rproj$ | ||
^idealstan\.Rproj$ | ||
^\.Rproj\.user$ | ||
^chunks$ | ||
README* | ||
package_test* | ||
cran-comments.md | ||
NEWS.md | ||
^\.travis\.yml$ | ||
package_test.html | ||
package_test.Rmd | ||
DE 2018.Rdata | ||
LICENSE.txt | ||
^\.DS_Store | ||
^\.Rmd | ||
bfg-1* | ||
delaware_example.R | ||
package_test.nb.html | ||
package_test_files | ||
render_vignettes.R | ||
vignette_output.txt | ||
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 |
---|---|---|
@@ -1,10 +1,51 @@ | ||
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r | ||
|
||
language: R | ||
sudo: false | ||
language: r | ||
sudo: true | ||
cache: packages | ||
r: | ||
- 3.3.1 | ||
r_build_args: --no-build-vignettes --no-manual --no-resave-data | ||
r_check_args: --no-build-vignettes --no-manual | ||
warnings_are_errors: false | ||
|
||
|
||
matrix: | ||
include: | ||
- os: linux | ||
dist: trusty | ||
r: release | ||
r_binary_packages: | ||
- devtools | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-7 | ||
env: | ||
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7" | ||
- os: linux | ||
dist: trusty | ||
r: devel | ||
r_binary_packages: | ||
- devtools | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-7 | ||
env: | ||
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7" | ||
- os: osx | ||
fortran: false | ||
osx_image: xcode10 | ||
r: release | ||
|
||
|
||
before_install: | ||
- mkdir -p ~/.R/ | ||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then echo "CXX14 = g++-7 -fPIC" >> ~/.R/Makevars; fi | ||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then echo "CXX14FLAGS = -mtune=native -march=native -Wno-unused-variable -Wno-unused-function -Wno-unused-local-typedefs -Wno-ignored-attributes -Wno-deprecated-declarations -Wno-attributes -O3" >> ~/.R/Makevars; fi | ||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then echo "CXX14 = clang++ -arch x86_64 -ftemplate-depth-256" >> ~/.R/Makevars; fi | ||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then echo "CXX14FLAGS = -O3 -mtune=native -march=native -Wno-unused-variable -Wno-unused-function -Wno-unknown-pragmas" >> ~/.R/Makevars; fi | ||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then echo "CC = clang" >> ~/.R/Makevars; fi | ||
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo tlmgr install inconsolata; fi | ||
|
||
after_failure: | ||
- cat /home/travis/build/saudiwin/idealstan/idealstan.Rcheck/00install.out | ||
|
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,39 +1,48 @@ | ||
Package: idealstan | ||
Type: Package | ||
Title: Bayesian IRT Ideal Point Models with 'Stan' | ||
Version: 0.2.9.2 | ||
Date: 2018-10-16 | ||
Title: Generalized IRT Ideal Point Models with 'Stan' | ||
Version: 0.5.0 | ||
Date: 2018-10-27 | ||
Authors@R: c(person("Robert","Kubinec", role = c("aut","cre"), | ||
email = "rmk7xy@virginia.edu"), | ||
email = "rmk7@nyu.edu"), | ||
person("Jonah", "Gabry", role = "ctb"), | ||
person("Ben", "Goodrich", role = "ctb"), | ||
person("Trustees of Columbia University",role='cph')) | ||
BugReports: https://github.com/saudiwin/idealstan/issues | ||
Description: Offers item-response theory (IRT) ideal-point scaling/dimension reduction methods that incorporate additional response categories and missing/censored values, including absences and abstentions, for roll call voting data (or any other kind of binary or ordinal item-response theory data). Full and approximate Bayesian inference is done via the 'Stan' engine (www.mc-stan.org). | ||
Description: Offers item-response theory (IRT) ideal-point estimation for binary, ordinal, counts and continuous responses with time-varying and missing-data inference. Full and approximate Bayesian sampling with 'Stan' (www.mc-stan.org). | ||
License: GPL | ||
Depends: | ||
Depends: | ||
methods, | ||
R (>= 3.4.0), | ||
Rcpp (>= 0.12.7) | ||
Imports: | ||
Rcpp (>= 0.12.18) | ||
Imports: | ||
rstan (>= 2.18.1), | ||
rstantools (>= 1.1.0), | ||
methods (>= 3.3.1), | ||
rstantools (>= 1.5.1), | ||
dplyr, | ||
tidyr, | ||
stringr, | ||
bayesplot, | ||
ggplot2, | ||
lazyeval, | ||
rlang, | ||
shinystan | ||
shinystan, | ||
gghighlight, | ||
forcats, | ||
ggrepel | ||
Suggests: | ||
pscl, | ||
loo, | ||
knitr, | ||
rmarkdown | ||
LinkingTo: StanHeaders (>= 2.18.0), rstan (>= 2.18.1), BH (>= 1.66), Rcpp | ||
(>= 0.12.7), RcppEigen (>= 0.3.2.9.0) | ||
RoxygenNote: 6.0.1 | ||
LazyData: false | ||
VignetteBuilder: knitr | ||
lubridate, | ||
R.rsp | ||
LinkingTo: | ||
StanHeaders (>= 2.18.0), | ||
rstan (>= 2.18.1), | ||
BH (>= 1.66), | ||
Rcpp (>= 0.12.7), | ||
RcppEigen (>= 0.3.2.9.0) | ||
Encoding: UTF-8 | ||
LazyData: true | ||
NeedsCompilation: yes | ||
SystemRequirements: GNU make | ||
VignetteBuilder: R.rsp | ||
RoxygenNote: 6.1.0 |
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.