This commit is contained in:
2026-02-25 13:14:56 +09:30
parent 3eb0d1f1e4
commit 315bafd6dc
32 changed files with 350 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
user_id,timestamp,page_depth,dwell_time,session_id
1,2026-01-15 09:15:00,5,120,101
1,2026-02-01 10:20:00,3,90,102
2,2025-12-20 14:10:00,4,60,201
2,2026-02-10 08:50:00,6,180,202
3,2026-01-05 12:30:00,2,30,301
4,2026-01-25 16:45:00,3,60,401
5,2025-08-01 11:00:00,5,150,501
6,2026-01-30 09:00:00,4,120,601
7,2025-09-15 17:10:00,2,45,701
1 user_id timestamp page_depth dwell_time session_id
2 1 2026-01-15 09:15:00 5 120 101
3 1 2026-02-01 10:20:00 3 90 102
4 2 2025-12-20 14:10:00 4 60 201
5 2 2026-02-10 08:50:00 6 180 202
6 3 2026-01-05 12:30:00 2 30 301
7 4 2026-01-25 16:45:00 3 60 401
8 5 2025-08-01 11:00:00 5 150 501
9 6 2026-01-30 09:00:00 4 120 601
10 7 2025-09-15 17:10:00 2 45 701

8
sample_data/crm.csv Normal file
View File

@@ -0,0 +1,8 @@
user_id,email,birth_date,gender,consent_flag
1,alice@gmail.com,1990-02-17,F,True
2,bob@yahoo.com,1985-07-05,M,True
3,charlie@tempmail.com,2000-11-21,M,False
4,dana@outlook.com,1992-05-30,F,True
5,eric@mailinator.com,1988-09-10,M,True
6,frank@gmail.com,1995-12-01,M,True
7,grace@no-reply.com,1993-03-15,F,True
1 user_id email birth_date gender consent_flag
2 1 alice@gmail.com 1990-02-17 F True
3 2 bob@yahoo.com 1985-07-05 M True
4 3 charlie@tempmail.com 2000-11-21 M False
5 4 dana@outlook.com 1992-05-30 F True
6 5 eric@mailinator.com 1988-09-10 M True
7 6 frank@gmail.com 1995-12-01 M True
8 7 grace@no-reply.com 1993-03-15 F True