Resource selection requires "used" and "available" habitats and the study designs would take up an entire course all on there own. In this section, we hope to show how we can go about this approach all in R and not need to involve excel spreadsheets with multiple columns of data. More details on methods to estimate resource selection functions (RSFs) or resource selection probability funcitons (RSPFs) can be found in the literature (Manly et al. 2002, Millspaugh et al. 2006, Johnson et al. 2006). We do not expect you to be experts in RSFs after this section but we want you to be able to implement these methods in R after determining study design, data collection protocol, and methodology to best achieve your research objectives.

8.4.1 Logistic regression

As we move forward in this section, we are going to assume that your study design and data assessment prior to this section addresses any collinearity in predictor variables and a priori hypothesis were used to generate your models used in logistic regression. There are several ways to to calculate RSFs in R using logistic functions that can assess population level or intra-population variation. The use of General Linear Models with various function using the lme4 package is often used for estimating population-level models only. Alternatively, we can assess intra-population variation using the glmer function. Assessing intra-population variation is a mixed-model approach that provides a powerful and flexible tool for the analysis of balanced and unbalanced grouped data that are often common in wildlife studies that have correlation between observations within the same group or variation among individuals at the same site (Gillies et al. 2006).

  1. Exercise 8.4 - Download and extract zip folder into your preferred location
  2. Set working directory to the extracted folder in R under File - Change dir...
  3. First we need to load the packages needed for the exercise
    library(lme4)
    library(AICcmodavg)
    library(adehabitatHR)

  4. Now open the script "LogisticRSF.R" and run code directly from the script
    data_1 <- read.csv("MD_winter12.csv",header=T)
    str(data_1)

  5. We may need to identify some numerical data as factors for analysis prior to implementing resource selection analysis.

    data_1$crop=as.factor(data_1$crop)
    data_1[,2:3]=scale(data_1[,2:3],scale=TRUE)#standardize data to mean of zero
    str(data_1)

  6. We may need to use code that changes Reference Categories of our data. For our analysis we are going to define reference category of \emph{used} habitat as crop= 1. Crop category 1 is sunflowere which was the crop of interest but was not selected for based on Selection Ratios in Exercise 8.4.
    fit1 = glmer(use ~ relevel(crop,"1")+(1|animal_id), data=data_1,
    family=binomial(link="logit"),nAGQ = 0)#Sunflower and cover model
    fit2 = glmer(use ~ d_cover+(1|animal_id), data=data_1,
    family=binomial(link="logit"),nAGQ = 0)#Distance to cover only model
    fit3 = glmer(use ~ d_roads+(1|animal_id), data=data_1, family=binomial(link="logit"), nAGQ = 0)#Distance to roads only model
    fit4 = glmer(use ~ d_cover+d_roads+(1|animal_id), data=data_1,
    family=binomial(link="logit"),nAGQ = 0)#Distance to cover and roads model
    fit5 = glmer(use ~ 1|animal_id, data=data_1, family=binomial(link="logit"),
    nAGQ = 0)#Intercept model

  7. We can view the results of our modeling procedure to select the best model using Akaike's Information Criteria (AIC; Burnham and Anderson 2002).

    fit1
    fit2
    fit3
    fit4
    fit5
    AIC(fit1,fit2,fit3,fit4,fit5)
    mynames <- paste("fit", as.character(1:5), sep = "")
    myaicc <- aictab(list(fit1,fit2,fit3,fit4,fit5), modnames = mynames)
    print(myaicc, LL = FALSE)

  8. Our top model (fit 1) has all the support in this case indicating that during winter 2012 the mule deer were selecting for each habitat over sunflower. Considering sunflower is not available during the winter months this makes perfect sense. Looking at parameter estimates and confidence intervals for the additional habitat categories in fit 1 we see that forest (category 4) is most selected habitat followed by shrub (category 5). This is only a simply way to look at habitat, however, we used more animals that were on the air for several years and also could look at distance to habitat instead of representing habitat as categorical data.
    #Get confidence intervals from the top model to interpret results
    per1_se <- sqrt(diag(vcov(fit1)))
    # table of estimates with 95% CI
    tab_per1 <- cbind(Est = fixef(fit1), LL = fixef(fit1) - 1.96 * per1_se,
    UL = fixef(fit1) + 1.96 * per1_se)

  9. We can then create a surface of predictions from our top model indicating where in our study site we might find the highest probability of use. To do this, we need to export a text file from our "layer" created in Exercise 8.3.
    layer1 <- read.table("layer1.txt",sep=",")
    str(layer1)
    names(layer1) = c("crop", "d_cover", "d_roads","x", "y")
    str(layer1)
    head(layer1)
    #Need to standardize the raw distance rasters first to match what we #modeled
    layer1[,2:3]=scale(layer1[,2:3],scale=TRUE)
    head(layer1)
    layer1$crop <- as.factor(layer1$crop)
    #predictions based on best model
    predictions = predict(fit1, newdata=layer1, re.form=NA, ) #based on the scale of the linear predictors
    predictions = exp(predictions)
    range(predictions)
    #Create Ascii grid of raw predictions if needed
    layer1$predictions = predictions
    #preds = layer1
    #preds = SpatialPixelsDataFrame(points=preds[c("x", "y")], data=preds)
    #preds = as(preds, "SpatialGridDataFrame")
    #names(preds)
    #writeAsciiGrid(preds, "predictions.asc", attr=13) # attr should be column number for 'predictions'

    # assign each cell or habitat unit to a 'prediction class'. Classes have (nearly) equal area, if the cells or habitat units have equal areas.
    # output is a vector of class assignments (higher is better).
    F.prediction.classes <- function(raw.prediction, n.classes){
    # raw.prediction = vector of raw (or scaled) RSF predictions
    # n.classes = number of prediction classes.
    pred.quantiles = quantile(raw.prediction, probs=seq(1/n.classes, 1-1/n.classes, by=1/n.classes))
    ans = rep(n.classes, length(raw.prediction))
    for(i in (n.classes-1):1){
    ans[raw.prediction < pred.quantiles[i]] = i
    }
    return(ans)
    }
    str(layer1)
    layer1$prediction.class = F.prediction.classes(layer1$predictions, 6)
    #attr should be column number for 'predictions'
    table(layer1$prediction.class)
    ##############################################
    # create map of RSF prediction classes in R
    m = SpatialPixelsDataFrame(points = layer1[c("x", "y")], data=layer1)
    names(m)
    par(mar=c(0,0,0,0))
    image(m, attr=7, col=c("grey90", "grey70", "grey50", "grey30", "grey10"))
    par(lend=1)
    legend("bottomright", col=rev(c("grey90", "grey70", "grey50", "grey30", "grey10")), legend=c("High", "Medium-high", "Medium", "Medium-low", "Low"), title="Prediction Class", pch=15, cex=1.0,bty != "n", bg="white")
    #Create Ascii grid of prediction classes if needed
    #m = as(m, "SpatialGridDataFrame")
    #names(m)
    #writeAsciiGrid(m, "PredictionClassess.asc", attr=7)

    ###############################################

    #

    # We are in the process of adding negative binomial, discrete choice, and

    # synoptic BBMM for resource selection analysis so check back for updates!

    #

    ###############################################