I have a bunch of people working under me. I give them some tasks to complete on a regular basis. Some of the tasks are time bound and some aren't.
I want to find a "measure" that best captures the response time of each employee. Finally based on this measure I want to see who is the best and...
I want to compute mode of the following distribution in R.
But i think my procedure is not correct to compute it .
f <- function(x)(3/7)*x^2 #1<x<2
x=seq(1,2,length=5000)
y = f(x)
d = data.frame(x,y)
d$x[d$y==max(d$y)]
I'm struggling to find the appropriate solution to a project that I'm working on. I am trying measure the variability of lead time on products that we purchase I can't figure out what an appropriate calculation would be. Below are some of the details.
- I'm trying to compare vendors. Some...