Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 993 Bytes

Get Dataset.md

File metadata and controls

25 lines (21 loc) · 993 Bytes

Get Dataset

Data Sets help structure information on WikiRate by combining Companies and Metrics associated with a particular Topic or theme.

This example assumes you have configured your Wikirate REST client. Instructions on how to configure a client can be found in examples/Configurations.md

The get_dataset method take as an input either the dataset name or the dataset's identifier.

# get a dataset by name, returns a Dataset object
dataset = client.get_dataset("Tea Transparency Tracker")
# the set of companies the dataset includes
companies = dataset.companies
# the set of metrics the dataset includes
metrics = dataset.metrics
# the answers the dataset includes
answers = dataset.answers
# prints the dataset as a json
puts dataset.to_json
# prints the raw json response
puts company.raw_json
# get a dataset by id, returns a Dataset object
dataset = client.get_dataset(8543400)