- Emil Persson @Humus
- Matt Pettineo @mynameismjp
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
static const double MTHRESH = -30.; | |
SEXP logit_linkinv(SEXP eta) | |
{ | |
SEXP ans = PROTECT(shallow_duplicate(eta)); | |
int i, n = LENGTH(eta); | |
double *rans = REAL(ans), *reta = REAL(eta); | |
if (!n || !isReal(eta)) | |
error(_("Argument %s must be a nonempty numeric vector"), "eta"); |
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
[env] | |
LIBCLANG_PATH = "C:/Users/angus/scoop/apps/llvm/current/lib" | |
RUST_BACKTRACE = "full" | |
LIBRSYS_BINDINGS_OUTPUT_PATH = "mybindings" | |
R_HOME = "C:/Users/angus/scoop/apps/R/current" | |
[build] | |
target-dir = "target" | |
# target = "x86_64-pc-windows-msvc" | |
# target = "x86_64-pc-windows-gnu" |
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
_R_CHECK_TESTS_NLINES_=0 | |
__R_CHECK_LENGTH_1_CONDITION_=verbose | |
__R_CHECK_LENGTH_1_LOGIC2_=vebose |
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
_R_CHECK_TESTS_NLINES_=0 | |
__R_CHECK_LENGTH_1_CONDITION_=verbose | |
__R_CHECK_LENGTH_1_LOGIC2_=vebose |
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
#TODO: Find a way to restart R without using this particular .Rprofile. | |
# | |
# CLEAN_SESSION <- TRUE | |
CLEAN_SESSION <- FALSE | |
if (interactive() && !CLEAN_SESSION) { | |
# Configure session ------------------------------------------------------- | |
message("Interactive mode configuration") |