IBM / AutoMLPipeline.jl

A package that makes it trivial to create and evaluate machine learning pipeline architectures.
MIT License
355 stars 29 forks source link

remove the warnings in tutorials #63

Closed dnabanita7 closed 4 years ago

dnabanita7 commented 4 years ago
┌ Warning: `eachcol(df::AbstractDataFrame, names::Bool)` is deprecated, use `if names
│     collect(pairs(eachcol(df)))
│ else
│     eachcol(df)
│ end` instead.
│   caller = top-level scope at REPL[15]:1
└ @ Core REPL[15]:1

I find this warning using eachcol() at the tutorial page. This feature is deprecated to eachcol(df::AbstractDataFrame, names::Bool).

ppalmes commented 4 years ago

ok. would you like to fix it by making a PR? just edit the file containing the tutorial.

dnabanita7 commented 4 years ago

alright!