lizard_habitat | R Documentation |
Data on here lizard was observed and the level of sunlight. The data are collected on Sceloporus occidentalis (western fence lizards) by Stephen C. Adolph in 1983 (in desert and mountain sites) and by Dee Asbury in 2002-3 (in valley site).
lizard_habitat
A data frame with 332 observations on the following 2 variables.
Site of lizard observation: desert
, mountain
, or valley
.
Sunlight level at time of observation:
sun
(lizard was observed perching in full sunlight),
partial
(lizard was observed perching with part of its body in the sun, part in the shade),
shade
(lizard was observed perching in the shade).
Adolph, S. C. 1990. Influence of behavioral thermoregulation on microhabitat use by two Sceloporus lizards. Ecology 71: 315-327. Asbury, D.A., and S. C. Adolph. 2007. Behavioral plasticity in an ecological generalist: microhabitat use by western fence lizards. Evolutionary Ecology Research 9:801-815.
library(ggplot2)
# Frequencies
table(lizard_habitat)
# Stacked bar plots
ggplot(lizard_habitat, aes(y = site, fill = sunlight)) +
geom_bar(position = "fill") +
labs(x = "Proportion")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.