-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser_data.pl
More file actions
72 lines (72 loc) · 1.93 KB
/
Copy pathuser_data.pl
File metadata and controls
72 lines (72 loc) · 1.93 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
% Collected Data
name('john').
age('john', 21).
gender('john', 'M').
resident('john', 'Y').
transfer('john', 'Y').
type('john', 'U').
year('john', 1).
school('john', 4).
gpa('john', 3.5).
monthly_budget('john', 5000.0).
percent_food('john', 1500.0).
percent_transportation('john', 1000.0).
percent_entertainment('john', 1000.0).
percent_savings('john', 1500.0).
monthly_food('john', 1500.0).
monthly_transportation('john', 800.0).
monthly_entertainment('john', 500.0).
monthly_savings('john', 2200.0).
tuition_per_sem('john', 8000.0).
rent('john', 2000.0).
meal_plan_price('john', 900.0).
ideal_college_expense('john', 10000.0).
scholarships('john', 2500.0).
% Collected Data
name('bob').
age('bob', 19).
gender('bob', 'M').
resident('bob', 'N').
transfer('bob', 'N').
type('bob', 'G').
year('bob', 1).
school('bob', 6).
gpa('bob', 2.9).
monthly_budget('bob', 5000.0).
percent_food('bob', 1500.0).
percent_transportation('bob', 1000.0).
percent_entertainment('bob', 1000.0).
percent_savings('bob', 1500.0).
monthly_food('bob', 2000.0).
monthly_transportation('bob', 1500.0).
monthly_entertainment('bob', 1230.0).
monthly_savings('bob', 500.0).
tuition_per_sem('bob', 5000.0).
rent('bob', 2000.0).
meal_plan_price('bob', 1000.0).
ideal_college_expense('bob', 6000.0).
scholarships('bob', 0.0).
% Collected Data
name('alice').
age('alice', 20).
gender('alice', 'F').
resident('alice', 'Y').
transfer('alice', 'N').
type('alice', 'U').
year('alice', 4).
school('alice', 3).
gpa('alice', 4.0).
monthly_budget('alice', 5000.0).
percent_food('alice', 1500.0).
percent_transportation('alice', 1000.0).
percent_entertainment('alice', 1000.0).
percent_savings('alice', 1500.0).
monthly_food('alice', 1800.0).
monthly_transportation('alice', 200.0).
monthly_entertainment('alice', 500.0).
monthly_savings('alice', 2000.0).
tuition_per_sem('alice', 7000.0).
rent('alice', 2000.0).
meal_plan_price('alice', 800.0).
ideal_college_expense('alice', 9000.0).
scholarships('alice', 1500.0).