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 heatindexSo is loading heatindex and calculating the heat index or the thermodynamic wet-bulb temperature.
library(heatindex)
heatindex(300,0.5)
wetbulb(1e5,300,0.5)import heatindex as hi
hi.heatindex(300,0.5)
hi.wetbulb(1e5,300,0.5)That is all there is to it. But, if you need to see another example, check out Examples.