Files
FH/WS24_25/PyCharm/pythonProject/P3/getData.py
2024-10-13 21:47:50 +02:00

5 lines
113 B
Python

import pandas as pd
df = pd.read_csv('labels.csv')
label_counts = df['Label'].value_counts()
print(label_counts)