EVAL

Description

Evaluates the buildingSelector for the given datasetName and returns a GroupedVector, where:

  • The key is the customerBuildingId.

  • The value is a Vector containing all event values from the dataset, grouped by customerBuildingId.

EVAL(Text, AttributeOperator)

POSITION(datasetName: Text, buildingSelector: AttributeOperator): GroupedVector<Text, Vector<Number>>

Parameters

Parameter
Description

datasetName

The datasetName for which we want to load all events for the buildings specified by the buildingSelector.

buildingSelector

The buildingSelector as AttributeOperator which specifies for which buildings we want to load the events specified by datasetName. Valid values are:

Building::IsSelfSufficiencyMotivated Building::IsEcologicalMotivated Building::IsSelfSufficiencyMotivated Building::IsMultiPerson Building::IsSinglePerson Building::IsResidential Building::IsCommercial Building::IsInSameCountry Building::IsInSameConsumptionCategory Building::All

Returns

Returns a GroupedVector where:

  • The key is the customerBuildingId.

  • The values are vectors containing event values, grouped by household as specified in datasetName.

Last updated