Dataset

Datasets available in a EUROMOD country model.

Description

example

D = Dataset(Country) create a class array with the Country default datasets.

This class contains the datasets implemented in a Country model. It is stored as property datasets of the country class.

This class is the superclass of the DatasetInSystem class.

Examples

collapse all

Dataset loads all the datasets configured in a Country by default.

mod = euromod("C:\EUROMOD_RELEASES_I6.0+");
D=Dataset(mod.countries("AT"));
D  
27×1 Dataset array:

        1: training_data
        2: AT_2008_a8
        3: AT_2010_a4
        4: AT_2012_a8
        5: AT_2014_a6
        6: AT_2014_hhot
        7: AT_2015_hhot
        8: AT_2009_hhot
        9: AT_2010_hhot
       10: AT_2011_hhot
       11: AT_2012_hhot
       12: AT_2013_hhot
       13: AT_2016_hhot
       14: AT_2017_hhot
       15: AT_2015_a3
       16: AT_2016_a3
       17: AT_2018_hhot
       18: AT_2017_a3
       19: AT_2019_hhot
       20: AT_2018_a1
       21: AT_2020_hhot
       22: AT_2019_b2
       23: AT_2021_hhot
       24: AT_2020_b2
       25: AT_2022_hhot
       26: AT_2021_b1
       27: AT_2023_hhot
    

Display a specific dataset in the Country.

D("AT_2021_b1")  
1×1 Dataset with properties:

       coicopVersion: ""
             comment: ""
            currency: "euro"
         decimalSign: "."
                  ID: "b781f486-9a8a-4704-a9bd-51e5cccec985"
    listStringOutVar: "sid_h sft_h"
                name: "AT_2021_b1"
              parent: [1×1 Country]
             private: "no"
      readXVariables: "no"
    useCommonDefault: "no"
      yearCollection: "2021"
             yearInc: "2020"
    

Input Arguments

collapse all

A specific country from the Country class array.

Data Types: class

Properties

collapse all

Returns the COICOP version.

Example: D(end).coicopVersion

Returns the comment about the dataset.

Example: D(end).comment

Returns the currency of the monetary values in the dataset.

Example: D(end).currency

Returns the decimal delimiter of float values.

Example: D(end).decimalSign

Returns the dataset identifier number.

Example: D(end).ID

Returns the names of variables.

Example: D(end).listStringOutVar

Returns the name of the dataset.

Example: D(end).name

Returns the specific Country class.

Example: D(end).parent

Returns the access type of the dataset.

Example: D(end).private

Returns the loaded variables.

Example: D(end).readXVariables

Returns the use default.

Example: D(end).useCommonDefault

Returns the year of the dataset collection.

Example: D(end).yearCollection

Returns the reference year for the income variables.

Example: D(end).yearInc

Output Arguments

collapse all

A class array with the Country default datasets.

References

[1] Documentation EUROMOD - Tax-benefit microsimulation model for the European Union.

Extended Capabilities

Introduced in R2023a