I want to create a program to help me with the statistics, but I'm having problems from the beginning and I'm making a huge mess to calculate the relative frequency of an array with random numbers and only one dimension.
For example to generate these numbers:
{3, 5, 5, 2, 4, 1, 3, 5, 4}
I want that the program tell me that the 3 is repeated 2 times, the 4 3 times and 5 5 times
I've created a class to sort these values in order to calculate the median, the first and third quartile, but I still do not know how to find the frequency in order to calculate other values
Thanks for your time
PS: Do not know if this affects anything but I'm using netbeans

Map<Integer,Integer>– MrSmith42 Jan 10 at 20:52