-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatasett.py
53 lines (49 loc) · 1.12 KB
/
datasett.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
"""
Created on Sat Mar 31 12:03:28 2018
@author: J N BALAKUMARAN
"""
dataset={
"Alumni1":
{
'mfcs':3,
'ppl':3,
'stat':4,
'csa':3,
'ds':3,
'python':4.5
},
"Alumni2":
{
'mfcs':3,
'ds':3,
'ppl':4,
'stat':4,
'csa':3,
'python':3.5
},
"Alumni3":
{
'mfcs':4,
'ds':3,
'ppl':2,
'stat':3,
'csa':3,
'python':4.5
},
"Alumni4":
{
'mfcs':3.5,
'ds':3.5,
'ppl':2,
'csa':3,
'python':4.5
},
"Alumni5":
{
'mfcs':2.5,
'stat':3,
'ppl':2,
'csa':3
}
}