Hi,
I have a log file in which I have two things
functionality and different repositories which use this functionality . I want to calculate average of occurrence of this functionality over each repository.
The name of the functionality is string
Repo 1 A,A,A
Repo 2 A,A,A
Repo 3 A,A,A,A
The output should be
Name of Repo Avg for functionality A
1 0.3
2 0.3
3 0.4
... View more