-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfoGain.java
156 lines (145 loc) · 4.56 KB
/
InfoGain.java
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
import java.io.*;
import java.util.*;
class InfoGain
{
public static void main(String[] args) throws Exception
{
BufferedReader br=new BufferedReader(new FileReader("C://Users/Shripad/OneDrive/Desktop/class.csv"));
String []str=br.readLine().trim().split(",");
int n=str.length;
ArrayList<ArrayList<String>> l=new ArrayList<>();
while(true)
{
String [] s=new String[n];
try{
s=br.readLine().trim().split(",");
}
catch(NullPointerException e)
{
break;
}
ArrayList<String> temp=new ArrayList<>();
for(int i=0;i<n;i++)
{
temp.add(s[i]);
}
l.add(temp);
}
System.out.println(l);
String[][] array = new String[l.size()][];
for (int i = 0; i < l.size(); i++)
{
ArrayList<String> row = l.get(i);
array[i] = row.toArray(new String[row.size()]);
}
// for(int i=0;i<array.length;i++)
// {
// for(int j=0;j<array[0].length;j++)
// {
// System.out.print(array[i][j]+" ");
// }
// System.out.println();
// }
Map<String,Integer> m=new HashMap<>();
int p=array[0].length;
for(int j=0;j<array.length;j++)
{
String key=array[j][p-1];
if(!m.containsKey(key))
{
m.put(key,1);
}
else
{
m.put(key,m.get(key)+1);
}
}
//finding the parent entropy
int tot=0;
for(Map.Entry<String,Integer> e:m.entrySet())
{
tot+=e.getValue();
}
ArrayList<Double> l1=new ArrayList<>();
for(Map.Entry<String,Integer> e:m.entrySet())
{
l1.add(1.0*e.getValue()/tot);
}
double parent_entropy=0.0;
for(int i=0;i<l1.size();i++)
{
parent_entropy+=-(l1.get(i)*(Math.log(l1.get(i))/Math.log(2)));
}
//finding the entropy of children
double ans=findChildEntropy(array,0);
}
public static double findChildEntropy(String [][] array,int col_no)
{
for(int i=0;i<array.length;i++)
{
for(int j=0;j<array[0].length;j++)
{
System.out.print(array[i][j]+" ");
}
System.out.println();
}
Map<String,Map<String,Integer>> m=new HashMap<>();
int p=array[0].length;
for(int j=0;j<array.length;j++)
{
String key=array[j][col_no];
Map<String,Integer>temp=new HashMap<>();
String key2=array[j][p-1];
if(!m.containsKey(key)&&!temp.containsKey(key2))
{
temp.put(key2,1);
m.put(key,temp);
}
else if(!m.containsKey(key)&&temp.containsKey(key2))
{
temp.put(key2,temp.get(key2)+1);
m.put(key,temp);
}
else if(m.containsKey(key)&&!temp.containsKey(key2))
{
temp.put(key2,1);
m.put(key,temp);
}
else if(m.containsKey(key)&&temp.containsKey(key2))
{
temp.put(key2,temp.get(key2)+1);
m.put(key,temp);
}
// {
// String key2=array[j][p-1];
// if(!temp.containsKey(key2))
// {
// temp.put(key2,1);
// }
// else
// {
// temp.put(key2,temp.get(key2)+1);
// }
// m.put(key,temp);
// }
// else
// {
// String key2=array[j][p-1];
// if(!temp.containsKey(key2))
// {
// temp.put(key2,1);
// }
// else
// {
// temp.put(key2,temp.get(key2)+1);
// }
// m.put(key,temp);
//}
}
for(Map.Entry<String,Map<String,Integer>> e1:m.entrySet())
{
System.out.print(e1.getKey()+" "+e1.getValue());
}
return 0.0;
}
}