| bats | R Documentation |
Body surface temperature of multiple species of hibernating bats and mean annual surface temperature at the hibernation site.
data(bats)
A data frame with 528 rows and two variables:
MASTnumeric Mean annual surface temperature at the site in degrees Celsius
temperaturenumeric Body surface temperature of hibernating bats in degrees Celsius
Martinkova, N., Pikula, J., Zukal, J., Kovacova, V., Bandouchova, H., Bartonicka, T., Botvinkin, A.D., Brichta, J., Dundarova, H., Kokurewicz, T., Irwin, N.R., Linhart, P., Orlov, O.L., Piacek, V., Skrabanek, P., Tiunov, M.P. and Zahradnikova, A., Jr. (2018) Hibernation temperature-dependent Pseudogymnoascus destructans infection intensity in Palearctic bats. Virulence 9: 1734-1750.
Hijmans, R.J., Cameron, S.E., Parra, J.L., Jones, P.G. and Jarvis, A. (2005) Very high resolution interpolated climate surfaces for global land areas. International Journal of Climatology 25: 1965-1978.
data(bats)
# remove outlier
dat <- bats[!(bats$MAST < 0 & bats$temperature > 7), ]
# fuzzy linear regression model as published
fit <- fuzzylm(temperature ~ MAST, data = dat, method = "plrls", h = 0.01, k1 = 5)
plot(fit, res = 30, col = "orange")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.