-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatic.py
35 lines (28 loc) · 878 Bytes
/
static.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
import os
if not os.path.exists("graph"):
os.makedirs("graph")
# CSV dosyasını yükle
data = pd.read_csv("data/test.csv")
# Veri çerçevesini incele
print(data.info())
print(data.describe())
# İlk 5 satırı görüntüle
print(data.head())
# Sınıflandırma için etiket sayısını görselleştir
plt.figure(figsize=(8, 5))
sns.countplot(x='Label', data=data)
plt.title('Distribution of Labels')
plt.savefig("graph/label_distribution.png")
plt.show()
# Sorgu uzunluklarını hesapla ve görselleştir
data['query_length'] = data['Query'].apply(len)
plt.figure(figsize=(10, 6))
sns.histplot(data['query_length'], bins=20, kde=True)
plt.title('Distribution of Query Lengths')
plt.xlabel('Query Length')
plt.ylabel('Frequency')
plt.savefig("graph/query_length_distribution.png")
plt.show()