ENVX1002 Statistics in Life and Environmental Sciences
The University of Sydney
Apr 2026

Januar Harianto
Weeks 1 – 4

Floris van Ogtrop
Weeks 5 – 8

Liana Pozza
Weeks 9 – 12
All lectures are held in ABS Lecture Theatre 1130.
Lab sessions are held in the Biomedical Building C81, 1 Central Avenue, Eveleigh.
The following are optional (but highly recommended):
Lectures (hybrid)
Computer Labs

There is currently a bus that goes to Redfern Station. You can find the timetable here: Campus Bus Timetables
We are looking to secure a bus service from main campus to C81, but need an idea of numbers first.
If you are interested in catching a shuttle bus to C81, please fill out this short survey:
The most up to date (and slightly more comprehensive) information for 2026 is here. In a nutshell:
| Week | Assessment | Description |
|---|---|---|
| 3 | Early Feedback Task (individual 5%) | In-person - 15 minutes |
| 5 | Describing Data Report (individual 15%) | Written report, 500 words |
| 8 | Coding and data skills evaluation (individual 15%) | In-person - 50 minutes |
| 13 | Group presentation: Modelling relationships in data (10% + Peer assessment 5%) | Group presentation - 15 minutes |
| Exam | Final exam (individual 50%) | MCQ + SAQ Questions - 2 hours |
The final exam is a hurdle assessment for this unit. This means:
You must attempt the exam and achieve a minimum score of 40% to pass the unit.
Students who do not meet this requirement will not be able to pass the unit, regardless of their overall mark.
This hurdle can be quite daunting, but we will are here to work with you and help you succeed.
We will provide the learning materials, guidance, and any support you need, and it is your responsibility to keep up with the content each week and ask us questions if there is something that isn’t quite making sense yet.
The combination of some data and an aching desire for an answer does not ensure that a reasonable answer can be extracted from a given body of data.
– John Tukey (1915 – 2000)
# Load required packages
library(gapminder) # Dataset of country statistics over time
library(gganimate) # For creating animations in ggplot
library(tidyverse) # Collection of data science packages
# Create an animated plot showing how life expectancy relates to GDP
# across different continents over time
ggplot(
gapminder,
aes(gdpPercap, lifeExp, # GDP per capita vs life expectancy
size = pop, # Point size represents population
colour = country
)
) + # Each country gets its own color
geom_point(
alpha = 0.7, # Semi-transparent points
show.legend = FALSE
) + # Hide legend for cleaner look
scale_colour_manual(values = country_colors) +
scale_size(range = c(2, 12)) + # Set min/max point sizes
scale_x_log10() + # Log scale for GDP (wide range)
facet_wrap(~continent) + # Separate plot for each continent
labs(
title = "Year: {frame_time}",
x = "GDP per capita",
y = "Life expectancy"
) +
transition_time(year) + # Animate through years
ease_aes("linear") # Smooth transitions## Quarto
- Marjority of our resources are built using [**Quarto**](https://quarto.org/) -- a markdown-based document format that **you will learn to use** in this unit
- Lecture slides
- Lab exercises
- Quarto makes everything **reproducible** - what does it mean?
- Free and open source, available on the [ENVX resources](https://github.com/ENVX-resources) GitHub repository -- re-use and modify as you wish (but follow [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/))This unit does not have a required textbook, but we do draw from a range of resources, including:
There is an updated edition of this book, but we will mostly be drawing from the 2002 edition this year.
These texts are available through the library, or in Canvas via the Reading List, which can be found on the left hand navigation bar in Canvas.
Statbot is an AI-powered chatbot designed to assist you with any questions you may have about coding, statistical concepts, or even provide practice exam questions.
Access the bot here or in Canvas: Statbot
Tomorrow: Lecture (2h) – see you there!
This presentation is based on the SOLES Quarto reveal.js template and is licensed under a Creative Commons Attribution 4.0 International License.