Skip to content
Advertisement

Calculate how many times the values are repeated inside a dictionary key

I have a dictionary that is created from a select in the database, what I needed was to generate a metric from that dictionary

Dictionary

JavaScript

Exit of the Dict:

JavaScript

Example of metric:

code_client: BRA appears 1x within dictionary

Summing up:

I need to calculate how many times the values are repeated within the KEY = *code_client*

I tried to do it as follows:

JavaScript

Advertisement

Answer

From what I can tell, you need to get a count of each code client in the dictionary. This code will populate the dictionary ct with each code_client as a key, and the number of occurrences as the value of each entry:

JavaScript

EDIT: I would actually recommend using Austin’s answer. It’s effectively doing what I’m doing, but more correctly and succinctly.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement