50% off | Unlimited Data & AI Learning
Get 50% off unlimited learning

fuzzyreg (version 0.6.2)

bats: Temperature Data of Hibernating Bats and Climate at Site

Description

Body surface temperature of multiple species of hibernating bats and mean annual surface temperature at the hibernation site.

Usage

data(bats)

Arguments

Format

A data frame with 528 rows and two variables:

MAST

numeric Mean annual surface temperature at the site in degrees Celsius

temperature

numeric Body surface temperature of hibernating bats in degrees Celsius

Examples

Run this code
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")

Run the code above in your browser using DataLab