Projects
This page highlights some of my work from classes and research.
π± Soil Bioturbation
Click to expand
Geologic Nitrogen Inputs to Semi-Arid Soils with and without Mammalian Bioturbation
Authors: Rebecca Martinez, Riley Howard, Heath Goertzen, Nina Bingham, Iris Holzer
Nitrogen is a critical nutrient for plant productivity and ecosystem health, but not all sources of nitrogen are well understood. One such poorly understood source is nitrogen trapped in rocks, which can be released into soils and then used by plants and other organisms. This study examines nitrogen in rocks and its movement into soils in a climate from which we have limited data: semi-arid Mediterranean ecosystems. Some of these ecosystems include mammals that mix the soil, like gophers, which may play a role in moving nitrogen from rocks higher up in the soil. We measured nitrogen in rocks at two Central California sites, with and without these mammals, and found a wide range of nitrogen concentrations across different rock types. Additional soils data will allow for a more detailed assessment of the movement of nitrogen from rocks into soils across these two sites, helping us to better understand nutrient dynamics in these semi-arid ecosystems.
π£οΈοΈ Edible Trail Proposal
Click to expand
University of California, Santa Barbara (UCSB)
ENVS 155 β Built Environment
An artistic proof-of-concept proposal for transforming underused green spaces in Lompoc into edible walking trails that promote community connection, health, and sustainability. This fictional concept was created as a final project and is not an actual or funded plan.
Project Highlights
- Community-centered design incorporating native and edible plants
- Safe walking paths with shade, seating, and public art
- Hands-on workshops and volunteer planting days
- Interactive timeline and map for project phases and locations
Tools Used
Quarto, HTML, CSS, Leaflet.js, Community Engagement Frameworks
View Project
Note: This is a fictional concept for academic purposes only.
Resources
π‘ Service Lights
Click to expand
University of California, Santa Barbara (UCSB)
ENVS 193DS β Data Science for Environmental Studies
A class project that explores the relationship between lighting conditions (working vs. broken) and service call outcomes (needing help or not) using a self-collected dataset (n=108). Created a bar chart, summary table, and a blinking lightboard animation (gif). See visuals.
Tools Used
RStudio (tidyverse, here, flextable, janitor, ggtext, ggfx, gganimate, showtext), Quarto
Code Snippet
This converts help and working columns in service_data to TRUE/FALSE values by making their text uppercase and then to logical type, then saves the result as a new object called clean_service_data.
<- service_data |>
clean_service_data mutate(
help = as.logical(toupper(help)),
working = as.logical(toupper(working))
)
Visuals
Resources
π¦ Rough Skinned Newt vs. Garter Snake
Click to expand
Allan Hancock College
BIOL 155 β Zoology
Collaborative video project with Darlene Vera, with help from friends in the Department of Fine Arts.
The co-evolution of toxin production in rough-skinned newts and toxin resistance in garter snakes served as the focus of a short film designed to make complex science accessible. The project combined storytelling, visual art, and evolutionary biology to communicate this dynamic relationship.
Tools Used
Scriptwriting, Storyboarding, Filmmaking, Adobe Premiere (editing)
Watch the Video
π¦ Species & Functional Richness Comparison
Click to expand
UCSB-Smithsonian Scholars Program
Advanced Field Research Training at the Smithsonian Tropical Research Institute (STRI) in Panama, Summer 2023
Final project from an immersive data science and field course. This project compares species richness and functional richness of bird communities between Barro Colorado Island (BCI) and Pipeline Road (mainland Panama). We used autonomous recorders (AudioMoths) and avian trait databases to examine diversity patterns in two distinct habitats. Results reflect learning outcomes rather than comprehensive biodiversity assessments.
Project Team
The Orependulas
Brandon Leon, Rebecca Martinez, Daniel Romero, Mathew Silva, and Zachary Wilson.
Tools Used
- AudioMoths
- RStudio (tidyverse, mFD, phytools)
- BirdNET-Analyzer (Cornell Lab of Ornithology)
- AVONET β Comprehensive bird trait dataset
- Birds of Panama β BirdLife International
Process
β Deployed 12 AudioMoths to record dawn chorus
β Conducted point counts for visual confirmation
β Analyzed 24 audio files using BirdNET-Analyzer
β Combined detections with trait data from AVONET and Birds of Panama
β Created visualizations in RStudio
Code Snippet
Code for species richness bar graph.
<- bind_rows(pipeline_found_joined, bci_birds_joined)
merged_df
<- merged_df %>%
merged_df mutate(location = ifelse(row_number() <= 26, substr(location, 1, 4), location)) %>%
mutate(location = ifelse(row_number() >= 27 & row_number() <= 66, substr(location, 1, 3), location))
<- merged_df %>%
family_count group_by(Family, location) %>%
summarize(num_species = n())
ggplot(family_count, aes(x = Family, y = num_species, fill = location)) +
geom_bar(stat = "identity", position = "dodge") +
labs(title = "Number of Species by Family and Location",
x = "Family",
y = "Number of Species") +
theme_minimal() +
scale_y_continuous(breaks = seq(0, max(family_count$num_species), 1)) +
theme(axis.text.x = element_text(angle = 75, hjust = 1), axis.text = element_text(size = 8))
Visuals
Under constructionβ¦
Poster
Presented findings at the 2023 Cal Poly Summer Internship Research Symposium and the 2023 UCSB Fall Undergraduate Research Showcase.
Poster
Presented findings at the 2023 Cal Poly Summer Internship Research Symposium and the 2023 UCSB Fall Undergraduate Research Showcase.