Workshop Dataset

Project data

For the workshop, we will be using a greatly reduced dataset from the Wetland Intervention Monitoring Projects (WIMP; thanks Kay Morris 👏).

Each day we will provide a Rstudio project that will have the data as well. If you want to start from scratch, click on link below to download project data files and go from there.


Project overview

Purpose

Goal: Improve grazing management

Question: How does grazing intensity affect wetland plants?

Framework: The ecological framework underpinning this study is the Intermediate Disturbance Hypothesis.

Grazing treatment: Here, we focus on two types of grazing: Press (low intensity for longer) and Crash (high intensity for shorter).

Show code
 cowplot::ggdraw() + cowplot::draw_image('images/dataset/idh.PNG')


Experimental design

Study sites

Across western and eastern Victoria, a total of 28 sites were selected to be surveyed. These sites were spread across four Catchment Management Authorities (CMA) but with the majority of sites in the western CMAs. Sites were chosen partly to cover a wide variation in grazing intensity and grazing treatment.

Show code
  sf_site <- sf::read_sf('data/sf_site.gpkg') %>% select(-transect_id)
  # sf_cma <- VicmapR::vicmap_query(layer='open-data-platform:cma100') %>% VicmapR::collect()
  sf_cma <- sf::read_sf('data/sf_cma.gpkg')  
  mapview::mapview(sf_cma, zcol='cmaname', layer.name='cma') + 
    mapview::mapview(sf_site, zcol='grazing', layer.name='site', col.regions=c('red','blue') )

Monitoring

In each wetland, we are assessing how vegetation changes over time inside two trial plots. Each trial plot is about 0.25 ha in size. One plot is open to the grazing management being applied in the wetland and the other plot is fenced to exclude livestock (sheep and cattle). Monitoring is done when the wetland is drying out but still wet as this is the when most wetland plants are present. Monitoring is done along transects and quadrats in each plot before fencing, and then every year after fencing for 3-5 years.

Design variables

So, we have a hierarchical experimental design: site/plot/transect/quadrant. First we have the site-level. At this level, we have the grazing treatments: Crash (intense grazing, shorter) and Press (less intense, longer). Next, we have a paired design within a site with fence. Within plot we have transects and within transect, quadrats.

At the quadrat level, a large suite of responses were measured in this study. For the workshop we will focus on two response metrics measured at the quadrat level:

Data provided

Overview

We have three files:

Let’s take a look at snapshot of each file

Workshop 2024 data.xls

This workbook has four tabs of data.

site_info tab

spp_traits tab

quad_ht tab

spp_rich tab

df_survey_info.csv

df_quad_spp.csv

Note - not used in day1 but may be integrated later