Add exploratory data analysis (#1)

* feat: name processing added, first name/last name/post name extraction and display of top 10 first names

* [FIX] Fix path in __init__.py and modify name analysis

---------

Co-authored-by: Bernard Ngandu <31113941+bernard-ng@users.noreply.github.com>
This commit is contained in:
1Cansa
2025-06-20 16:41:06 +02:00
committed by GitHub
parent 1d58e3ccc4
commit c829cac51c
3 changed files with 237 additions and 1 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ from datetime import datetime
from typing import Optional
# Paths
ROOT_DIR = os.getcwd()
ROOT_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
DATA_DIR = os.path.join(ROOT_DIR, 'dataset')
MODELS_DIR = os.path.join(ROOT_DIR, 'models')