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
n = 50 | |
x = seq(-1,1, len = n) | |
f = function(x) 0.3 * x^2 | |
y = f(x) + rnorm(n, sd = 0.2) | |
par(mfrow = c(1,2)) | |
lmFit <- lm(y ~ x + I(x^2)) |
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
library(gdata) | |
Data = read.xls("http://www.pnas.org/content/suppl/2014/05/30/1402786111.DCSupplemental/pnas.1402786111.sd01.xlsx", | |
nrows = 92, as.is = TRUE) | |
library(glmmTMB) | |
originalModelGAM = glmmTMB(alldeaths ~ scale(MasFem) * | |
(scale(Minpressure_Updated.2014) + scale(NDAM)), | |
data = Data, family = nbinom2) | |
# Residual checks with DHARMa |
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
trueA = 5 | |
trueB = 0 | |
trueSd = 10 | |
sampleSize = 31 | |
# create independent x-values | |
x =(-(sampleSize-1)/2):((sampleSize-1)/2) | |
# create dependent values according to ax + b + N(0,sd) | |
y = trueA * x + trueB + rnorm(n=sampleSize,mean=0,sd=trueSd) |
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
n = 1000 # sample size | |
# generating data according to a collider structure | |
x1 = runif(n) # random values for explenatory variable x1 | |
y = 1.4 * x1 + rnorm(n,sd = 0.1) # y is causally influences by x1, effect size 0.4 | |
x2 = 2 * x1 + 2 * y + rnorm(n,sd = 0.1) # x2 is a collider, no influence on y, but influenced by y and x1 | |
# ignoring the collider results in the correct regression estimate of approx 1.4 | |
summary(lm(y ~ x1)) |
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
# The purpose of this script is to show that RF variable importance | |
# will split importance values for collinear variables evenly, | |
# even if collinearity is low enough so that variables are sepearable | |
# and would be correctly separameted by an lm / ANOVA | |
set.seed(123) | |
# simulation parameters | |
n = 3000 | |
col = 0.7 |
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 example shows how AIC selection, followed by a conventional regression analysis of the selected model, massively inflates false positives. CC BY-NC-SA 4.0 Florian Hartig | |
set.seed(1) | |
library(MASS) | |
dat = data.frame(matrix(runif(20000), ncol = 100)) | |
dat$y = rnorm(200) | |
fullModel = lm(y ~ . , data = dat) | |
summary(fullModel) | |
# 2 predictors out of 100 significant (on average, we expect 5 of 100 to be significant) |
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
############ CREATE ZERO-INFLATED GLMM DATA ################# | |
# This first part creates a dataset with beetles counts across an altitudinal gradient (several plots each observed several years), with a random intercept on year and zero-inflation. | |
altitude = rep(seq(0,1,len = 50), each = 20) | |
dataID = 1:1000 | |
spatialCoordinate = rep(seq(0,30, len = 50), each = 20) | |
# random effects + zeroinflation | |
plot = rep(1:50, each = 20) |
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
## Load libraries | |
library(mclogit) | |
library(reshape) | |
library(rjags) | |
library(R2WinBUGS) ## for write.model | |
## Load the data file from mclogit | |
data(Transport) | |
## Do the mclogit model |
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
# from https://tonybreyal.wordpress.com/2011/11/24/source_https-sourcing-an-r-script-from-github/ | |
# and http://stackoverflow.com/questions/7715723/sourcing-r-script-over-https | |
source_https <- function(url, ...) { | |
# load package | |
require(RCurl) | |
# parse and evaluate each .R script | |
sapply(c(url, ...), function(u) { | |
eval(parse(text = getURL(u, followlocation = TRUE, cainfo = system.file("CurlSSL", "cacert.pem", package = "RCurl"))), envir = .GlobalEnv) |
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
# modified from http://stackoverflow.com/questions/1401904/painless-way-to-install-a-new-version-of-r-on-windows | |
# run on old computer / r version | |
setwd("/Users/Florian/Dropbox/temp") # or any other existing temp directory | |
packages <- installed.packages()[,"Package"] | |
save(packages, file="Rpackages") | |
# run on new computer / r version | |
setwd("/Users/Florian/Dropbox/temp") # or any other existing temp directory |
NewerOlder