We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4be99a0 commit 52efca3Copy full SHA for 52efca3
1 file changed
src/DataFrame/DataFrame.class.st
@@ -159,12 +159,6 @@ Class {
159
#category : #'DataFrame-Core'
160
}
161
162
-{ #category : #defaults }
163
-DataFrame class >> defaultNormalizer [
164
-
165
- ^ AIMinMaxNormalizer
166
-]
167
168
{ #category : #'instance creation' }
169
DataFrame class >> new: aPoint [
170
@@ -1366,7 +1360,7 @@ DataFrame >> normalized [
1366
1360
"This methods returns a new DataFrame, without altering this one, that has all the columns normalized."
1367
1361
1368
1362
| normalizers normalizedColumns |
1369
- normalizers := (1 to: self anyOne size) collect: [ :e | self class defaultNormalizer new ].
1363
+ normalizers := (1 to: self anyOne size) collect: [ :e | self class defaultNormalizerClass new ].
1370
1364
1371
1365
normalizedColumns := self columns
1372
with: normalizers
0 commit comments