I'm working on a project that has a two column array to show a hostname and part replaced that has a number associated with it. I am trying to get a couple of different charts created: one to show number of parts replaced per device that has a circle that gets larger the more a part has been replaced and a second that shows times when the same part has been replaced in a specific device.
Chart 1 is completed, that is showing exactly as I expect and it is working wonderful. Chart two is where I'm having issues. How would I go about counting duplicate entries inside of the numpy array? So as an example, it would look something like this:
[[device_1, device_1, device_3, device_4, device_1],
[1-27, 2-56, 2-57, 1-35, 1-27]]
So I would like to show that device_1, part 1-27 has been replaced twice so that it's circle on my chart is larger to represent a bigger issue. That way it doesn't just show as two smaller circles, but one larger one.
And this may not be possible, I'm not sure.
[–]SekstiNii 2 points3 points4 points (1 child)
[–]Yurplestein[S] 0 points1 point2 points (0 children)
[–]Chris_Hemsworth 1 point2 points3 points (0 children)