serv {WeibullR.learnr} | R Documentation |
Serviceability.
serv(serviceTime, totalTime)
serviceTime |
Service Time. A numeric value representing the service time or a numeric vector of service 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 serviceability factor for a given period.
service <- 900
total <- 1000
serv(service, total)