I have a list where I want to get percentile.
HashMap<Integer,String> test=new HashMap<Integer,String>();
test.put(100,"Amit");
test.put(101,"Vijay");
test.put(102,"Rahul");
test.put(103,"Amit");
test.put(104,"Vijay");
test.put(105,"Rahul");
Using following formula for percentile, how can I iterate and use properly? i want to get percentile of each keys in hash map
Number of scores blow X*100/N