In recent decades, the United States of America has been in a conflict with invasive species. Some of the current invaders inflicting the country today are freshwater bivalves. These mollusks compete with native animals and can damage local ecosystems. Not only that, but they have an economic impact as well, since they can clog pipes for drains and water facilities. This article seeks to examine three species, which include:
The zebra mussel and quagga mussel are similar looking species that both originate from Eastern Europe. However, zebra mussels have a much more flatter side to their shells and have been in the United States longer than their quagga counterparts. Their impact on the USA is similar as well. Both are notorious for clogging human water structures, such as pipes and turbines. They also out compete local species in consuming phytoplankton and cause the water toxicity to rise.
Freshwater Golden Clam
The golden clam originates from Southern Asia and is known for its typical pale yellow shell. Like the zebra and quagga mussels, it can cause damage to human property by clogging pipes and turbines. However, it’s effect on local specie populations and biodiversity is quite minimal.
Analysis
Detection Trends Over Time
Looking at the number of detections for these invasive species gives us a good idea on how their populations have changed over time. In the graph below, we see that historically the golden clam has outperformed the other species in terms of numbers. The quagga mussel, which is a more newly introduced species, has the smallest population of the three.
We also see that after all three species experienced a spike in population growth, that their detection numbers are on a downward trend. Whether this is due to actual population decrease or relaxed detection methods isn’t known.
Show the code
# color palletebivalve_pallette <-c("5"="#8F4444", "95"="#060303", "92"="#A99E26")# plotting trend of invasive populations over the decadesggplot(year.x.bv, aes(x=Year, y=Count, col=as.factor(Species.ID))) +geom_point() +geom_smooth(method ="loess", se =FALSE) +scale_color_manual(values = bivalve_pallette) +scale_y_continuous(n.breaks =8) +labs(title ="Invasive Species Sightings Across The Years",y ="Detections")+theme_bw() +theme(panel.border =element_blank(),axis.ticks =element_blank(),legend.position ="Null",axis.title.x =element_blank())+annotate("text", x=2003, y=300, label="Zebra Mussel", color ="#8F4444")+annotate("text", x=1995, y=75, label="Quagga Mussel", color ="#060303")+annotate("text", x=2007, y=700, label="Golden Clam", color ="#A99E26")
Where Are They Now?
It’s also important that we know where these creatures are currently. Looking at data since 2020, we were able to create an interactive map which shows the locations of populations based on where they were detected. Immediately, we are drawn to the North Eastern United States, where we see an abundance of zebra mussel and golden clam detections. There are even heavy spikes of quagga mussel detections in that region as well.
Show the code
# creating interactive map of invasive populations since 2020leaflet() %>%addTiles(group ="OSM (default)") %>%addProviderTiles(providers$Esri.WorldImagery, group ="World Imagery") %>%setView(lng =-100, lat =40, zoom =3.5) %>%addPolygons(data = states,color ="#2E8B57", weight =3, fill =FALSE,group ="State Borders") %>%addCircles(data = zm.map.bivalv, color ="#8F4444",group ="Zebra Mussel",weight =7) %>%addCircles(data = qm.map.bivalv, color ="#060303",group ="Quagga Mussel",weight =7) %>%addCircles(data = gc.map.bivalv, color ="#A99E26",group ="Golden Clam",weight =7) %>%addLayersControl(baseGroups =c("OSM (default)", "World Imagery"),overlayGroups =c("State Borders","Zebra Mussel","Quagga Mussel","Golden Clam"),options =layersControlOptions(collapsed =FALSE) )
The Most Inflicted States
After taking the data from the map, we can see which states are the most currently afflicted in the USA. Right now, the top state is New York, with a total of 298 detections of all three species since 2020. A majority of these come from zebra mussels, where they were observed 237 times. Zebra mussels as a whole are consistently heavily observed in a lot of states.
Show the code
# pivot count dataset for presentingpivot.bivalv <- count.bivalv %>%pivot_wider(names_from = Common.Name, values_from = Count)# create table of countspander(pivot.bivalv)
State
Total.Count
freshwater golden clam
quagga mussel
zebra mussel
NY
298
50
11
237
PA
109
95
NA
14
MN
100
8
NA
92
IL
72
62
1
9
TX
68
NA
2
66
MI
56
17
16
23
Conclusion
In conclusion, we’ve been observing a general decrease in sightings of these invasive species, which can be interpreted as a good thing. However, we still see indications of heavy populations of zebra mussels and freshwater golden clams in areas like New York. These populations could rebound and reverse the trend, causing more damage to the USA. The quagga mussel is also a newer specie and should be watched over in case it firmly establishes a large population base.