mirror of
https://github.com/dkam/decisiontree.git
synced 2025-12-28 07:04:53 +00:00
8 lines
108 B
Ruby
8 lines
108 B
Ruby
module ArrayClassification
|
|
refine Array do
|
|
def classification
|
|
collect(&:last)
|
|
end
|
|
end
|
|
end
|