I've generated a lot of numbers using Python, saving them in a list, and now I want to plot them in a scatter graph and a bar graph to see the patterns of the function that I created.
I'm getting numbers from 0 to 99,999,999 at maximum, I tried to plot but I failed.
In the bar graph the y axis should show how many times a number repeated itself in the range of the numbers generated and the x axis the number itself.
I tried to use the method collections.counter
but it keeps returning me a dict with all the numbers that appeard at least one time in the list, instead of the ones that just repeated, with the data of the numbers that repeated I think I could plot the graph properly.
Image showing the data that i get from the function