avail {WeibullR.learnr} | R Documentation |
Availability.
avail(unavailTime, totalTime)
unavailTime |
Unavailable Time. A numeric value representing the unavailable time or a numeric vector of unavailable times. |
totalTime |
Total Time. A numeric value representing the total time for a given period or a numeric vector of time periods |
The function returns a numeric value representing the availability for a given period.
unavail <- 100
total <- 1000
avail(unavail, total)