Installation
Installing
heatindex
with R or PythonInstallation in R or Python is simple.
# From inside R, run:
install.packages("heatindex")
# At the terminal, run:
pip install heatindex
So is loading heatindex
and calculating the heat index.
library(heatindex)
heatindex(300,0.5)
import heatindex as hi
hi.heatindex(300,0.5)
That is all there is to it. But, if you need to see another example, check out Examples.