Learn R Programming

R330 (version 1.0)

evap.df: Moisture evaporation data

Description

The purpose was to see if the amount of evaporation could be predicted by the temperature humidity and wind speed

Usage

data(evap.df)

Arguments

Format

A data frame with 46 observations on the following 11 variables:
avst
average soil temperature over 24 hour period (x10)
minst
minimum soil temperature over 24 hour period (x10)
maxst
maximum soil temperature over 24 hour period (x10)
avat
average air temperature over 24 hour period (x10)
minat
minimum air temperature over 24 hour period (x10)
maxat
maximum air temperature over 24 hour period (x10)
avh
average humidity over 24 hour period (x10)
minh
minimum humidity over 24 hour period (x10)
maxh
maximum humidity over 24 hour period (x10)
wind
average wind speed over a 24 hour period (x100)
evap
amount of evaporation over 24 hour period

Examples

Run this code
data(evap.df)
evap.lm<-lm(evap~avat+avh+wind,data=evap.df)
summary(evap.lm)

Run the code above in your browser using DataLab