Association Discovery with the BigML Dashboard

9.3 Using Associations via the BigML Bindings

You can also create and use associations via the BigML bindings, which are libraries aimed to make it easier to use the BigML REST API from your language of choice. BigML offers bindings for a number of languages, including: Python, Node.js, Java, Swift or Objective-C. See below an example to create a dataset with the Python bindings:

from bigml.api import BigML
api = BigML()
association = api.create_association('dataset/4f66a80803ce8940c5000006')

For more information on using associations through the BigML bindings, please refer to the BigML bindings page.