bigml-package: R bindings for BigML API

Description Details Author(s) Examples

Description

Package: bigml
Type: Package
Version: 0.1-1
Date: 20012-04-30
License: GPL (>= 2)
LazyLoad: yes

Details

A set of methods that enable straightforward usage of the BigML API. The methods use R idioms and native datatypes where appropriate, while also providing access to more conventional API usage.

Author(s)

Leon Hwang hwang@bigml.com

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
## Not run: 
	# set default credentials
	setCredentials('username', 'key')
	model = quickModel(iris, 'Species')
	quickPrediction(model, c(Petal.Width=0.2, Petal.Length=1.4))

	# use specific credentials
	quickPrediction(model, c(Petal.Width=0.2, Petal.Length=1.4),
    username='someuser', api_key='somekey')

	# list most recent sources
 listSources()

	# specify limit and offset
 listModels(limit=15,offset=300)

	# specify filter criteria
 listDatasets(size__gt=1048576)

## End(Not run)

bigml documentation built on May 2, 2019, 2:06 a.m.