I want to count the frequency of rows from a column and with the frequency greater than 3, I want to populate an array with those rows.
For example:
402 Sony
403 Sony
404 Sony
405 ZTE
406 ZTE
407 ZTE
408 ZTE
409 ZTE
Desired array:
[
"ZTE",
"ZTE",
"ZTE",
"ZTE",
"ZTE"]