Datasets with the BigML Dashboard

9.4 Using Datasets via the BigML bindings

You can also create and use datasets 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. You can find an example to create a dataset with the Python bindings below:

from bigml.api import BigML
api = BigML ()
dataset = api.create_dataset('source/50a4527b3c1920186d000041')

For more information on using the BigML Python bindings, please refer to the BigML Python bindings documentation.