Method: Datasets::Iris#initialize
- Defined in:
- lib/datasets/iris.rb
#initialize ⇒ Iris
Returns a new instance of Iris.
13 14 15 16 17 18 19 20 21 22 |
# File 'lib/datasets/iris.rb', line 13 def initialize super() .id = "iris" .name = "Iris" .url = "https://archive.ics.uci.edu/ml/datasets/Iris" .licenses = ["CC-BY-4.0"] .description = lambda do read_names end end |