Re: Regression with wrapper3
Peter Reutemann <[email protected]>
| Newsgroups | gmane.comp.ai.weka |
|---|---|
| Message-ID | <CAHoQ12L=rLocVyNiJNG8FAASUcrhukLq2UPD=wwzXQSLkLah5Q@mail.gmail.com> |
> Another question, how can I forecast two attributes? as target attributes. > > My current code has this line > > forecaster.fields_to_forecast = "lat" > > However, I would like to add "lng" too You can either supply a comma-separated list or a list comprised of strings: forecaster.fields_to_forecast = "lat,lng" or forecaster.fields_to_forecast = ["lat", "lng"] Cheers, Peter -- Peter Reutemann Dept. of Computer Science University of Waikato, NZ +64 (7) 577-5304 http://www.cms.waikato.ac.nz/~fracpete/ http://www.data-mining.co.nz/ _______________________________________________ Wekalist mailing list -- [email protected] Send posts to [email protected] To unsubscribe send an email to [email protected] To subscribe, unsubscribe, etc., visit https://list.waikato.ac.nz/postorius/lists/wekalist.list.waikato.ac.nz List etiquette: http://www.cs.waikato.ac.nz/~ml/weka/mailinglist_etiquette.html