We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34b1a23 commit 62a6742Copy full SHA for 62a6742
braininventory/get.py
@@ -97,6 +97,15 @@ def report():
97
report['locations'] = __get_locations(df)
98
99
report['is_reachable'] = df['URL'].apply(__is_reachable)
100
+import pandas as pd
101
+def technique_frequency(df):
102
+ number_of_techniques = len(_get_technique_(df))
103
+ print("Number of Techniques: ",number_of_techniques )
104
+ technique_counts = df['technique'].value_counts()
105
+ for technique, count in technique_counts.items():
106
+ print(f"Technique: {technique}, Count: {count}")
107
+
108
+print(technique_frequency(df))
109
110
return report
111
0 commit comments