Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dcd981 commit c40b80fCopy full SHA for c40b80f
src/main/java/com/github/lwhite1/tablesaw/api/CategoryColumn.java
@@ -260,8 +260,9 @@ public void add(String stringValue) {
260
* Initializes this Column with the given values for performance
261
*/
262
public void initializeWith(IntArrayList list, DictionaryMap map) {
263
- values = list;
264
- lookupTable = map;
+ for (int key : list) {
+ add(map.get(key));
265
+ }
266
}
267
268
/**
0 commit comments