Learn R Programming

ResourceSelection (version 0.2-2)

simulateUsedAvail: Simulate Used-Aavailable Data

Description

Simulates used-available data.

Usage

simulateUsedAvail(data, parms, n.used, m, link="logit")

Arguments

data
a matrix or data frame.
parms
coefficients corresponding to the columns of the design matrix derived as model.matrix(~., data).
n.used, m
number of used points (n.used) and number of available points for each (m).
link
character, the type of link function to be used.

Value

  • A used-available data frame.

Examples

Run this code
n.used <- 1000
m <- 10
n <- n.used * m
set.seed(1234)
x <- data.frame(x1=rnorm(n), x2=runif(n))
cfs <- c(1.5,-1,0.5)
dat1 <- simulateUsedAvail(x, cfs, n.used, m, link="log")
str(dat1)
dat2 <- simulateUsedAvail(x, cfs, n.used, m, link="logit")
str(dat2)

Run the code above in your browser using DataLab