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

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