getColumn()

getColumn()

getColumn(name)

Retrieves a variable from the Datavyu spreadsheet and assigns it to a Ruby object using print_debug().

Parameter

Type

Description

name

String

The name of the Datavyu column you wish to retrieve

Returns

A Ruby object representation of the Datavyu column.

Example

The following example retrieves the Datavyu column “trial” and assigns it to a Ruby variable called trial.

require 'Datavyu_API.rb'
begin
   trial = getColumn("trial")
end