]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/machine-learning/data-sets/data-sets.factor
core: Change lines -> read-lines, contents -> read-contents, string-lines -> lines
[factor.git] / extra / machine-learning / data-sets / data-sets.factor
index 43ca530341df79119d4e452bde68f58fc0d6ae24..2d38cb4c39717087b15c3dbe1f9e6f226cc1e44d 100644 (file)
@@ -23,7 +23,7 @@ C: <data-set> data-set
     utf8 file-contents ;
 
 : load-tabular-file ( name -- lines )
-    load-file [ blank? ] trim string-lines
+    load-file [ blank? ] trim lines
     [ [ blank? ] split-when harvest ] map harvest ;
 
 : numerify ( table -- data names )