class Quandl::Format::Dataset

Public Class Methods

dump(datasets) click to toggle source
# File lib/quandl/format/dataset.rb, line 37
def dump(datasets)
  Dump.collection(datasets)
end
each_in_file(path, &block) click to toggle source
# File lib/quandl/format/dataset.rb, line 25
def each_in_file(path, &block)
  Load.each_in_file(path, &block)
end
each_line(interface, &block) click to toggle source
# File lib/quandl/format/dataset.rb, line 21
def each_line(interface, &block)
  Load.each_line(interface, &block)
end
load(input) click to toggle source
# File lib/quandl/format/dataset.rb, line 29
def load(input)
  Load.string(input)
end
load_from_file(path) click to toggle source
# File lib/quandl/format/dataset.rb, line 33
def load_from_file(path)
  Load.string(File.read(path))
end