From 58502510a9ed4951d1d43e6214f3f7fe2bf72199 Mon Sep 17 00:00:00 2001
From: MaiaPelletier <maia.pelletier15@gmail.com>
Date: Mon, 18 Jul 2022 10:08:11 -0400
Subject: [PATCH 01/39] add progress measure testing file

---
 .gitignore                    |   1 +
 sdg/inputs/__init__.py        |   2 +-
 tests/ProgressMeasure_test.py | 324 ++++++++++++++++++++++++++++++++++
 3 files changed, 326 insertions(+), 1 deletion(-)
 create mode 100644 tests/ProgressMeasure_test.py

diff --git a/.gitignore b/.gitignore
index 87e5552c..9595e493 100644
--- a/.gitignore
+++ b/.gitignore
@@ -112,3 +112,4 @@ venv.bak/
 # IDEs
 .vscode
 .DS_Store
+.idea
diff --git a/sdg/inputs/__init__.py b/sdg/inputs/__init__.py
index 69aa705b..1ec5ad0e 100644
--- a/sdg/inputs/__init__.py
+++ b/sdg/inputs/__init__.py
@@ -4,7 +4,7 @@
 from .InputCsvMeta import InputCsvMeta
 from .InputExcelMeta import InputExcelMeta
 from .InputCsvData import InputCsvData
-from .InputYamlMdMeta import InputYamlMdMeta
+# from .InputYamlMdMeta import InputYamlMdMeta #TEMP
 from .InputYamlMeta import InputYamlMeta
 from .InputWordMeta import InputWordMeta
 from .InputSdmx import InputSdmx
diff --git a/tests/ProgressMeasure_test.py b/tests/ProgressMeasure_test.py
new file mode 100644
index 00000000..e4742046
--- /dev/null
+++ b/tests/ProgressMeasure_test.py
@@ -0,0 +1,324 @@
+# TODO: Re-write docstrings
+# TODO: create more tests
+# import pandas as pd
+import yaml
+import sys
+import sdg
+import os
+
+
+
+
+def measure_indicator_progress(indicator):
+    """Assigns year values and determines methodology to be run.
+
+    Args:
+        indicator: str. Indicator number for which the data is being read.
+    """
+
+    data = indicator.data    # get indicator data
+    print(data)
+
+    config = indicator.meta  # get configurations
+    print(config)
+
+    # check if progress calculation is turned on and if inputs have been configured
+    # return None if auto progress calculation is not turned on
+    print('checking if progress calc is turned on...')
+    if config['auto_progress_calculation']:
+        print('progress calc is turned on. continuing...')
+        if 'progress_calculation_options' in config.keys():
+            print('taking user configured inputs')
+            config = config['progress_calculation_options'][0]
+            print(config)
+    else:
+        print('progress calc is not turned on. exit...')
+        return(None)
+
+    config = config_defaults(config)
+    print(config)
+
+    # get relevant data to calculate progress
+    data = data_progress_measure(data)
+    print(data)
+
+    years = data["Year"]                           # get years from data
+    print(years)
+    current_year = {'current_year': years.max()}   # set current year to be MAX(Year)
+    print(current_year)
+    config.update(current_year)
+    print(config)
+
+    if config['base_year'] not in years.values:          # check if assigned base year is in data
+        print('base year is not in year values')
+        config['base_year'] = years[years > 2015].min()  # if not, assign MIN(Year > 2015) to be base year
+        print('updating base year to ' + str(config['base_year']))
+    print(config)
+
+    # check if there is enough data to calculate progress
+    if config['current_year'] - config['base_year'] < 1:
+        return None
+
+
+    # determine which methodology to run
+    if config['target'] is None:
+        print('updating progress thresholds')
+        config = update_progress_thresholds(config, method=1)
+        print('running methodology 1')
+        output = methodology_1(data=data, config=config)
+
+    else:
+        print('updating progress thresholds')
+        config = update_progress_thresholds(config, method=2)
+        print('running methodology 2')
+        output = methodology_2(data=data, config=config)
+
+    print(output)
+    return(output)
+
+def config_defaults(config):
+    """Set progress calculation defaults and update them from the configuration.
+    Args:
+        indicator: str. Indicator number for which the configuration is from.
+    Returns:
+        dict: Dictionary of updated configurations.
+    """
+
+    # set default options for progress measurement
+    defaults = default_progress_calc_options()
+    defaults.update(config) # update the defaults with any user configured inputs
+
+    # if target is 0, set to 0.001
+    if defaults['target'] == 0:
+        defaults['target'] = 0.001
+
+    return defaults
+
+
+def default_progress_calc_options():
+    return(
+        {
+            'base_year': 2015,
+            'target_year': 2030,
+            'direction': 'negative',
+            'target': None,
+            'progress_thresholds': {}
+        }
+    )
+
+
+def update_progress_thresholds(config, method):
+    """Checks for configured progress thresholds and updates based on methodology.
+    Args:
+        config: dict. Configurations for indicator for which progress is being calculated.
+        method: int. Indicates which methodology is being used. Either 1 or 2.
+    Returns:
+        dict: Dictionary of updated configurations.
+    """
+
+    if ('progress_thresholds' in config.keys()) & (bool(config['progress_thresholds'])):
+        # TODO: Handle potential error inputs
+        print('thresholds are configured')
+        progress_thresholds = config['progress_thresholds']
+
+    elif method == 1:
+        print('thresholds are not configured, use defaults for method1')
+        progress_thresholds = {'high': 0.01, 'med': 0, 'low': -0.01}
+
+    elif method == 2:
+        print('thresholds are not configured, use defaults for method2')
+        progress_thresholds = {'high': 0.95, 'med': 0.6, 'low': 0}
+
+    else:
+        progress_thresholds = {}
+
+
+    print(progress_thresholds)
+    config.update(progress_thresholds)
+    print(config)
+
+    return config
+
+
+def data_progress_measure(data):
+    """Checks and filters data for indicator for which progress is being calculate.
+
+    If the Year column in data contains more than 4 characters (standard year format), takes the first 4 characters.
+    If data contains disaggregation columns, take only the total line data.
+    Removes any NA values.
+    Checks that there is enough data to calculate progress.
+
+    Args:
+        data: DataFrame. Indicator data for which progress is being calculate.
+    Returns:
+        DataFrame: Data in allowable format for calculating progress.
+    """
+
+    # check if the year value contains more than 4 digits (indicating a range of years)
+    print('checking the year column')
+    if (data['Year'].astype(str).str.len() > 4).any():
+        data['Year'] = data['Year'].astype(str).str.slice(0, 4).astype(int)  # take the first year in the range
+
+    # get just the aggregate values from data
+    print('filtering out aggregates (if any)')
+    cols = data.columns.values
+    if len(cols) > 2:
+        cols = cols[1:-1]
+        data = data[data[cols].isna().all('columns')]
+        data = data.iloc[:, [0, -1]]
+    data = data[data["Value"].notna()]  # remove any NA values from data
+
+    # TODO: shape <1 or <2?
+    if data.shape[0] < 1:
+        # TODO: return an empty pandas dataframe? or a None value? what does this do i cant remember
+        print('not enough data')
+        sys.exit()
+
+    return data
+
+
+def growth_calculation(val1, val2, t1, t2):
+    """Calculate cumulative annual growth rate with required arguments.
+
+    Args:
+        val1: float. Current value.
+        val2: float. Value from base year.
+        t1: float. Current year.
+        t2: float. Base year.
+    Returns:
+        float: Growth value.
+    """
+
+    return ( (val1 / val2) ** (1 / (t1 - t2)) ) - 1
+
+
+def methodology_1(data, config):
+    """Calculate growth using progress measurement methodology 1 (no target value).
+
+    Use configuration options to get the current and base value from indicator data and use to calculate growth.
+    Compare growth to progress thresholds to return a progress measurement.
+
+    Args:
+        data: DataFrame. Indicator data for which progress is being calculated.
+        config: dict. Configurations for indicator for which progress is being calculated.
+    Returns:
+        str: Progress measure.
+    """
+
+    direction = str(config['direction'])
+    t         = float(config['current_year'])
+    t_0       = float(config['base_year'])
+    x         = float(config['high'])
+    y         = float(config['med'])
+    z         = float(config['low'])
+
+    current_value = data.Value[data.Year == t].values[0]
+    base_value = data.Value[data.Year == t_0].values[0]
+    cagr_o = growth_calculation(current_value, base_value, t, t_0)
+
+    if direction=="negative":
+        cagr_o = -1*cagr_o
+
+    # TODO: Adopt categories to Open SDG progress categories (or make our categories work with Open SDG)
+    # TODO: Change progress labels: Negative, negligeable, fair/moderate, substantial, target achieved.
+
+    if cagr_o > x:
+        return "substantial_progress"
+    elif y < cagr_o <= x:
+        return "moderate_progress"
+    elif z <= cagr_o <= y:
+        return "moderate_deterioration"
+    elif cagr_o < z:
+        return "negative_progress"
+    else:
+        return None
+
+
+def methodology_2(data, config):
+    """Calculate growth using progress measurement methodology 2 (given target value).
+
+    Check if target has already been achieved.
+    Use configuration options to get the current and base value from indicator data and use to calculate growth ratio.
+    Compare growth ratio to progress thresholds to return a progress measurement.
+
+    Args:
+        data: DataFrame. Indicator data for which progress is being calculated.
+        config: dict. Configurations for indicator for which progress is being calculated.
+    Returns:
+        str: Progress measure.
+    """
+
+    # TODO: how to deal with the instance of target being met then diverged from?
+    # TODO: there's something wrong with the calculation - it is outputting significant progress when should be deterioration
+    # TODO: ?????????????????????
+
+
+    direction = str(config['direction'])
+    t         = float(config['current_year'])
+    t_0       = float(config['base_year'])
+    target    = float(config['target'])
+    t_tao     = float(config['target_year'])
+    x         = float(config['high'])
+    y         = float(config['med'])
+    z         = float(config['low'])
+
+
+    current_value = data.Value[data.Year == t].values[0]  # get current value from data
+    print('current value:' + str(current_value))
+    base_value = data.Value[data.Year == t_0].values[0]   # get base value from data
+    print('base value:' + str(base_value))
+
+
+    # check if the target is achieved
+    if (direction == "negative" and current_value <= target) or (direction == "positive" and current_value >= target):
+        return "target_achieved"
+
+    cagr_o = growth_calculation(current_value, base_value, t, t_0)   # calculating observed growth
+    print('cagr_o:' + str(cagr_o))
+    cagr_r = growth_calculation(target, base_value, t_tao, t_0)      # calculating theoretical growth
+    print('cagr_r:' + str(cagr_r))
+    ratio  = cagr_o / cagr_r                                         # calculating growth ratio
+    print('growth ratio:' + str(ratio))
+
+    # TODO: Adopt categories to Open SDG progress categories (or make our categories work with Open SDG)
+    # compare growth ratio to progress thresholds & return output
+    if ratio >= x:
+        return "substantial_progress"
+    elif y <= ratio < x:
+        return "moderate_progress"
+    elif z <= ratio < y:
+        return "negligible_progress"
+    elif ratio < z:
+        return "negative_progress"
+    else:
+        return None
+
+
+
+
+# measure_indicator_progress('6-1-1') # example with target = 0
+# measure_indicator_progress('3-2-1') # example with not enough data/fiscal year input
+# measure_indicator_progress('3-4-1')   # example with no target
+
+data_pattern = os.path.join('assets', 'data', 'csv', '*-*.csv')
+data_input = sdg.inputs.InputCsvData(path_pattern=data_pattern)
+
+# Input metadata from YAML files matching this pattern: tests/meta/*-*.md
+meta_pattern = os.path.join('assets', 'meta', 'yaml', '*-*.yml')
+meta_input = sdg.inputs.InputYamlMeta(path_pattern=meta_pattern)
+
+# Combine these inputs into one list
+inputs = [data_input, meta_input]
+
+# Use a Prose.io file for the metadata schema.
+schema_path = os.path.join('assets', 'meta', 'metadata_schema.yml')
+schema = sdg.schemas.SchemaInputOpenSdg(schema_path=schema_path)
+
+opensdg_output = sdg.outputs.OutputOpenSdg(
+    inputs=inputs,
+    schema=schema,
+    output_folder='_site')
+
+test_indicator = opensdg_output.test_indicator()
+
+measure_indicator_progress(test_indicator)
\ No newline at end of file

From 44027aee6e685f5f5b792a521c6ca392ed096da2 Mon Sep 17 00:00:00 2001
From: MaiaPelletier <maia.pelletier15@gmail.com>
Date: Mon, 25 Jul 2022 11:15:20 -0400
Subject: [PATCH 02/39] add tests

---
 sdg/inputs/InputMetaFiles.py                  |    2 +-
 sdg/outputs/OutputOpenSdg.py                  |   16 +
 tests/ProgressMeasure_test.py                 |   51 +-
 .../data/temp/indicator_1-2-1.csv             | 1261 +++
 .../data/temp/indicator_1-a-2.csv             |  351 +
 .../data/temp/indicator_10-2-1.csv            | 1261 +++
 .../data/temp/indicator_10-4-1.csv            |  319 +
 .../data/temp/indicator_10-c-1.csv            |    2 +
 .../data/temp/indicator_11-1-1.csv            |   10 +
 .../data/temp/indicator_11-2-1.csv            |   75 +
 .../data/temp/indicator_11-6-1.csv            |  307 +
 .../data/temp/indicator_11-6-2.csv            |   17 +
 .../data/temp/indicator_14-4-1.csv            |   10 +
 .../data/temp/indicator_14-5-1.csv            |   12 +
 .../data/temp/indicator_15-1-1.csv            |    8 +
 .../data/temp/indicator_15-2-1.csv            |   48 +
 .../data/temp/indicator_15-5-1.csv            |   18 +
 .../data/temp/indicator_15-a-1.csv            |   91 +
 .../data/temp/indicator_16-1-1.csv            |  883 ++
 .../data/temp/indicator_16-1-3.csv            |    6 +
 .../data/temp/indicator_16-2-3.csv            |    4 +
 .../data/temp/indicator_16-3-1.csv            |    6 +
 .../data/temp/indicator_17-1-2.csv            |   91 +
 .../data/temp/indicator_17-2-1.csv            |    4 +
 .../data/temp/indicator_17-3-2.csv            |    2 +
 .../data/temp/indicator_17-8-1.csv            |  111 +
 .../data/temp/indicator_3-1-1.csv             |    6 +
 .../data/temp/indicator_3-2-1.csv             |   68 +
 .../data/temp/indicator_3-2-2.csv             |  361 +
 .../data/temp/indicator_3-3-1.csv             |   76 +
 .../data/temp/indicator_3-3-2.csv             |   31 +
 .../data/temp/indicator_3-3-3.csv             |   31 +
 .../data/temp/indicator_3-3-4.csv             |   31 +
 .../data/temp/indicator_3-3-5.csv             |   21 +
 .../data/temp/indicator_3-4-1.csv             |  736 ++
 .../data/temp/indicator_3-4-2.csv             |  202 +
 .../data/temp/indicator_3-5-2.csv             |   91 +
 .../data/temp/indicator_3-6-1.csv             |  991 ++
 .../data/temp/indicator_3-7-2.csv             |   87 +
 .../data/temp/indicator_3-a-1.csv             |  175 +
 .../data/temp/indicator_3-b-1.csv             |   45 +
 .../data/temp/indicator_3-c-1.csv             | 2311 ++++
 .../data/temp/indicator_3-d-1.csv             |    4 +
 .../data/temp/indicator_5-2-1.csv             |   13 +
 .../data/temp/indicator_5-2-2.csv             |    2 +
 .../data/temp/indicator_5-3-1.csv             |  415 +
 .../data/temp/indicator_5-4-1.csv             |  481 +
 .../data/temp/indicator_5-5-1.csv             |  207 +
 .../data/temp/indicator_5-5-2.csv             |  386 +
 .../data/temp/indicator_5-b-1.csv             |   53 +
 .../data/temp/indicator_6-1-1.csv             |   22 +
 .../data/temp/indicator_7-2-1.csv             |    2 +
 .../data/temp/indicator_7-3-1.csv             |    6 +
 .../data/temp/indicator_8-10-1.csv            |   11 +
 .../data/temp/indicator_8-8-1.csv             |   19 +
 .../data/temp/indicator_9-2-2.csv             | 9775 +++++++++++++++++
 .../data/temp/indicator_9-5-1.csv             |  457 +
 .../data/temp/indicator_9-5-2.csv             |  739 ++
 .../data/temp/indicator_9-c-1.csv             |   13 +
 .../indicator-config/17-8-1.yml               |    5 +
 .../indicator-config/temp/1-2-1.yml           |    4 +
 .../indicator-config/temp/1-a-2.yml           |    3 +
 .../indicator-config/temp/3-1-1.yml           |    6 +
 .../indicator-config/temp/3-2-1.yml           |    6 +
 .../indicator-config/temp/3-2-2.yml           |    6 +
 .../indicator-config/temp/3-3-1.yml           |    5 +
 .../indicator-config/temp/temp.yml            |    6 +
 67 files changed, 22857 insertions(+), 18 deletions(-)
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_1-2-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_1-a-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_10-2-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_10-4-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_10-c-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_11-1-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_11-2-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_11-6-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_11-6-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_14-4-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_14-5-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_15-1-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_15-2-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_15-5-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_15-a-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_16-1-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_16-1-3.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_16-2-3.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_16-3-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_17-1-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_17-2-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_17-3-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_17-8-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-1-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-2-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-2-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-3-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-3-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-3-3.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-3-4.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-3-5.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-4-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-4-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-5-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-6-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-7-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-a-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-b-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-c-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-d-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-2-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-2-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-3-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-4-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-5-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-5-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-b-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_6-1-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_7-2-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_7-3-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_8-10-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_8-8-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_9-2-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_9-5-1.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_9-5-2.csv
 create mode 100644 tests/assets/progress-calculation/data/temp/indicator_9-c-1.csv
 create mode 100644 tests/assets/progress-calculation/indicator-config/17-8-1.yml
 create mode 100644 tests/assets/progress-calculation/indicator-config/temp/1-2-1.yml
 create mode 100644 tests/assets/progress-calculation/indicator-config/temp/1-a-2.yml
 create mode 100644 tests/assets/progress-calculation/indicator-config/temp/3-1-1.yml
 create mode 100644 tests/assets/progress-calculation/indicator-config/temp/3-2-1.yml
 create mode 100644 tests/assets/progress-calculation/indicator-config/temp/3-2-2.yml
 create mode 100644 tests/assets/progress-calculation/indicator-config/temp/3-3-1.yml
 create mode 100644 tests/assets/progress-calculation/indicator-config/temp/temp.yml

diff --git a/sdg/inputs/InputMetaFiles.py b/sdg/inputs/InputMetaFiles.py
index 11f12e03..9f561559 100644
--- a/sdg/inputs/InputMetaFiles.py
+++ b/sdg/inputs/InputMetaFiles.py
@@ -7,7 +7,7 @@
 class InputMetaFiles(InputFiles):
     """Sources of SDG metadata that are local files."""
 
-    def __init__(self, path_pattern='', git=True, git_data_dir='data',
+    def __init__(self, path_pattern='', git=False, git_data_dir='data',
                  git_data_filemask='indicator_*.csv', metadata_mapping=None,
                  logging=None, column_map=None, code_map=None):
         """Constructor for InputMetaFiles.
diff --git a/sdg/outputs/OutputOpenSdg.py b/sdg/outputs/OutputOpenSdg.py
index 32223893..85e1df3b 100644
--- a/sdg/outputs/OutputOpenSdg.py
+++ b/sdg/outputs/OutputOpenSdg.py
@@ -285,3 +285,19 @@ def get_documentation_description(self):
         return """This output includes a variety of endpoints designed to
         support the <a href="https://open-sdg.readthedocs.io">Open SDG</a>
         platform."""
+
+
+    def test_indicator_data(self, language=None):
+        for indicator_id in self.get_indicator_ids():
+            indicator = self.get_indicator_by_id(indicator_id).language(language)
+            return(indicator.data)
+
+    def test_indicator_meta(self, language=None):
+        for indicator_id in self.get_indicator_ids():
+            indicator = self.get_indicator_by_id(indicator_id).language(language)
+            return(indicator.meta)
+
+    def test_indicator(self, language=None):
+        for indicator_id in self.get_indicator_ids():
+            indicator = self.get_indicator_by_id(indicator_id).language(language)
+            return(indicator)
\ No newline at end of file
diff --git a/tests/ProgressMeasure_test.py b/tests/ProgressMeasure_test.py
index e4742046..9ce09138 100644
--- a/tests/ProgressMeasure_test.py
+++ b/tests/ProgressMeasure_test.py
@@ -7,8 +7,6 @@
 import os
 
 
-
-
 def measure_indicator_progress(indicator):
     """Assigns year values and determines methodology to be run.
 
@@ -25,12 +23,17 @@ def measure_indicator_progress(indicator):
     # check if progress calculation is turned on and if inputs have been configured
     # return None if auto progress calculation is not turned on
     print('checking if progress calc is turned on...')
-    if config['auto_progress_calculation']:
-        print('progress calc is turned on. continuing...')
-        if 'progress_calculation_options' in config.keys():
-            print('taking user configured inputs')
-            config = config['progress_calculation_options'][0]
-            print(config)
+    if 'auto_progress_calculation' in config.keys():
+        print('meta field required exists')
+        if config['auto_progress_calculation']:
+            print('progress calc is turned on. continuing...')
+            if 'progress_calculation_options' in config.keys():
+                print('taking user configured inputs')
+                config = config['progress_calculation_options'][0]
+                print(config)
+        else:
+            print('progress calc is not turned on. exit...')
+            return(None)
     else:
         print('progress calc is not turned on. exit...')
         return(None)
@@ -42,6 +45,9 @@ def measure_indicator_progress(indicator):
     data = data_progress_measure(data)
     print(data)
 
+    if data is None:
+        return(None)
+
     years = data["Year"]                           # get years from data
     print(years)
     current_year = {'current_year': years.max()}   # set current year to be MAX(Year)
@@ -49,14 +55,20 @@ def measure_indicator_progress(indicator):
     config.update(current_year)
     print(config)
 
+
+
     if config['base_year'] not in years.values:          # check if assigned base year is in data
         print('base year is not in year values')
+        if config['base_year'] > years.max():
+            print('base year is ahead of most recently available data')
+            return None
         config['base_year'] = years[years > 2015].min()  # if not, assign MIN(Year > 2015) to be base year
         print('updating base year to ' + str(config['base_year']))
     print(config)
 
     # check if there is enough data to calculate progress
     if config['current_year'] - config['base_year'] < 1:
+        print('not enough data')
         return None
 
 
@@ -73,9 +85,11 @@ def measure_indicator_progress(indicator):
         print('running methodology 2')
         output = methodology_2(data=data, config=config)
 
-    print(output)
     return(output)
 
+def check_auto_calc():
+    print('temp')
+
 def config_defaults(config):
     """Set progress calculation defaults and update them from the configuration.
     Args:
@@ -168,11 +182,9 @@ def data_progress_measure(data):
         data = data.iloc[:, [0, -1]]
     data = data[data["Value"].notna()]  # remove any NA values from data
 
-    # TODO: shape <1 or <2?
     if data.shape[0] < 1:
-        # TODO: return an empty pandas dataframe? or a None value? what does this do i cant remember
-        print('not enough data')
-        sys.exit()
+        print('no aggregate')
+        return(None)
 
     return data
 
@@ -218,6 +230,7 @@ def methodology_1(data, config):
 
     if direction=="negative":
         cagr_o = -1*cagr_o
+    print('cagr_o:' + str(cagr_o))
 
     # TODO: Adopt categories to Open SDG progress categories (or make our categories work with Open SDG)
     # TODO: Change progress labels: Negative, negligeable, fair/moderate, substantial, target achieved.
@@ -229,7 +242,7 @@ def methodology_1(data, config):
     elif z <= cagr_o <= y:
         return "moderate_deterioration"
     elif cagr_o < z:
-        return "negative_progress"
+        return "significant_deterioration"
     else:
         return None
 
@@ -300,11 +313,11 @@ def methodology_2(data, config):
 # measure_indicator_progress('3-2-1') # example with not enough data/fiscal year input
 # measure_indicator_progress('3-4-1')   # example with no target
 
-data_pattern = os.path.join('assets', 'data', 'csv', '*-*.csv')
+data_pattern = os.path.join('assets', 'progress-calculation', 'data', '*-*.csv')
 data_input = sdg.inputs.InputCsvData(path_pattern=data_pattern)
 
 # Input metadata from YAML files matching this pattern: tests/meta/*-*.md
-meta_pattern = os.path.join('assets', 'meta', 'yaml', '*-*.yml')
+meta_pattern = os.path.join('assets', 'progress-calculation', 'indicator-config', '*-*.yml')
 meta_input = sdg.inputs.InputYamlMeta(path_pattern=meta_pattern)
 
 # Combine these inputs into one list
@@ -320,5 +333,9 @@ def methodology_2(data, config):
     output_folder='_site')
 
 test_indicator = opensdg_output.test_indicator()
+indicator_id = test_indicator.meta['indicator_number']
 
-measure_indicator_progress(test_indicator)
\ No newline at end of file
+progress_measure = measure_indicator_progress(test_indicator)
+print(progress_measure)
+# prog_calcs = {indicator_id: progress_measure}
+# print(prog_calcs)
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/data/temp/indicator_1-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_1-2-1.csv
new file mode 100644
index 00000000..c7c0dbb2
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_1-2-1.csv
@@ -0,0 +1,1261 @@
+Year,Geography,Persons in low income,Value
+2015,,,14.5
+2016,,,12.8
+2017,,,11.7
+2018,,,11
+2019,,,10.1
+2015,Alberta,All persons,10
+2016,Alberta,All persons,10.8
+2017,Alberta,All persons,9
+2018,Alberta,All persons,9.4
+2019,Alberta,All persons,8.2
+2015,Alberta,Females,10.5
+2016,Alberta,Females,11.2
+2017,Alberta,Females,9.7
+2018,Alberta,Females,9.2
+2019,Alberta,Females,7.9
+2015,Alberta,"Females, 18 to 64 years",10.1
+2016,Alberta,"Females, 18 to 64 years",12.4
+2017,Alberta,"Females, 18 to 64 years",11.4
+2018,Alberta,"Females, 18 to 64 years",10.4
+2019,Alberta,"Females, 18 to 64 years",9.6
+2015,Alberta,"Females, 65 years and over",3.5
+2016,Alberta,"Females, 65 years and over",4.3
+2017,Alberta,"Females, 65 years and over",3.1
+2018,Alberta,"Females, 65 years and over",4.3
+2019,Alberta,"Females, 65 years and over",2.7
+2015,Alberta,"Females, under 18 years",15.9
+2016,Alberta,"Females, under 18 years",11.6
+2017,Alberta,"Females, under 18 years",8.4
+2018,Alberta,"Females, under 18 years",8.6
+2019,Alberta,"Females, under 18 years",6.5
+2015,Alberta,Males,9.5
+2016,Alberta,Males,10.5
+2017,Alberta,Males,8.2
+2018,Alberta,Males,9.6
+2019,Alberta,Males,8.5
+2015,Alberta,"Males, 18 to 64 years",10.3
+2016,Alberta,"Males, 18 to 64 years",11.2
+2017,Alberta,"Males, 18 to 64 years",9.4
+2018,Alberta,"Males, 18 to 64 years",10.7
+2019,Alberta,"Males, 18 to 64 years",9.6
+2015,Alberta,"Males, 65 years and over",NA
+2016,Alberta,"Males, 65 years and over",4.7
+2017,Alberta,"Males, 65 years and over",2.7
+2018,Alberta,"Males, 65 years and over",2.5
+2019,Alberta,"Males, 65 years and over",4.1
+2015,Alberta,"Males, under 18 years",10.1
+2016,Alberta,"Males, under 18 years",11.2
+2017,Alberta,"Males, under 18 years",7.4
+2018,Alberta,"Males, under 18 years",9.8
+2019,Alberta,"Males, under 18 years",8
+2015,Alberta,Persons 18 to 64 years,10.2
+2016,Alberta,Persons 18 to 64 years,11.8
+2017,Alberta,Persons 18 to 64 years,10.4
+2018,Alberta,Persons 18 to 64 years,10.6
+2019,Alberta,Persons 18 to 64 years,9.6
+2015,Alberta,Persons 65 years and over,3.2
+2016,Alberta,Persons 65 years and over,4.5
+2017,Alberta,Persons 65 years and over,2.9
+2018,Alberta,Persons 65 years and over,3.5
+2019,Alberta,Persons 65 years and over,3.3
+2015,Alberta,Persons under 18 years,12.9
+2016,Alberta,Persons under 18 years,11.4
+2017,Alberta,Persons under 18 years,7.9
+2018,Alberta,Persons under 18 years,9.2
+2019,Alberta,Persons under 18 years,7.2
+2015,Atlantic provinces,All persons,15.7
+2016,Atlantic provinces,All persons,14.2
+2017,Atlantic provinces,All persons,13.2
+2018,Atlantic provinces,All persons,11.7
+2019,Atlantic provinces,All persons,10.9
+2015,Atlantic provinces,Females,16.4
+2016,Atlantic provinces,Females,14.7
+2017,Atlantic provinces,Females,14.3
+2018,Atlantic provinces,Females,11.8
+2019,Atlantic provinces,Females,12.1
+2015,Atlantic provinces,"Females, 18 to 64 years",16.9
+2016,Atlantic provinces,"Females, 18 to 64 years",16.1
+2017,Atlantic provinces,"Females, 18 to 64 years",15.7
+2018,Atlantic provinces,"Females, 18 to 64 years",13
+2019,Atlantic provinces,"Females, 18 to 64 years",13.1
+2015,Atlantic provinces,"Females, 65 years and over",12.3
+2016,Atlantic provinces,"Females, 65 years and over",9.5
+2017,Atlantic provinces,"Females, 65 years and over",8.2
+2018,Atlantic provinces,"Females, 65 years and over",8
+2019,Atlantic provinces,"Females, 65 years and over",8.4
+2015,Atlantic provinces,"Females, under 18 years",19.3
+2016,Atlantic provinces,"Females, under 18 years",16
+2017,Atlantic provinces,"Females, under 18 years",17.1
+2018,Atlantic provinces,"Females, under 18 years",12.3
+2019,Atlantic provinces,"Females, under 18 years",13.3
+2015,Atlantic provinces,Males,15
+2016,Atlantic provinces,Males,13.7
+2017,Atlantic provinces,Males,12
+2018,Atlantic provinces,Males,11.6
+2019,Atlantic provinces,Males,9.6
+2015,Atlantic provinces,"Males, 18 to 64 years",16
+2016,Atlantic provinces,"Males, 18 to 64 years",14.5
+2017,Atlantic provinces,"Males, 18 to 64 years",13
+2018,Atlantic provinces,"Males, 18 to 64 years",13.4
+2019,Atlantic provinces,"Males, 18 to 64 years",10.4
+2015,Atlantic provinces,"Males, 65 years and over",7.9
+2016,Atlantic provinces,"Males, 65 years and over",7.2
+2017,Atlantic provinces,"Males, 65 years and over",5.4
+2018,Atlantic provinces,"Males, 65 years and over",4.7
+2019,Atlantic provinces,"Males, 65 years and over",4.6
+2015,Atlantic provinces,"Males, under 18 years",18.7
+2016,Atlantic provinces,"Males, under 18 years",17.4
+2017,Atlantic provinces,"Males, under 18 years",15.2
+2018,Atlantic provinces,"Males, under 18 years",12.8
+2019,Atlantic provinces,"Males, under 18 years",12.1
+2015,Atlantic provinces,Persons 18 to 64 years,16.4
+2016,Atlantic provinces,Persons 18 to 64 years,15.3
+2017,Atlantic provinces,Persons 18 to 64 years,14.4
+2018,Atlantic provinces,Persons 18 to 64 years,13.2
+2019,Atlantic provinces,Persons 18 to 64 years,11.8
+2015,Atlantic provinces,Persons 65 years and over,10.3
+2016,Atlantic provinces,Persons 65 years and over,8.4
+2017,Atlantic provinces,Persons 65 years and over,6.9
+2018,Atlantic provinces,Persons 65 years and over,6.5
+2019,Atlantic provinces,Persons 65 years and over,6.6
+2015,Atlantic provinces,Persons under 18 years,19
+2016,Atlantic provinces,Persons under 18 years,16.7
+2017,Atlantic provinces,Persons under 18 years,16.1
+2018,Atlantic provinces,Persons under 18 years,12.6
+2019,Atlantic provinces,Persons under 18 years,12.7
+2015,British Columbia,All persons,17.8
+2016,British Columbia,All persons,15.3
+2017,British Columbia,All persons,13.6
+2018,British Columbia,All persons,12.1
+2019,British Columbia,All persons,10.8
+2015,British Columbia,Females,17.8
+2016,British Columbia,Females,15.1
+2017,British Columbia,Females,13.7
+2018,British Columbia,Females,11.8
+2019,British Columbia,Females,11.6
+2015,British Columbia,"Females, 18 to 64 years",19.4
+2016,British Columbia,"Females, 18 to 64 years",16.1
+2017,British Columbia,"Females, 18 to 64 years",15.4
+2018,British Columbia,"Females, 18 to 64 years",13.6
+2019,British Columbia,"Females, 18 to 64 years",14.2
+2015,British Columbia,"Females, 65 years and over",11.5
+2016,British Columbia,"Females, 65 years and over",9.8
+2017,British Columbia,"Females, 65 years and over",9.6
+2018,British Columbia,"Females, 65 years and over",8.3
+2019,British Columbia,"Females, 65 years and over",6.7
+2015,British Columbia,"Females, under 18 years",18.4
+2016,British Columbia,"Females, under 18 years",17
+2017,British Columbia,"Females, under 18 years",11.7
+2018,British Columbia,"Females, under 18 years",9.3
+2019,British Columbia,"Females, under 18 years",7.4
+2015,British Columbia,Males,17.7
+2016,British Columbia,Males,15.5
+2017,British Columbia,Males,13.6
+2018,British Columbia,Males,12.5
+2019,British Columbia,Males,10
+2015,British Columbia,"Males, 18 to 64 years",20.2
+2016,British Columbia,"Males, 18 to 64 years",17
+2017,British Columbia,"Males, 18 to 64 years",14.7
+2018,British Columbia,"Males, 18 to 64 years",14
+2019,British Columbia,"Males, 18 to 64 years",12.4
+2015,British Columbia,"Males, 65 years and over",11
+2016,British Columbia,"Males, 65 years and over",7.8
+2017,British Columbia,"Males, 65 years and over",8.8
+2018,British Columbia,"Males, 65 years and over",7.2
+2019,British Columbia,"Males, 65 years and over",5.1
+2015,British Columbia,"Males, under 18 years",14.9
+2016,British Columbia,"Males, under 18 years",17.1
+2017,British Columbia,"Males, under 18 years",14.3
+2018,British Columbia,"Males, under 18 years",12.3
+2019,British Columbia,"Males, under 18 years",6.9
+2015,British Columbia,Persons 18 to 64 years,19.8
+2016,British Columbia,Persons 18 to 64 years,16.6
+2017,British Columbia,Persons 18 to 64 years,15
+2018,British Columbia,Persons 18 to 64 years,13.8
+2019,British Columbia,Persons 18 to 64 years,13.3
+2015,British Columbia,Persons 65 years and over,11.3
+2016,British Columbia,Persons 65 years and over,8.9
+2017,British Columbia,Persons 65 years and over,9.2
+2018,British Columbia,Persons 65 years and over,7.7
+2019,British Columbia,Persons 65 years and over,5.9
+2015,British Columbia,Persons under 18 years,16.6
+2016,British Columbia,Persons under 18 years,17
+2017,British Columbia,Persons under 18 years,13
+2018,British Columbia,Persons under 18 years,10.9
+2019,British Columbia,Persons under 18 years,7.2
+2015,"Calgary, Alberta",All persons,12.4
+2016,"Calgary, Alberta",All persons,11.5
+2017,"Calgary, Alberta",All persons,8.4
+2018,"Calgary, Alberta",All persons,12.3
+2019,"Calgary, Alberta",All persons,5.7
+2015,"Calgary, Alberta",Females,13
+2016,"Calgary, Alberta",Females,12.4
+2017,"Calgary, Alberta",Females,8.2
+2018,"Calgary, Alberta",Females,11.5
+2019,"Calgary, Alberta",Females,5.8
+2015,"Calgary, Alberta","Females, 18 to 64 years",12.2
+2016,"Calgary, Alberta","Females, 18 to 64 years",13.8
+2017,"Calgary, Alberta","Females, 18 to 64 years",9
+2018,"Calgary, Alberta","Females, 18 to 64 years",13.1
+2019,"Calgary, Alberta","Females, 18 to 64 years",6.7
+2015,"Calgary, Alberta","Females, 65 years and over",NA
+2016,"Calgary, Alberta","Females, 65 years and over",NA
+2017,"Calgary, Alberta","Females, 65 years and over",NA
+2018,"Calgary, Alberta","Females, 65 years and over",NA
+2019,"Calgary, Alberta","Females, 65 years and over",NA
+2015,"Calgary, Alberta","Females, under 18 years",20.4
+2016,"Calgary, Alberta","Females, under 18 years",13
+2017,"Calgary, Alberta","Females, under 18 years",9.3
+2018,"Calgary, Alberta","Females, under 18 years",10.7
+2019,"Calgary, Alberta","Females, under 18 years",NA
+2015,"Calgary, Alberta",Males,11.9
+2016,"Calgary, Alberta",Males,10.7
+2017,"Calgary, Alberta",Males,8.6
+2018,"Calgary, Alberta",Males,13.1
+2019,"Calgary, Alberta",Males,5.6
+2015,"Calgary, Alberta","Males, 18 to 64 years",12.8
+2016,"Calgary, Alberta","Males, 18 to 64 years",11.3
+2017,"Calgary, Alberta","Males, 18 to 64 years",10.2
+2018,"Calgary, Alberta","Males, 18 to 64 years",14.5
+2019,"Calgary, Alberta","Males, 18 to 64 years",6.2
+2015,"Calgary, Alberta","Males, 65 years and over",NA
+2016,"Calgary, Alberta","Males, 65 years and over",NA
+2017,"Calgary, Alberta","Males, 65 years and over",NA
+2018,"Calgary, Alberta","Males, 65 years and over",NA
+2019,"Calgary, Alberta","Males, 65 years and over",NA
+2015,"Calgary, Alberta","Males, under 18 years",NA
+2016,"Calgary, Alberta","Males, under 18 years",10.6
+2017,"Calgary, Alberta","Males, under 18 years",6.5
+2018,"Calgary, Alberta","Males, under 18 years",14.2
+2019,"Calgary, Alberta","Males, under 18 years",NA
+2015,"Calgary, Alberta",Persons 18 to 64 years,12.5
+2016,"Calgary, Alberta",Persons 18 to 64 years,12.6
+2017,"Calgary, Alberta",Persons 18 to 64 years,9.6
+2018,"Calgary, Alberta",Persons 18 to 64 years,13.8
+2019,"Calgary, Alberta",Persons 18 to 64 years,6.5
+2015,"Calgary, Alberta",Persons 65 years and over,NA
+2016,"Calgary, Alberta",Persons 65 years and over,NA
+2017,"Calgary, Alberta",Persons 65 years and over,NA
+2018,"Calgary, Alberta",Persons 65 years and over,NA
+2019,"Calgary, Alberta",Persons 65 years and over,NA
+2015,"Calgary, Alberta",Persons under 18 years,16.2
+2016,"Calgary, Alberta",Persons under 18 years,11.7
+2017,"Calgary, Alberta",Persons under 18 years,8.1
+2018,"Calgary, Alberta",Persons under 18 years,12.6
+2019,"Calgary, Alberta",Persons under 18 years,NA
+2015,Canada,Females,14.8
+2016,Canada,Females,13.3
+2017,Canada,Females,11.9
+2018,Canada,Females,10.9
+2019,Canada,Females,10.4
+2015,Canada,"Females, 18 to 64 years",16
+2016,Canada,"Females, 18 to 64 years",14.4
+2017,Canada,"Females, 18 to 64 years",13.5
+2018,Canada,"Females, 18 to 64 years",12.4
+2019,Canada,"Females, 18 to 64 years",12
+2015,Canada,"Females, 65 years and over",7.9
+2016,Canada,"Females, 65 years and over",7.5
+2017,Canada,"Females, 65 years and over",6.5
+2018,Canada,"Females, 65 years and over",6.2
+2019,Canada,"Females, 65 years and over",5.9
+2015,Canada,"Females, under 18 years",16.8
+2016,Canada,"Females, under 18 years",15.1
+2017,Canada,"Females, under 18 years",11.8
+2018,Canada,"Females, under 18 years",10.2
+2019,Canada,"Females, under 18 years",9.7
+2015,Canada,Males,14.2
+2016,Canada,Males,12.3
+2017,Canada,Males,11.5
+2018,Canada,Males,11.1
+2019,Canada,Males,9.8
+2015,Canada,"Males, 18 to 64 years",15.4
+2016,Canada,"Males, 18 to 64 years",13.5
+2017,Canada,"Males, 18 to 64 years",12.9
+2018,Canada,"Males, 18 to 64 years",12.5
+2019,Canada,"Males, 18 to 64 years",11.2
+2015,Canada,"Males, 65 years and over",6
+2016,Canada,"Males, 65 years and over",6.3
+2017,Canada,"Males, 65 years and over",5.4
+2018,Canada,"Males, 65 years and over",5
+2019,Canada,"Males, 65 years and over",4.7
+2015,Canada,"Males, under 18 years",16.1
+2016,Canada,"Males, under 18 years",13
+2017,Canada,"Males, under 18 years",11.5
+2018,Canada,"Males, under 18 years",11.3
+2019,Canada,"Males, under 18 years",9.6
+2015,Canada,Persons 18 to 64 years,15.7
+2016,Canada,Persons 18 to 64 years,14
+2017,Canada,Persons 18 to 64 years,13.2
+2018,Canada,Persons 18 to 64 years,12.5
+2019,Canada,Persons 18 to 64 years,11.6
+2015,Canada,Persons 65 years and over,7
+2016,Canada,Persons 65 years and over,7
+2017,Canada,Persons 65 years and over,6
+2018,Canada,Persons 65 years and over,5.6
+2019,Canada,Persons 65 years and over,5.4
+2015,Canada,Persons under 18 years,16.4
+2016,Canada,Persons under 18 years,14
+2017,Canada,Persons under 18 years,11.6
+2018,Canada,Persons under 18 years,10.8
+2019,Canada,Persons under 18 years,9.7
+2015,"Edmonton, Alberta",All persons,7.8
+2016,"Edmonton, Alberta",All persons,9.2
+2017,"Edmonton, Alberta",All persons,10.2
+2018,"Edmonton, Alberta",All persons,7.5
+2019,"Edmonton, Alberta",All persons,10.1
+2015,"Edmonton, Alberta",Females,8
+2016,"Edmonton, Alberta",Females,9.1
+2017,"Edmonton, Alberta",Females,11.8
+2018,"Edmonton, Alberta",Females,8.2
+2019,"Edmonton, Alberta",Females,10.4
+2015,"Edmonton, Alberta","Females, 18 to 64 years",7.1
+2016,"Edmonton, Alberta","Females, 18 to 64 years",10.4
+2017,"Edmonton, Alberta","Females, 18 to 64 years",13.8
+2018,"Edmonton, Alberta","Females, 18 to 64 years",9.5
+2019,"Edmonton, Alberta","Females, 18 to 64 years",12.1
+2015,"Edmonton, Alberta","Females, 65 years and over",NA
+2016,"Edmonton, Alberta","Females, 65 years and over",NA
+2017,"Edmonton, Alberta","Females, 65 years and over",NA
+2018,"Edmonton, Alberta","Females, 65 years and over",NA
+2019,"Edmonton, Alberta","Females, 65 years and over",NA
+2015,"Edmonton, Alberta","Females, under 18 years",NA
+2016,"Edmonton, Alberta","Females, under 18 years",NA
+2017,"Edmonton, Alberta","Females, under 18 years",NA
+2018,"Edmonton, Alberta","Females, under 18 years",6.8
+2019,"Edmonton, Alberta","Females, under 18 years",NA
+2015,"Edmonton, Alberta",Males,7.7
+2016,"Edmonton, Alberta",Males,9.3
+2017,"Edmonton, Alberta",Males,8.6
+2018,"Edmonton, Alberta",Males,6.9
+2019,"Edmonton, Alberta",Males,9.9
+2015,"Edmonton, Alberta","Males, 18 to 64 years",8.8
+2016,"Edmonton, Alberta","Males, 18 to 64 years",10.9
+2017,"Edmonton, Alberta","Males, 18 to 64 years",9.4
+2018,"Edmonton, Alberta","Males, 18 to 64 years",7.8
+2019,"Edmonton, Alberta","Males, 18 to 64 years",11.2
+2015,"Edmonton, Alberta","Males, 65 years and over",NA
+2016,"Edmonton, Alberta","Males, 65 years and over",NA
+2017,"Edmonton, Alberta","Males, 65 years and over",NA
+2018,"Edmonton, Alberta","Males, 65 years and over",NA
+2019,"Edmonton, Alberta","Males, 65 years and over",NA
+2015,"Edmonton, Alberta","Males, under 18 years",NA
+2016,"Edmonton, Alberta","Males, under 18 years",NA
+2017,"Edmonton, Alberta","Males, under 18 years",NA
+2018,"Edmonton, Alberta","Males, under 18 years",6.2
+2019,"Edmonton, Alberta","Males, under 18 years",NA
+2015,"Edmonton, Alberta",Persons 18 to 64 years,8
+2016,"Edmonton, Alberta",Persons 18 to 64 years,10.7
+2017,"Edmonton, Alberta",Persons 18 to 64 years,11.6
+2018,"Edmonton, Alberta",Persons 18 to 64 years,8.6
+2019,"Edmonton, Alberta",Persons 18 to 64 years,11.6
+2015,"Edmonton, Alberta",Persons 65 years and over,NA
+2016,"Edmonton, Alberta",Persons 65 years and over,NA
+2017,"Edmonton, Alberta",Persons 65 years and over,4.7
+2018,"Edmonton, Alberta",Persons 65 years and over,NA
+2019,"Edmonton, Alberta",Persons 65 years and over,NA
+2015,"Edmonton, Alberta",Persons under 18 years,NA
+2016,"Edmonton, Alberta",Persons under 18 years,8.1
+2017,"Edmonton, Alberta",Persons under 18 years,8.4
+2018,"Edmonton, Alberta",Persons under 18 years,6.5
+2019,"Edmonton, Alberta",Persons under 18 years,NA
+2015,Manitoba,All persons,14
+2016,Manitoba,All persons,12.3
+2017,Manitoba,All persons,11
+2018,Manitoba,All persons,10.9
+2019,Manitoba,All persons,11.4
+2015,Manitoba,Females,13.5
+2016,Manitoba,Females,12.2
+2017,Manitoba,Females,11.4
+2018,Manitoba,Females,10.7
+2019,Manitoba,Females,10.9
+2015,Manitoba,"Females, 18 to 64 years",14.3
+2016,Manitoba,"Females, 18 to 64 years",13.2
+2017,Manitoba,"Females, 18 to 64 years",12
+2018,Manitoba,"Females, 18 to 64 years",11.3
+2019,Manitoba,"Females, 18 to 64 years",11.7
+2015,Manitoba,"Females, 65 years and over",7.7
+2016,Manitoba,"Females, 65 years and over",5.7
+2017,Manitoba,"Females, 65 years and over",6.1
+2018,Manitoba,"Females, 65 years and over",6.6
+2019,Manitoba,"Females, 65 years and over",5.5
+2015,Manitoba,"Females, under 18 years",15.4
+2016,Manitoba,"Females, under 18 years",14.3
+2017,Manitoba,"Females, under 18 years",13.8
+2018,Manitoba,"Females, under 18 years",12.2
+2019,Manitoba,"Females, under 18 years",13.1
+2015,Manitoba,Males,14.4
+2016,Manitoba,Males,12.4
+2017,Manitoba,Males,10.7
+2018,Manitoba,Males,11
+2019,Manitoba,Males,11.8
+2015,Manitoba,"Males, 18 to 64 years",13.8
+2016,Manitoba,"Males, 18 to 64 years",12.8
+2017,Manitoba,"Males, 18 to 64 years",11.7
+2018,Manitoba,"Males, 18 to 64 years",11.4
+2019,Manitoba,"Males, 18 to 64 years",12
+2015,Manitoba,"Males, 65 years and over",3.8
+2016,Manitoba,"Males, 65 years and over",3.9
+2017,Manitoba,"Males, 65 years and over",4.6
+2018,Manitoba,"Males, 65 years and over",4.9
+2019,Manitoba,"Males, 65 years and over",5.2
+2015,Manitoba,"Males, under 18 years",22.8
+2016,Manitoba,"Males, under 18 years",16.7
+2017,Manitoba,"Males, under 18 years",11.5
+2018,Manitoba,"Males, under 18 years",13.9
+2019,Manitoba,"Males, under 18 years",15.7
+2015,Manitoba,Persons 18 to 64 years,14.1
+2016,Manitoba,Persons 18 to 64 years,13
+2017,Manitoba,Persons 18 to 64 years,11.9
+2018,Manitoba,Persons 18 to 64 years,11.4
+2019,Manitoba,Persons 18 to 64 years,11.8
+2015,Manitoba,Persons 65 years and over,5.9
+2016,Manitoba,Persons 65 years and over,4.9
+2017,Manitoba,Persons 65 years and over,5.4
+2018,Manitoba,Persons 65 years and over,5.8
+2019,Manitoba,Persons 65 years and over,5.4
+2015,Manitoba,Persons under 18 years,19.2
+2016,Manitoba,Persons under 18 years,15.6
+2017,Manitoba,Persons under 18 years,12.7
+2018,Manitoba,Persons under 18 years,13.1
+2019,Manitoba,Persons under 18 years,14.4
+2015,"Montréal, Quebec",All persons,17.5
+2016,"Montréal, Quebec",All persons,12.9
+2017,"Montréal, Quebec",All persons,14
+2018,"Montréal, Quebec",All persons,11.3
+2019,"Montréal, Quebec",All persons,10.3
+2015,"Montréal, Quebec",Females,17.7
+2016,"Montréal, Quebec",Females,12.7
+2017,"Montréal, Quebec",Females,13.9
+2018,"Montréal, Quebec",Females,11.8
+2019,"Montréal, Quebec",Females,9.5
+2015,"Montréal, Quebec","Females, 18 to 64 years",20
+2016,"Montréal, Quebec","Females, 18 to 64 years",13
+2017,"Montréal, Quebec","Females, 18 to 64 years",14.6
+2018,"Montréal, Quebec","Females, 18 to 64 years",13.9
+2019,"Montréal, Quebec","Females, 18 to 64 years",11.3
+2015,"Montréal, Quebec","Females, 65 years and over",7.8
+2016,"Montréal, Quebec","Females, 65 years and over",9.6
+2017,"Montréal, Quebec","Females, 65 years and over",10.2
+2018,"Montréal, Quebec","Females, 65 years and over",7.6
+2019,"Montréal, Quebec","Females, 65 years and over",6.8
+2015,"Montréal, Quebec","Females, under 18 years",18.5
+2016,"Montréal, Quebec","Females, under 18 years",14.5
+2017,"Montréal, Quebec","Females, under 18 years",14.6
+2018,"Montréal, Quebec","Females, under 18 years",9
+2019,"Montréal, Quebec","Females, under 18 years",6.2
+2015,"Montréal, Quebec",Males,17.3
+2016,"Montréal, Quebec",Males,13.2
+2017,"Montréal, Quebec",Males,14.1
+2018,"Montréal, Quebec",Males,10.7
+2019,"Montréal, Quebec",Males,11
+2015,"Montréal, Quebec","Males, 18 to 64 years",18.6
+2016,"Montréal, Quebec","Males, 18 to 64 years",14.1
+2017,"Montréal, Quebec","Males, 18 to 64 years",15.2
+2018,"Montréal, Quebec","Males, 18 to 64 years",12.6
+2019,"Montréal, Quebec","Males, 18 to 64 years",13
+2015,"Montréal, Quebec","Males, 65 years and over",NA
+2016,"Montréal, Quebec","Males, 65 years and over",10.2
+2017,"Montréal, Quebec","Males, 65 years and over",8.3
+2018,"Montréal, Quebec","Males, 65 years and over",4.6
+2019,"Montréal, Quebec","Males, 65 years and over",NA
+2015,"Montréal, Quebec","Males, under 18 years",20.9
+2016,"Montréal, Quebec","Males, under 18 years",12.1
+2017,"Montréal, Quebec","Males, under 18 years",14.5
+2018,"Montréal, Quebec","Males, under 18 years",9.2
+2019,"Montréal, Quebec","Males, under 18 years",8.5
+2015,"Montréal, Quebec",Persons 18 to 64 years,19.3
+2016,"Montréal, Quebec",Persons 18 to 64 years,13.6
+2017,"Montréal, Quebec",Persons 18 to 64 years,14.9
+2018,"Montréal, Quebec",Persons 18 to 64 years,13.3
+2019,"Montréal, Quebec",Persons 18 to 64 years,12.2
+2015,"Montréal, Quebec",Persons 65 years and over,7.3
+2016,"Montréal, Quebec",Persons 65 years and over,9.9
+2017,"Montréal, Quebec",Persons 65 years and over,9.4
+2018,"Montréal, Quebec",Persons 65 years and over,6.2
+2019,"Montréal, Quebec",Persons 65 years and over,6.3
+2015,"Montréal, Quebec",Persons under 18 years,19.6
+2016,"Montréal, Quebec",Persons under 18 years,13.2
+2017,"Montréal, Quebec",Persons under 18 years,14.5
+2018,"Montréal, Quebec",Persons under 18 years,9.1
+2019,"Montréal, Quebec",Persons under 18 years,7.4
+2015,New Brunswick,All persons,16.1
+2016,New Brunswick,All persons,13.6
+2017,New Brunswick,All persons,12.1
+2018,New Brunswick,All persons,10
+2019,New Brunswick,All persons,9.4
+2015,New Brunswick,Females,16.3
+2016,New Brunswick,Females,14.9
+2017,New Brunswick,Females,13
+2018,New Brunswick,Females,10.3
+2019,New Brunswick,Females,11
+2015,New Brunswick,"Females, 18 to 64 years",16.8
+2016,New Brunswick,"Females, 18 to 64 years",15.8
+2017,New Brunswick,"Females, 18 to 64 years",14.1
+2018,New Brunswick,"Females, 18 to 64 years",11.3
+2019,New Brunswick,"Females, 18 to 64 years",10.9
+2015,New Brunswick,"Females, 65 years and over",12.7
+2016,New Brunswick,"Females, 65 years and over",11.8
+2017,New Brunswick,"Females, 65 years and over",7.4
+2018,New Brunswick,"Females, 65 years and over",6.1
+2019,New Brunswick,"Females, 65 years and over",7.8
+2015,New Brunswick,"Females, under 18 years",18.5
+2016,New Brunswick,"Females, under 18 years",15.7
+2017,New Brunswick,"Females, under 18 years",15.8
+2018,New Brunswick,"Females, under 18 years",12.1
+2019,New Brunswick,"Females, under 18 years",15.2
+2015,New Brunswick,Males,15.9
+2016,New Brunswick,Males,12.1
+2017,New Brunswick,Males,11.2
+2018,New Brunswick,Males,9.7
+2019,New Brunswick,Males,7.8
+2015,New Brunswick,"Males, 18 to 64 years",16.1
+2016,New Brunswick,"Males, 18 to 64 years",12.1
+2017,New Brunswick,"Males, 18 to 64 years",12
+2018,New Brunswick,"Males, 18 to 64 years",10.9
+2019,New Brunswick,"Males, 18 to 64 years",8.8
+2015,New Brunswick,"Males, 65 years and over",8.5
+2016,New Brunswick,"Males, 65 years and over",7
+2017,New Brunswick,"Males, 65 years and over",5.1
+2018,New Brunswick,"Males, 65 years and over",4.4
+2019,New Brunswick,"Males, 65 years and over",3.2
+2015,New Brunswick,"Males, under 18 years",21.8
+2016,New Brunswick,"Males, under 18 years",17.2
+2017,New Brunswick,"Males, under 18 years",14.9
+2018,New Brunswick,"Males, under 18 years",11.1
+2019,New Brunswick,"Males, under 18 years",9.7
+2015,New Brunswick,Persons 18 to 64 years,16.5
+2016,New Brunswick,Persons 18 to 64 years,14
+2017,New Brunswick,Persons 18 to 64 years,13.1
+2018,New Brunswick,Persons 18 to 64 years,11.1
+2019,New Brunswick,Persons 18 to 64 years,9.9
+2015,New Brunswick,Persons 65 years and over,10.8
+2016,New Brunswick,Persons 65 years and over,9.6
+2017,New Brunswick,Persons 65 years and over,6.3
+2018,New Brunswick,Persons 65 years and over,5.3
+2019,New Brunswick,Persons 65 years and over,5.6
+2015,New Brunswick,Persons under 18 years,20.3
+2016,New Brunswick,Persons under 18 years,16.5
+2017,New Brunswick,Persons under 18 years,15.4
+2018,New Brunswick,Persons under 18 years,11.5
+2019,New Brunswick,Persons under 18 years,12.4
+2015,Newfoundland and Labrador,All persons,13.1
+2016,Newfoundland and Labrador,All persons,12.4
+2017,Newfoundland and Labrador,All persons,11.4
+2018,Newfoundland and Labrador,All persons,11.2
+2019,Newfoundland and Labrador,All persons,10.7
+2015,Newfoundland and Labrador,Females,14.6
+2016,Newfoundland and Labrador,Females,13.6
+2017,Newfoundland and Labrador,Females,12.9
+2018,Newfoundland and Labrador,Females,10.8
+2019,Newfoundland and Labrador,Females,11.7
+2015,Newfoundland and Labrador,"Females, 18 to 64 years",15.3
+2016,Newfoundland and Labrador,"Females, 18 to 64 years",15.3
+2017,Newfoundland and Labrador,"Females, 18 to 64 years",14.5
+2018,Newfoundland and Labrador,"Females, 18 to 64 years",12.3
+2019,Newfoundland and Labrador,"Females, 18 to 64 years",12.6
+2015,Newfoundland and Labrador,"Females, 65 years and over",10.3
+2016,Newfoundland and Labrador,"Females, 65 years and over",8.7
+2017,Newfoundland and Labrador,"Females, 65 years and over",8.1
+2018,Newfoundland and Labrador,"Females, 65 years and over",5.7
+2019,Newfoundland and Labrador,"Females, 65 years and over",7.4
+2015,Newfoundland and Labrador,"Females, under 18 years",16.9
+2016,Newfoundland and Labrador,"Females, under 18 years",13
+2017,Newfoundland and Labrador,"Females, under 18 years",12.6
+2018,Newfoundland and Labrador,"Females, under 18 years",12.1
+2019,Newfoundland and Labrador,"Females, under 18 years",14.4
+2015,Newfoundland and Labrador,Males,11.6
+2016,Newfoundland and Labrador,Males,11.1
+2017,Newfoundland and Labrador,Males,9.9
+2018,Newfoundland and Labrador,Males,11.6
+2019,Newfoundland and Labrador,Males,9.6
+2015,Newfoundland and Labrador,"Males, 18 to 64 years",12.3
+2016,Newfoundland and Labrador,"Males, 18 to 64 years",11.5
+2017,Newfoundland and Labrador,"Males, 18 to 64 years",10.8
+2018,Newfoundland and Labrador,"Males, 18 to 64 years",14.9
+2019,Newfoundland and Labrador,"Males, 18 to 64 years",9.9
+2015,Newfoundland and Labrador,"Males, 65 years and over",6.6
+2016,Newfoundland and Labrador,"Males, 65 years and over",7.2
+2017,Newfoundland and Labrador,"Males, 65 years and over",5.1
+2018,Newfoundland and Labrador,"Males, 65 years and over",2.4
+2019,Newfoundland and Labrador,"Males, 65 years and over",4.4
+2015,Newfoundland and Labrador,"Males, under 18 years",13.9
+2016,Newfoundland and Labrador,"Males, under 18 years",13.9
+2017,Newfoundland and Labrador,"Males, under 18 years",11.5
+2018,Newfoundland and Labrador,"Males, under 18 years",10.3
+2019,Newfoundland and Labrador,"Males, under 18 years",14.9
+2015,Newfoundland and Labrador,Persons 18 to 64 years,13.8
+2016,Newfoundland and Labrador,Persons 18 to 64 years,13.4
+2017,Newfoundland and Labrador,Persons 18 to 64 years,12.7
+2018,Newfoundland and Labrador,Persons 18 to 64 years,13.6
+2019,Newfoundland and Labrador,Persons 18 to 64 years,11.2
+2015,Newfoundland and Labrador,Persons 65 years and over,8.6
+2016,Newfoundland and Labrador,Persons 65 years and over,8
+2017,Newfoundland and Labrador,Persons 65 years and over,6.7
+2018,Newfoundland and Labrador,Persons 65 years and over,4.1
+2019,Newfoundland and Labrador,Persons 65 years and over,6
+2015,Newfoundland and Labrador,Persons under 18 years,15.3
+2016,Newfoundland and Labrador,Persons under 18 years,13.4
+2017,Newfoundland and Labrador,Persons under 18 years,12
+2018,Newfoundland and Labrador,Persons under 18 years,11.2
+2019,Newfoundland and Labrador,Persons under 18 years,14.6
+2015,Nova Scotia,All persons,17
+2016,Nova Scotia,All persons,16.2
+2017,Nova Scotia,All persons,15
+2018,Nova Scotia,All persons,13.3
+2019,Nova Scotia,All persons,12.1
+2015,Nova Scotia,Females,17.5
+2016,Nova Scotia,Females,15.4
+2017,Nova Scotia,Females,16.3
+2018,Nova Scotia,Females,13.6
+2019,Nova Scotia,Females,13.3
+2015,Nova Scotia,"Females, 18 to 64 years",18
+2016,Nova Scotia,"Females, 18 to 64 years",17.3
+2017,Nova Scotia,"Females, 18 to 64 years",17.5
+2018,Nova Scotia,"Females, 18 to 64 years",14.8
+2019,Nova Scotia,"Females, 18 to 64 years",15.1
+2015,Nova Scotia,"Females, 65 years and over",12.4
+2016,Nova Scotia,"Females, 65 years and over",7.8
+2017,Nova Scotia,"Females, 65 years and over",8.6
+2018,Nova Scotia,"Females, 65 years and over",10.2
+2019,Nova Scotia,"Females, 65 years and over",9.7
+2015,Nova Scotia,"Females, under 18 years",22.3
+2016,Nova Scotia,"Females, under 18 years",17.6
+2017,Nova Scotia,"Females, under 18 years",21.6
+2018,Nova Scotia,"Females, under 18 years",13.3
+2019,Nova Scotia,"Females, under 18 years",11.6
+2015,Nova Scotia,Males,16.5
+2016,Nova Scotia,Males,17
+2017,Nova Scotia,Males,13.5
+2018,Nova Scotia,Males,13
+2019,Nova Scotia,Males,10.9
+2015,Nova Scotia,"Males, 18 to 64 years",18
+2016,Nova Scotia,"Males, 18 to 64 years",18.7
+2017,Nova Scotia,"Males, 18 to 64 years",15
+2018,Nova Scotia,"Males, 18 to 64 years",14.4
+2019,Nova Scotia,"Males, 18 to 64 years",12.2
+2015,Nova Scotia,"Males, 65 years and over",8.1
+2016,Nova Scotia,"Males, 65 years and over",8
+2017,Nova Scotia,"Males, 65 years and over",5
+2018,Nova Scotia,"Males, 65 years and over",5.7
+2019,Nova Scotia,"Males, 65 years and over",5.7
+2015,Nova Scotia,"Males, under 18 years",19.3
+2016,Nova Scotia,"Males, under 18 years",20.4
+2017,Nova Scotia,"Males, under 18 years",17.4
+2018,Nova Scotia,"Males, under 18 years",16.2
+2019,Nova Scotia,"Males, under 18 years",11.8
+2015,Nova Scotia,Persons 18 to 64 years,18
+2016,Nova Scotia,Persons 18 to 64 years,18
+2017,Nova Scotia,Persons 18 to 64 years,16.3
+2018,Nova Scotia,Persons 18 to 64 years,14.6
+2019,Nova Scotia,Persons 18 to 64 years,13.7
+2015,Nova Scotia,Persons 65 years and over,10.5
+2016,Nova Scotia,Persons 65 years and over,7.9
+2017,Nova Scotia,Persons 65 years and over,6.9
+2018,Nova Scotia,Persons 65 years and over,8.1
+2019,Nova Scotia,Persons 65 years and over,7.8
+2015,Nova Scotia,Persons under 18 years,20.7
+2016,Nova Scotia,Persons under 18 years,19.1
+2017,Nova Scotia,Persons under 18 years,19.4
+2018,Nova Scotia,Persons under 18 years,14.8
+2019,Nova Scotia,Persons under 18 years,11.7
+2015,Ontario,All persons,15.1
+2016,Ontario,All persons,13.6
+2017,Ontario,All persons,12.2
+2018,Ontario,All persons,11.6
+2019,Ontario,All persons,10.9
+2015,Ontario,Females,15.5
+2016,Ontario,Females,14.7
+2017,Ontario,Females,12.2
+2018,Ontario,Females,11.4
+2019,Ontario,Females,11.7
+2015,Ontario,"Females, 18 to 64 years",16.8
+2016,Ontario,"Females, 18 to 64 years",15.9
+2017,Ontario,"Females, 18 to 64 years",13.9
+2018,Ontario,"Females, 18 to 64 years",12.9
+2019,Ontario,"Females, 18 to 64 years",12.9
+2015,Ontario,"Females, 65 years and over",7.1
+2016,Ontario,"Females, 65 years and over",7
+2017,Ontario,"Females, 65 years and over",5.6
+2018,Ontario,"Females, 65 years and over",5.5
+2019,Ontario,"Females, 65 years and over",6.3
+2015,Ontario,"Females, under 18 years",18.5
+2016,Ontario,"Females, under 18 years",17.8
+2017,Ontario,"Females, under 18 years",12.8
+2018,Ontario,"Females, under 18 years",12
+2019,Ontario,"Females, under 18 years",13
+2015,Ontario,Males,14.8
+2016,Ontario,Males,12.5
+2017,Ontario,Males,12.1
+2018,Ontario,Males,11.9
+2019,Ontario,Males,10.1
+2015,Ontario,"Males, 18 to 64 years",16.1
+2016,Ontario,"Males, 18 to 64 years",13.9
+2017,Ontario,"Males, 18 to 64 years",13.8
+2018,Ontario,"Males, 18 to 64 years",13.1
+2019,Ontario,"Males, 18 to 64 years",11
+2015,Ontario,"Males, 65 years and over",4.6
+2016,Ontario,"Males, 65 years and over",5.9
+2017,Ontario,"Males, 65 years and over",5.1
+2018,Ontario,"Males, 65 years and over",5.3
+2019,Ontario,"Males, 65 years and over",4.8
+2015,Ontario,"Males, under 18 years",18
+2016,Ontario,"Males, under 18 years",13.1
+2017,Ontario,"Males, under 18 years",11.8
+2018,Ontario,"Males, under 18 years",13
+2019,Ontario,"Males, under 18 years",11.2
+2015,Ontario,Persons 18 to 64 years,16.4
+2016,Ontario,Persons 18 to 64 years,14.9
+2017,Ontario,Persons 18 to 64 years,13.9
+2018,Ontario,Persons 18 to 64 years,13
+2019,Ontario,Persons 18 to 64 years,11.9
+2015,Ontario,Persons 65 years and over,6
+2016,Ontario,Persons 65 years and over,6.5
+2017,Ontario,Persons 65 years and over,5.4
+2018,Ontario,Persons 65 years and over,5.4
+2019,Ontario,Persons 65 years and over,5.6
+2015,Ontario,Persons under 18 years,18.2
+2016,Ontario,Persons under 18 years,15.4
+2017,Ontario,Persons under 18 years,12.3
+2018,Ontario,Persons under 18 years,12.5
+2019,Ontario,Persons under 18 years,12.1
+2015,"Ottawa-Gatineau, Ontario/Quebec",All persons,13.4
+2016,"Ottawa-Gatineau, Ontario/Quebec",All persons,10.6
+2017,"Ottawa-Gatineau, Ontario/Quebec",All persons,10.8
+2018,"Ottawa-Gatineau, Ontario/Quebec",All persons,11.1
+2019,"Ottawa-Gatineau, Ontario/Quebec",All persons,8.2
+2015,"Ottawa-Gatineau, Ontario/Quebec",Females,14.4
+2016,"Ottawa-Gatineau, Ontario/Quebec",Females,10.6
+2017,"Ottawa-Gatineau, Ontario/Quebec",Females,10.8
+2018,"Ottawa-Gatineau, Ontario/Quebec",Females,10.3
+2019,"Ottawa-Gatineau, Ontario/Quebec",Females,7.8
+2015,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",16.1
+2016,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",12.2
+2017,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",13
+2018,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",11.4
+2019,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",8.4
+2015,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",NA
+2016,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",NA
+2017,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",NA
+2018,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",5.2
+2019,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",6.6
+2015,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",14.6
+2016,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",11.3
+2017,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",7.2
+2018,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",10.9
+2019,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",NA
+2015,"Ottawa-Gatineau, Ontario/Quebec",Males,12.2
+2016,"Ottawa-Gatineau, Ontario/Quebec",Males,10.6
+2017,"Ottawa-Gatineau, Ontario/Quebec",Males,10.8
+2018,"Ottawa-Gatineau, Ontario/Quebec",Males,12
+2019,"Ottawa-Gatineau, Ontario/Quebec",Males,8.7
+2015,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",13.9
+2016,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",12.4
+2017,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",11.9
+2018,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",13.7
+2019,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",9.6
+2015,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",NA
+2016,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",NA
+2017,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",NA
+2018,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",4.8
+2019,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",NA
+2015,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",13.4
+2016,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",NA
+2017,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",10.8
+2018,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",NA
+2019,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",8.8
+2015,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,15.1
+2016,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,12.3
+2017,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,12.5
+2018,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,12.6
+2019,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,9
+2015,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,NA
+2016,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,NA
+2017,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,5.4
+2018,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,5
+2019,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,5.6
+2015,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,14.1
+2016,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,9.9
+2017,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,9
+2018,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,11.2
+2019,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,7.8
+2015,Prairie provinces,All persons,11.2
+2016,Prairie provinces,All persons,11.2
+2017,Prairie provinces,All persons,9.9
+2018,Prairie provinces,All persons,10
+2019,Prairie provinces,All persons,9.5
+2015,Prairie provinces,Females,11.7
+2016,Prairie provinces,Females,11.6
+2017,Prairie provinces,Females,10.5
+2018,Prairie provinces,Females,9.9
+2019,Prairie provinces,Females,9.1
+2015,Prairie provinces,"Females, 18 to 64 years",11.6
+2016,Prairie provinces,"Females, 18 to 64 years",12.6
+2017,Prairie provinces,"Females, 18 to 64 years",11.9
+2018,Prairie provinces,"Females, 18 to 64 years",11
+2019,Prairie provinces,"Females, 18 to 64 years",10.6
+2015,Prairie provinces,"Females, 65 years and over",5.2
+2016,Prairie provinces,"Females, 65 years and over",5.3
+2017,Prairie provinces,"Females, 65 years and over",4.3
+2018,Prairie provinces,"Females, 65 years and over",5.1
+2019,Prairie provinces,"Females, 65 years and over",3.8
+2015,Prairie provinces,"Females, under 18 years",16.2
+2016,Prairie provinces,"Females, under 18 years",12.4
+2017,Prairie provinces,"Females, under 18 years",10.5
+2018,Prairie provinces,"Females, under 18 years",9.9
+2019,Prairie provinces,"Females, under 18 years",8.7
+2015,Prairie provinces,Males,10.7
+2016,Prairie provinces,Males,10.9
+2017,Prairie provinces,Males,9.3
+2018,Prairie provinces,Males,10.1
+2019,Prairie provinces,Males,9.9
+2015,Prairie provinces,"Males, 18 to 64 years",11.1
+2016,Prairie provinces,"Males, 18 to 64 years",11.5
+2017,Prairie provinces,"Males, 18 to 64 years",10.4
+2018,Prairie provinces,"Males, 18 to 64 years",11.2
+2019,Prairie provinces,"Males, 18 to 64 years",10.8
+2015,Prairie provinces,"Males, 65 years and over",3.4
+2016,Prairie provinces,"Males, 65 years and over",4.8
+2017,Prairie provinces,"Males, 65 years and over",3.5
+2018,Prairie provinces,"Males, 65 years and over",3.2
+2019,Prairie provinces,"Males, 65 years and over",4.7
+2015,Prairie provinces,"Males, under 18 years",13.4
+2016,Prairie provinces,"Males, under 18 years",12.3
+2017,Prairie provinces,"Males, under 18 years",9.4
+2018,Prairie provinces,"Males, under 18 years",10.8
+2019,Prairie provinces,"Males, under 18 years",10.3
+2015,Prairie provinces,Persons 18 to 64 years,11.3
+2016,Prairie provinces,Persons 18 to 64 years,12
+2017,Prairie provinces,Persons 18 to 64 years,11.1
+2018,Prairie provinces,Persons 18 to 64 years,11.1
+2019,Prairie provinces,Persons 18 to 64 years,10.7
+2015,Prairie provinces,Persons 65 years and over,4.4
+2016,Prairie provinces,Persons 65 years and over,5
+2017,Prairie provinces,Persons 65 years and over,3.9
+2018,Prairie provinces,Persons 65 years and over,4.2
+2019,Prairie provinces,Persons 65 years and over,4.2
+2015,Prairie provinces,Persons under 18 years,14.8
+2016,Prairie provinces,Persons under 18 years,12.4
+2017,Prairie provinces,Persons under 18 years,9.9
+2018,Prairie provinces,Persons under 18 years,10.3
+2019,Prairie provinces,Persons under 18 years,9.5
+2015,Prince Edward Island,All persons,14.8
+2016,Prince Edward Island,All persons,11.8
+2017,Prince Edward Island,All persons,13.3
+2018,Prince Edward Island,All persons,11.9
+2019,Prince Edward Island,All persons,10.9
+2015,Prince Edward Island,Females,15.4
+2016,Prince Edward Island,Females,13.6
+2017,Prince Edward Island,Females,13.3
+2018,Prince Edward Island,Females,11.5
+2019,Prince Edward Island,Females,11.5
+2015,Prince Edward Island,"Females, 18 to 64 years",15.4
+2016,Prince Edward Island,"Females, 18 to 64 years",12.9
+2017,Prince Edward Island,"Females, 18 to 64 years",15.1
+2018,Prince Edward Island,"Females, 18 to 64 years",11.9
+2019,Prince Edward Island,"Females, 18 to 64 years",13.3
+2015,Prince Edward Island,"Females, 65 years and over",16.1
+2016,Prince Edward Island,"Females, 65 years and over",11.7
+2017,Prince Edward Island,"Females, 65 years and over",9.4
+2018,Prince Edward Island,"Females, 65 years and over",12.6
+2019,Prince Edward Island,"Females, 65 years and over",7.3
+2015,Prince Edward Island,"Females, under 18 years",15
+2016,Prince Edward Island,"Females, under 18 years",18.2
+2017,Prince Edward Island,"Females, under 18 years",11.3
+2018,Prince Edward Island,"Females, under 18 years",NA
+2019,Prince Edward Island,"Females, under 18 years",NA
+2015,Prince Edward Island,Males,14.2
+2016,Prince Edward Island,Males,9.8
+2017,Prince Edward Island,Males,13.3
+2018,Prince Edward Island,Males,12.3
+2019,Prince Edward Island,Males,10.2
+2015,Prince Edward Island,"Males, 18 to 64 years",15.5
+2016,Prince Edward Island,"Males, 18 to 64 years",10.9
+2017,Prince Edward Island,"Males, 18 to 64 years",13.4
+2018,Prince Edward Island,"Males, 18 to 64 years",14.4
+2019,Prince Edward Island,"Males, 18 to 64 years",9.5
+2015,Prince Edward Island,"Males, 65 years and over",8.5
+2016,Prince Edward Island,"Males, 65 years and over",NA
+2017,Prince Edward Island,"Males, 65 years and over",10.8
+2018,Prince Edward Island,"Males, 65 years and over",7.3
+2019,Prince Edward Island,"Males, 65 years and over",NA
+2015,Prince Edward Island,"Males, under 18 years",15.3
+2016,Prince Edward Island,"Males, under 18 years",11.9
+2017,Prince Edward Island,"Males, under 18 years",15.1
+2018,Prince Edward Island,"Males, under 18 years",10.4
+2019,Prince Edward Island,"Males, under 18 years",16.8
+2015,Prince Edward Island,Persons 18 to 64 years,15.4
+2016,Prince Edward Island,Persons 18 to 64 years,11.9
+2017,Prince Edward Island,Persons 18 to 64 years,14.3
+2018,Prince Edward Island,Persons 18 to 64 years,13.1
+2019,Prince Edward Island,Persons 18 to 64 years,11.4
+2015,Prince Edward Island,Persons 65 years and over,12.5
+2016,Prince Edward Island,Persons 65 years and over,7.9
+2017,Prince Edward Island,Persons 65 years and over,10.1
+2018,Prince Edward Island,Persons 65 years and over,10.1
+2019,Prince Edward Island,Persons 65 years and over,6.4
+2015,Prince Edward Island,Persons under 18 years,15.1
+2016,Prince Edward Island,Persons under 18 years,14.9
+2017,Prince Edward Island,Persons under 18 years,13.4
+2018,Prince Edward Island,Persons under 18 years,9.8
+2019,Prince Edward Island,Persons under 18 years,13.7
+2015,Quebec,All persons,13.7
+2016,Quebec,All persons,10.9
+2017,Quebec,All persons,10.8
+2018,Quebec,All persons,9.7
+2019,Quebec,All persons,8.7
+2015,Quebec,Females,13.8
+2016,Quebec,Females,10.9
+2017,Quebec,Females,10.8
+2018,Quebec,Females,9.9
+2019,Quebec,Females,8.1
+2015,Quebec,"Females, 18 to 64 years",16
+2016,Quebec,"Females, 18 to 64 years",11.7
+2017,Quebec,"Females, 18 to 64 years",12.2
+2018,Quebec,"Females, 18 to 64 years",11.8
+2019,Quebec,"Females, 18 to 64 years",9.9
+2015,Quebec,"Females, 65 years and over",7.5
+2016,Quebec,"Females, 65 years and over",7.6
+2017,Quebec,"Females, 65 years and over",6.9
+2018,Quebec,"Females, 65 years and over",6.2
+2019,Quebec,"Females, 65 years and over",5.5
+2015,Quebec,"Females, under 18 years",13
+2016,Quebec,"Females, under 18 years",11.4
+2017,Quebec,"Females, under 18 years",10.1
+2018,Quebec,"Females, under 18 years",7.3
+2019,Quebec,"Females, under 18 years",5.3
+2015,Quebec,Males,13.7
+2016,Quebec,Males,11
+2017,Quebec,Males,10.7
+2018,Quebec,Males,9.6
+2019,Quebec,Males,9.2
+2015,Quebec,"Males, 18 to 64 years",15.1
+2016,Quebec,"Males, 18 to 64 years",12.4
+2017,Quebec,"Males, 18 to 64 years",12.5
+2018,Quebec,"Males, 18 to 64 years",11.6
+2019,Quebec,"Males, 18 to 64 years",11.2
+2015,Quebec,"Males, 65 years and over",5.9
+2016,Quebec,"Males, 65 years and over",6.7
+2017,Quebec,"Males, 65 years and over",4.8
+2018,Quebec,"Males, 65 years and over",4.4
+2019,Quebec,"Males, 65 years and over",4.5
+2015,Quebec,"Males, under 18 years",15.1
+2016,Quebec,"Males, under 18 years",10
+2017,Quebec,"Males, under 18 years",10.1
+2018,Quebec,"Males, under 18 years",7.9
+2019,Quebec,"Males, under 18 years",7.2
+2015,Quebec,Persons 18 to 64 years,15.6
+2016,Quebec,Persons 18 to 64 years,12.1
+2017,Quebec,Persons 18 to 64 years,12.4
+2018,Quebec,Persons 18 to 64 years,11.7
+2019,Quebec,Persons 18 to 64 years,10.6
+2015,Quebec,Persons 65 years and over,6.8
+2016,Quebec,Persons 65 years and over,7.2
+2017,Quebec,Persons 65 years and over,5.9
+2018,Quebec,Persons 65 years and over,5.4
+2019,Quebec,Persons 65 years and over,5
+2015,Quebec,Persons under 18 years,14.1
+2016,Quebec,Persons under 18 years,10.7
+2017,Quebec,Persons under 18 years,10.1
+2018,Quebec,Persons under 18 years,7.6
+2019,Quebec,Persons under 18 years,6.2
+2015,"Québec, Quebec",All persons,8.1
+2016,"Québec, Quebec",All persons,6.7
+2017,"Québec, Quebec",All persons,5.7
+2018,"Québec, Quebec",All persons,8.4
+2019,"Québec, Quebec",All persons,7.6
+2015,"Québec, Quebec",Females,7.9
+2016,"Québec, Quebec",Females,7.4
+2017,"Québec, Quebec",Females,5.4
+2018,"Québec, Quebec",Females,7.6
+2019,"Québec, Quebec",Females,7.2
+2015,"Québec, Quebec","Females, 18 to 64 years",9.1
+2016,"Québec, Quebec","Females, 18 to 64 years",7.6
+2017,"Québec, Quebec","Females, 18 to 64 years",6.6
+2018,"Québec, Quebec","Females, 18 to 64 years",9.8
+2019,"Québec, Quebec","Females, 18 to 64 years",9.1
+2015,"Québec, Quebec","Females, 65 years and over",NA
+2016,"Québec, Quebec","Females, 65 years and over",5.7
+2017,"Québec, Quebec","Females, 65 years and over",NA
+2018,"Québec, Quebec","Females, 65 years and over",NA
+2019,"Québec, Quebec","Females, 65 years and over",NA
+2015,"Québec, Quebec","Females, under 18 years",NA
+2016,"Québec, Quebec","Females, under 18 years",NA
+2017,"Québec, Quebec","Females, under 18 years",NA
+2018,"Québec, Quebec","Females, under 18 years",NA
+2019,"Québec, Quebec","Females, under 18 years",NA
+2015,"Québec, Quebec",Males,8.2
+2016,"Québec, Quebec",Males,5.9
+2017,"Québec, Quebec",Males,6.1
+2018,"Québec, Quebec",Males,9.1
+2019,"Québec, Quebec",Males,8.2
+2015,"Québec, Quebec","Males, 18 to 64 years",9.8
+2016,"Québec, Quebec","Males, 18 to 64 years",7
+2017,"Québec, Quebec","Males, 18 to 64 years",6.1
+2018,"Québec, Quebec","Males, 18 to 64 years",9.9
+2019,"Québec, Quebec","Males, 18 to 64 years",9.3
+2015,"Québec, Quebec","Males, 65 years and over",NA
+2016,"Québec, Quebec","Males, 65 years and over",NA
+2017,"Québec, Quebec","Males, 65 years and over",NA
+2018,"Québec, Quebec","Males, 65 years and over",NA
+2019,"Québec, Quebec","Males, 65 years and over",NA
+2015,"Québec, Quebec","Males, under 18 years",NA
+2016,"Québec, Quebec","Males, under 18 years",NA
+2017,"Québec, Quebec","Males, under 18 years",NA
+2018,"Québec, Quebec","Males, under 18 years",9.8
+2019,"Québec, Quebec","Males, under 18 years",NA
+2015,"Québec, Quebec",Persons 18 to 64 years,9.4
+2016,"Québec, Quebec",Persons 18 to 64 years,7.3
+2017,"Québec, Quebec",Persons 18 to 64 years,6.4
+2018,"Québec, Quebec",Persons 18 to 64 years,9.8
+2019,"Québec, Quebec",Persons 18 to 64 years,9.2
+2015,"Québec, Quebec",Persons 65 years and over,9.2
+2016,"Québec, Quebec",Persons 65 years and over,5.2
+2017,"Québec, Quebec",Persons 65 years and over,4.6
+2018,"Québec, Quebec",Persons 65 years and over,4.9
+2019,"Québec, Quebec",Persons 65 years and over,8.4
+2015,"Québec, Quebec",Persons under 18 years,NA
+2016,"Québec, Quebec",Persons under 18 years,NA
+2017,"Québec, Quebec",Persons under 18 years,NA
+2018,"Québec, Quebec",Persons under 18 years,NA
+2019,"Québec, Quebec",Persons under 18 years,NA
+2015,Saskatchewan,All persons,12.7
+2016,Saskatchewan,All persons,11.5
+2017,Saskatchewan,All persons,12.2
+2018,Saskatchewan,All persons,11.2
+2019,Saskatchewan,All persons,12.4
+2015,Saskatchewan,Females,14.2
+2016,Saskatchewan,Females,12.3
+2017,Saskatchewan,Females,12.5
+2018,Saskatchewan,Females,11.5
+2019,Saskatchewan,Females,11.8
+2015,Saskatchewan,"Females, 18 to 64 years",14.4
+2016,Saskatchewan,"Females, 18 to 64 years",13.2
+2017,Saskatchewan,"Females, 18 to 64 years",13.5
+2018,Saskatchewan,"Females, 18 to 64 years",12.7
+2019,Saskatchewan,"Females, 18 to 64 years",13.4
+2015,Saskatchewan,"Females, 65 years and over",7.7
+2016,Saskatchewan,"Females, 65 years and over",7.6
+2017,Saskatchewan,"Females, 65 years and over",6
+2018,Saskatchewan,"Females, 65 years and over",5.9
+2019,Saskatchewan,"Females, 65 years and over",5.5
+2015,Saskatchewan,"Females, under 18 years",18.4
+2016,Saskatchewan,"Females, under 18 years",13.4
+2017,Saskatchewan,"Females, under 18 years",14.7
+2018,Saskatchewan,"Females, under 18 years",12.3
+2019,Saskatchewan,"Females, under 18 years",12.3
+2015,Saskatchewan,Males,11.3
+2016,Saskatchewan,Males,10.6
+2017,Saskatchewan,Males,11.9
+2018,Saskatchewan,Males,11
+2019,Saskatchewan,Males,13
+2015,Saskatchewan,"Males, 18 to 64 years",11.2
+2016,Saskatchewan,"Males, 18 to 64 years",11.3
+2017,Saskatchewan,"Males, 18 to 64 years",12.7
+2018,Saskatchewan,"Males, 18 to 64 years",12.8
+2019,Saskatchewan,"Males, 18 to 64 years",14.5
+2015,Saskatchewan,"Males, 65 years and over",4.4
+2016,Saskatchewan,"Males, 65 years and over",6.2
+2017,Saskatchewan,"Males, 65 years and over",4.7
+2018,Saskatchewan,"Males, 65 years and over",3.2
+2019,Saskatchewan,"Males, 65 years and over",6.4
+2015,Saskatchewan,"Males, under 18 years",15.7
+2016,Saskatchewan,"Males, under 18 years",11.5
+2017,Saskatchewan,"Males, under 18 years",14.3
+2018,Saskatchewan,"Males, under 18 years",10.8
+2019,Saskatchewan,"Males, under 18 years",12.9
+2015,Saskatchewan,Persons 18 to 64 years,12.8
+2016,Saskatchewan,Persons 18 to 64 years,12.2
+2017,Saskatchewan,Persons 18 to 64 years,13.1
+2018,Saskatchewan,Persons 18 to 64 years,12.7
+2019,Saskatchewan,Persons 18 to 64 years,14
+2015,Saskatchewan,Persons 65 years and over,6.2
+2016,Saskatchewan,Persons 65 years and over,7
+2017,Saskatchewan,Persons 65 years and over,5.4
+2018,Saskatchewan,Persons 65 years and over,4.6
+2019,Saskatchewan,Persons 65 years and over,5.9
+2015,Saskatchewan,Persons under 18 years,17.1
+2016,Saskatchewan,Persons under 18 years,12.4
+2017,Saskatchewan,Persons under 18 years,14.5
+2018,Saskatchewan,Persons under 18 years,11.6
+2019,Saskatchewan,Persons under 18 years,12.6
+2015,"Toronto, Ontario",All persons,19.2
+2016,"Toronto, Ontario",All persons,17.4
+2017,"Toronto, Ontario",All persons,14.2
+2018,"Toronto, Ontario",All persons,13.9
+2019,"Toronto, Ontario",All persons,13.4
+2015,"Toronto, Ontario",Females,19.8
+2016,"Toronto, Ontario",Females,18.9
+2017,"Toronto, Ontario",Females,14.3
+2018,"Toronto, Ontario",Females,13.1
+2019,"Toronto, Ontario",Females,14.4
+2015,"Toronto, Ontario","Females, 18 to 64 years",20.3
+2016,"Toronto, Ontario","Females, 18 to 64 years",19.5
+2017,"Toronto, Ontario","Females, 18 to 64 years",15.3
+2018,"Toronto, Ontario","Females, 18 to 64 years",14.3
+2019,"Toronto, Ontario","Females, 18 to 64 years",14.6
+2015,"Toronto, Ontario","Females, 65 years and over",10.1
+2016,"Toronto, Ontario","Females, 65 years and over",8.7
+2017,"Toronto, Ontario","Females, 65 years and over",6.6
+2018,"Toronto, Ontario","Females, 65 years and over",6.9
+2019,"Toronto, Ontario","Females, 65 years and over",7.8
+2015,"Toronto, Ontario","Females, under 18 years",25.1
+2016,"Toronto, Ontario","Females, under 18 years",25.2
+2017,"Toronto, Ontario","Females, under 18 years",16.9
+2018,"Toronto, Ontario","Females, under 18 years",14.3
+2019,"Toronto, Ontario","Females, under 18 years",19.1
+2015,"Toronto, Ontario",Males,18.6
+2016,"Toronto, Ontario",Males,15.8
+2017,"Toronto, Ontario",Males,14.1
+2018,"Toronto, Ontario",Males,14.6
+2019,"Toronto, Ontario",Males,12.3
+2015,"Toronto, Ontario","Males, 18 to 64 years",19.3
+2016,"Toronto, Ontario","Males, 18 to 64 years",16.5
+2017,"Toronto, Ontario","Males, 18 to 64 years",15.4
+2018,"Toronto, Ontario","Males, 18 to 64 years",15.6
+2019,"Toronto, Ontario","Males, 18 to 64 years",12
+2015,"Toronto, Ontario","Males, 65 years and over",6.5
+2016,"Toronto, Ontario","Males, 65 years and over",10.7
+2017,"Toronto, Ontario","Males, 65 years and over",7.5
+2018,"Toronto, Ontario","Males, 65 years and over",8.2
+2019,"Toronto, Ontario","Males, 65 years and over",7.8
+2015,"Toronto, Ontario","Males, under 18 years",23.1
+2016,"Toronto, Ontario","Males, under 18 years",16.8
+2017,"Toronto, Ontario","Males, under 18 years",14
+2018,"Toronto, Ontario","Males, under 18 years",16.1
+2019,"Toronto, Ontario","Males, under 18 years",16.6
+2015,"Toronto, Ontario",Persons 18 to 64 years,19.8
+2016,"Toronto, Ontario",Persons 18 to 64 years,18
+2017,"Toronto, Ontario",Persons 18 to 64 years,15.3
+2018,"Toronto, Ontario",Persons 18 to 64 years,14.9
+2019,"Toronto, Ontario",Persons 18 to 64 years,13.3
+2015,"Toronto, Ontario",Persons 65 years and over,8.5
+2016,"Toronto, Ontario",Persons 65 years and over,9.6
+2017,"Toronto, Ontario",Persons 65 years and over,7
+2018,"Toronto, Ontario",Persons 65 years and over,7.5
+2019,"Toronto, Ontario",Persons 65 years and over,7.8
+2015,"Toronto, Ontario",Persons under 18 years,24.1
+2016,"Toronto, Ontario",Persons under 18 years,21.1
+2017,"Toronto, Ontario",Persons under 18 years,15.4
+2018,"Toronto, Ontario",Persons under 18 years,15.2
+2019,"Toronto, Ontario",Persons under 18 years,17.9
+2015,"Vancouver, British Columbia",All persons,18.4
+2016,"Vancouver, British Columbia",All persons,14.9
+2017,"Vancouver, British Columbia",All persons,14.9
+2018,"Vancouver, British Columbia",All persons,12.4
+2019,"Vancouver, British Columbia",All persons,10.6
+2015,"Vancouver, British Columbia",Females,18.6
+2016,"Vancouver, British Columbia",Females,14.6
+2017,"Vancouver, British Columbia",Females,14.6
+2018,"Vancouver, British Columbia",Females,11.8
+2019,"Vancouver, British Columbia",Females,11.7
+2015,"Vancouver, British Columbia","Females, 18 to 64 years",19.9
+2016,"Vancouver, British Columbia","Females, 18 to 64 years",14.9
+2017,"Vancouver, British Columbia","Females, 18 to 64 years",16.3
+2018,"Vancouver, British Columbia","Females, 18 to 64 years",13.6
+2019,"Vancouver, British Columbia","Females, 18 to 64 years",14.8
+2015,"Vancouver, British Columbia","Females, 65 years and over",13.4
+2016,"Vancouver, British Columbia","Females, 65 years and over",10.9
+2017,"Vancouver, British Columbia","Females, 65 years and over",12.3
+2018,"Vancouver, British Columbia","Females, 65 years and over",8.7
+2019,"Vancouver, British Columbia","Females, 65 years and over",NA
+2015,"Vancouver, British Columbia","Females, under 18 years",18.6
+2016,"Vancouver, British Columbia","Females, under 18 years",16.8
+2017,"Vancouver, British Columbia","Females, under 18 years",NA
+2018,"Vancouver, British Columbia","Females, under 18 years",7.8
+2019,"Vancouver, British Columbia","Females, under 18 years",NA
+2015,"Vancouver, British Columbia",Males,18.1
+2016,"Vancouver, British Columbia",Males,15.3
+2017,"Vancouver, British Columbia",Males,15.2
+2018,"Vancouver, British Columbia",Males,13
+2019,"Vancouver, British Columbia",Males,9.6
+2015,"Vancouver, British Columbia","Males, 18 to 64 years",18.9
+2016,"Vancouver, British Columbia","Males, 18 to 64 years",16
+2017,"Vancouver, British Columbia","Males, 18 to 64 years",15.7
+2018,"Vancouver, British Columbia","Males, 18 to 64 years",14.2
+2019,"Vancouver, British Columbia","Males, 18 to 64 years",11.8
+2015,"Vancouver, British Columbia","Males, 65 years and over",15.7
+2016,"Vancouver, British Columbia","Males, 65 years and over",8.6
+2017,"Vancouver, British Columbia","Males, 65 years and over",12.3
+2018,"Vancouver, British Columbia","Males, 65 years and over",8.8
+2019,"Vancouver, British Columbia","Males, 65 years and over",5.6
+2015,"Vancouver, British Columbia","Males, under 18 years",17.1
+2016,"Vancouver, British Columbia","Males, under 18 years",18.6
+2017,"Vancouver, British Columbia","Males, under 18 years",15.6
+2018,"Vancouver, British Columbia","Males, under 18 years",12.2
+2019,"Vancouver, British Columbia","Males, under 18 years",NA
+2015,"Vancouver, British Columbia",Persons 18 to 64 years,19.4
+2016,"Vancouver, British Columbia",Persons 18 to 64 years,15.4
+2017,"Vancouver, British Columbia",Persons 18 to 64 years,16
+2018,"Vancouver, British Columbia",Persons 18 to 64 years,13.9
+2019,"Vancouver, British Columbia",Persons 18 to 64 years,13.3
+2015,"Vancouver, British Columbia",Persons 65 years and over,14.5
+2016,"Vancouver, British Columbia",Persons 65 years and over,9.8
+2017,"Vancouver, British Columbia",Persons 65 years and over,12.3
+2018,"Vancouver, British Columbia",Persons 65 years and over,8.7
+2019,"Vancouver, British Columbia",Persons 65 years and over,5.3
+2015,"Vancouver, British Columbia",Persons under 18 years,17.8
+2016,"Vancouver, British Columbia",Persons under 18 years,17.7
+2017,"Vancouver, British Columbia",Persons under 18 years,13.1
+2018,"Vancouver, British Columbia",Persons under 18 years,10.1
+2019,"Vancouver, British Columbia",Persons under 18 years,5.3
+2015,"Winnipeg, Manitoba",All persons,15.5
+2016,"Winnipeg, Manitoba",All persons,13.5
+2017,"Winnipeg, Manitoba",All persons,12.3
+2018,"Winnipeg, Manitoba",All persons,12
+2019,"Winnipeg, Manitoba",All persons,11.2
+2015,"Winnipeg, Manitoba",Females,15.3
+2016,"Winnipeg, Manitoba",Females,13.3
+2017,"Winnipeg, Manitoba",Females,12.5
+2018,"Winnipeg, Manitoba",Females,12.1
+2019,"Winnipeg, Manitoba",Females,10.6
+2015,"Winnipeg, Manitoba","Females, 18 to 64 years",16.3
+2016,"Winnipeg, Manitoba","Females, 18 to 64 years",13.8
+2017,"Winnipeg, Manitoba","Females, 18 to 64 years",13
+2018,"Winnipeg, Manitoba","Females, 18 to 64 years",12.8
+2019,"Winnipeg, Manitoba","Females, 18 to 64 years",11.5
+2015,"Winnipeg, Manitoba","Females, 65 years and over",8.4
+2016,"Winnipeg, Manitoba","Females, 65 years and over",6.4
+2017,"Winnipeg, Manitoba","Females, 65 years and over",6.7
+2018,"Winnipeg, Manitoba","Females, 65 years and over",7.3
+2019,"Winnipeg, Manitoba","Females, 65 years and over",6.2
+2015,"Winnipeg, Manitoba","Females, under 18 years",17.3
+2016,"Winnipeg, Manitoba","Females, under 18 years",16.9
+2017,"Winnipeg, Manitoba","Females, under 18 years",15.6
+2018,"Winnipeg, Manitoba","Females, under 18 years",14.2
+2019,"Winnipeg, Manitoba","Females, under 18 years",11
+2015,"Winnipeg, Manitoba",Males,15.8
+2016,"Winnipeg, Manitoba",Males,13.6
+2017,"Winnipeg, Manitoba",Males,12
+2018,"Winnipeg, Manitoba",Males,11.8
+2019,"Winnipeg, Manitoba",Males,11.9
+2015,"Winnipeg, Manitoba","Males, 18 to 64 years",15.6
+2016,"Winnipeg, Manitoba","Males, 18 to 64 years",14
+2017,"Winnipeg, Manitoba","Males, 18 to 64 years",13.2
+2018,"Winnipeg, Manitoba","Males, 18 to 64 years",12.6
+2019,"Winnipeg, Manitoba","Males, 18 to 64 years",12.4
+2015,"Winnipeg, Manitoba","Males, 65 years and over",NA
+2016,"Winnipeg, Manitoba","Males, 65 years and over",3.7
+2017,"Winnipeg, Manitoba","Males, 65 years and over",6
+2018,"Winnipeg, Manitoba","Males, 65 years and over",4.9
+2019,"Winnipeg, Manitoba","Males, 65 years and over",7
+2015,"Winnipeg, Manitoba","Males, under 18 years",24.5
+2016,"Winnipeg, Manitoba","Males, under 18 years",18.4
+2017,"Winnipeg, Manitoba","Males, under 18 years",12
+2018,"Winnipeg, Manitoba","Males, under 18 years",14.5
+2019,"Winnipeg, Manitoba","Males, under 18 years",13.9
+2015,"Winnipeg, Manitoba",Persons 18 to 64 years,15.9
+2016,"Winnipeg, Manitoba",Persons 18 to 64 years,13.9
+2017,"Winnipeg, Manitoba",Persons 18 to 64 years,13.1
+2018,"Winnipeg, Manitoba",Persons 18 to 64 years,12.7
+2019,"Winnipeg, Manitoba",Persons 18 to 64 years,11.9
+2015,"Winnipeg, Manitoba",Persons 65 years and over,5.9
+2016,"Winnipeg, Manitoba",Persons 65 years and over,5.2
+2017,"Winnipeg, Manitoba",Persons 65 years and over,6.4
+2018,"Winnipeg, Manitoba",Persons 65 years and over,6.2
+2019,"Winnipeg, Manitoba",Persons 65 years and over,6.6
+2015,"Winnipeg, Manitoba",Persons under 18 years,20.8
+2016,"Winnipeg, Manitoba",Persons under 18 years,17.7
+2017,"Winnipeg, Manitoba",Persons under 18 years,13.8
+2018,"Winnipeg, Manitoba",Persons under 18 years,14.4
+2019,"Winnipeg, Manitoba",Persons under 18 years,12.4
diff --git a/tests/assets/progress-calculation/data/temp/indicator_1-a-2.csv b/tests/assets/progress-calculation/data/temp/indicator_1-a-2.csv
new file mode 100644
index 00000000..7e1868f7
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_1-a-2.csv
@@ -0,0 +1,351 @@
+Year,Geography,Function of Government,Value
+2015,,,57.781
+2016,,,58.964
+2017,,,58.478
+2018,,,57.519
+2019,,,56.143
+2015,Canada,Education,1.343
+2015,Canada,Health,11.972
+2015,Canada,Other expenditure,42.219
+2015,Canada,Social protection,44.466
+2016,Canada,Education,1.523
+2016,Canada,Health,11.839
+2016,Canada,Other expenditure,41.036
+2016,Canada,Social protection,45.602
+2017,Canada,Education,1.64
+2017,Canada,Health,11.65
+2017,Canada,Other expenditure,41.522
+2017,Canada,Social protection,45.189
+2018,Canada,Education,1.772
+2018,Canada,Health,11.746
+2018,Canada,Other expenditure,42.481
+2018,Canada,Social protection,44.001
+2019,Canada,Education,1.887
+2019,Canada,Health,11.643
+2019,Canada,Other expenditure,43.857
+2019,Canada,Social protection,42.613
+2015,Alberta,,74.022
+2015,British Columbia,,75.654
+2015,Manitoba,,74.61
+2015,New Brunswick,,70.78
+2015,Newfoundland and Labrador,,72.6
+2015,Northwest Territories,,56.625
+2015,Nova Scotia,,74.239
+2015,Nunavut,,50.217
+2015,Ontario,,75.195
+2015,Prince Edward Island,,74.841
+2015,Quebec,,71.828
+2015,Saskatchewan,,75.657
+2015,Yukon,,49.511
+2016,Alberta,,71.854
+2016,British Columbia,,75.452
+2016,Manitoba,,74.876
+2016,New Brunswick,,69.305
+2016,Newfoundland and Labrador,,71.196
+2016,Northwest Territories,,58.8
+2016,Nova Scotia,,72.51
+2016,Nunavut,,49.443
+2016,Ontario,,75.284
+2016,Prince Edward Island,,74.853
+2016,Quebec,,72.028
+2016,Saskatchewan,,74.423
+2016,Yukon,,52.433
+2017,Alberta,,71.505
+2017,British Columbia,,75.563
+2017,Manitoba,,75.184
+2017,New Brunswick,,69.022
+2017,Newfoundland and Labrador,,72.257
+2017,Northwest Territories,,58.104
+2017,Nova Scotia,,71.737
+2017,Nunavut,,50.462
+2017,Ontario,,75.359
+2017,Prince Edward Island,,74.541
+2017,Quebec,,71.33
+2017,Saskatchewan,,75.912
+2017,Yukon,,53.252
+2018,Alberta,,71.908
+2018,British Columbia,,75.793
+2018,Manitoba,,75.86
+2018,New Brunswick,,69.416
+2018,Newfoundland and Labrador,,73.095
+2018,Northwest Territories,,58.13
+2018,Nova Scotia,,72.743
+2018,Nunavut,,50.431
+2018,Ontario,,74.174
+2018,Prince Edward Island,,73.875
+2018,Quebec,,71.362
+2018,Saskatchewan,,75.536
+2018,Yukon,,50
+2019,Alberta,,70.518
+2019,British Columbia,,76.414
+2019,Manitoba,,75.133
+2019,New Brunswick,,69.424
+2019,Newfoundland and Labrador,,73.122
+2019,Northwest Territories,,58.151
+2019,Nova Scotia,,72.332
+2019,Nunavut,,50.486
+2019,Ontario,,74.231
+2019,Prince Edward Island,,73.789
+2019,Quebec,,71.321
+2019,Saskatchewan,,75.232
+2019,Yukon,,49.812
+2015,Alberta,Education,27.241
+2015,Alberta,Health,38.901
+2015,Alberta,Other expenditure,25.978
+2015,Alberta,Social protection,7.88
+2015,British Columbia,Education,22.725
+2015,British Columbia,Health,43.504
+2015,British Columbia,Other expenditure,24.346
+2015,British Columbia,Social protection,9.426
+2015,Manitoba,Education,22.516
+2015,Manitoba,Health,42.597
+2015,Manitoba,Other expenditure,25.39
+2015,Manitoba,Social protection,9.497
+2015,New Brunswick,Education,17.373
+2015,New Brunswick,Health,46.438
+2015,New Brunswick,Other expenditure,29.22
+2015,New Brunswick,Social protection,6.969
+2015,Newfoundland and Labrador,Education,23.318
+2015,Newfoundland and Labrador,Health,43.44
+2015,Newfoundland and Labrador,Other expenditure,27.4
+2015,Newfoundland and Labrador,Social protection,5.842
+2015,Northwest Territories,Education,14.187
+2015,Northwest Territories,Health,30.779
+2015,Northwest Territories,Other expenditure,43.375
+2015,Northwest Territories,Social protection,11.659
+2015,Nova Scotia,Education,23.707
+2015,Nova Scotia,Health,42.287
+2015,Nova Scotia,Other expenditure,25.761
+2015,Nova Scotia,Social protection,8.246
+2015,Nunavut,Education,14.829
+2015,Nunavut,Health,20.221
+2015,Nunavut,Other expenditure,49.783
+2015,Nunavut,Social protection,15.166
+2015,Ontario,Education,24.663
+2015,Ontario,Health,37.564
+2015,Ontario,Other expenditure,24.805
+2015,Ontario,Social protection,12.968
+2015,Prince Edward Island,Education,25.053
+2015,Prince Edward Island,Health,44.118
+2015,Prince Edward Island,Other expenditure,25.159
+2015,Prince Edward Island,Social protection,5.67
+2015,Quebec,Education,18.983
+2015,Quebec,Health,33.347
+2015,Quebec,Other expenditure,28.172
+2015,Quebec,Social protection,19.497
+2015,Saskatchewan,Education,26.193
+2015,Saskatchewan,Health,38.236
+2015,Saskatchewan,Other expenditure,24.343
+2015,Saskatchewan,Social protection,11.228
+2015,Yukon,Education,15.014
+2015,Yukon,Health,24.93
+2015,Yukon,Other expenditure,50.489
+2015,Yukon,Social protection,9.567
+2016,Alberta,Education,26.613
+2016,Alberta,Health,37.103
+2016,Alberta,Other expenditure,28.146
+2016,Alberta,Social protection,8.137
+2016,British Columbia,Education,22.589
+2016,British Columbia,Health,43.501
+2016,British Columbia,Other expenditure,24.548
+2016,British Columbia,Social protection,9.362
+2016,Manitoba,Education,22.241
+2016,Manitoba,Health,43.656
+2016,Manitoba,Other expenditure,25.124
+2016,Manitoba,Social protection,8.979
+2016,New Brunswick,Education,16.659
+2016,New Brunswick,Health,45.284
+2016,New Brunswick,Other expenditure,30.695
+2016,New Brunswick,Social protection,7.362
+2016,Newfoundland and Labrador,Education,22.938
+2016,Newfoundland and Labrador,Health,42.588
+2016,Newfoundland and Labrador,Other expenditure,28.804
+2016,Newfoundland and Labrador,Social protection,5.67
+2016,Northwest Territories,Education,14.064
+2016,Northwest Territories,Health,32.499
+2016,Northwest Territories,Other expenditure,41.2
+2016,Northwest Territories,Social protection,12.237
+2016,Nova Scotia,Education,22.462
+2016,Nova Scotia,Health,41.795
+2016,Nova Scotia,Other expenditure,27.49
+2016,Nova Scotia,Social protection,8.253
+2016,Nunavut,Education,14.578
+2016,Nunavut,Health,22.377
+2016,Nunavut,Other expenditure,50.557
+2016,Nunavut,Social protection,12.488
+2016,Ontario,Education,24.742
+2016,Ontario,Health,37.623
+2016,Ontario,Other expenditure,24.716
+2016,Ontario,Social protection,12.919
+2016,Prince Edward Island,Education,25.251
+2016,Prince Edward Island,Health,44.033
+2016,Prince Edward Island,Other expenditure,25.147
+2016,Prince Edward Island,Social protection,5.569
+2016,Quebec,Education,19.233
+2016,Quebec,Health,33.449
+2016,Quebec,Other expenditure,27.972
+2016,Quebec,Social protection,19.346
+2016,Saskatchewan,Education,26.334
+2016,Saskatchewan,Health,37.309
+2016,Saskatchewan,Other expenditure,25.577
+2016,Saskatchewan,Social protection,10.779
+2016,Yukon,Education,16.518
+2016,Yukon,Health,27.073
+2016,Yukon,Other expenditure,47.567
+2016,Yukon,Social protection,8.842
+2017,Alberta,Education,26.178
+2017,Alberta,Health,37.019
+2017,Alberta,Other expenditure,28.495
+2017,Alberta,Social protection,8.307
+2017,British Columbia,Education,23.181
+2017,British Columbia,Health,42.836
+2017,British Columbia,Other expenditure,24.437
+2017,British Columbia,Social protection,9.545
+2017,Manitoba,Education,22.789
+2017,Manitoba,Health,43.152
+2017,Manitoba,Other expenditure,24.816
+2017,Manitoba,Social protection,9.244
+2017,New Brunswick,Education,16.54
+2017,New Brunswick,Health,43.616
+2017,New Brunswick,Other expenditure,30.978
+2017,New Brunswick,Social protection,8.865
+2017,Newfoundland and Labrador,Education,22.108
+2017,Newfoundland and Labrador,Health,44.08
+2017,Newfoundland and Labrador,Other expenditure,27.743
+2017,Newfoundland and Labrador,Social protection,6.068
+2017,Northwest Territories,Education,13.849
+2017,Northwest Territories,Health,32.224
+2017,Northwest Territories,Other expenditure,41.896
+2017,Northwest Territories,Social protection,12.031
+2017,Nova Scotia,Education,22.757
+2017,Nova Scotia,Health,41.097
+2017,Nova Scotia,Other expenditure,28.263
+2017,Nova Scotia,Social protection,7.884
+2017,Nunavut,Education,14.298
+2017,Nunavut,Health,24.197
+2017,Nunavut,Other expenditure,49.538
+2017,Nunavut,Social protection,11.967
+2017,Ontario,Education,25.766
+2017,Ontario,Health,36.795
+2017,Ontario,Other expenditure,24.641
+2017,Ontario,Social protection,12.798
+2017,Prince Edward Island,Education,24.77
+2017,Prince Edward Island,Health,44.39
+2017,Prince Edward Island,Other expenditure,25.459
+2017,Prince Edward Island,Social protection,5.381
+2017,Quebec,Education,19.312
+2017,Quebec,Health,33.201
+2017,Quebec,Other expenditure,28.67
+2017,Quebec,Social protection,18.818
+2017,Saskatchewan,Education,26.014
+2017,Saskatchewan,Health,38.787
+2017,Saskatchewan,Other expenditure,24.088
+2017,Saskatchewan,Social protection,11.112
+2017,Yukon,Education,16.531
+2017,Yukon,Health,27.236
+2017,Yukon,Other expenditure,46.748
+2017,Yukon,Social protection,9.485
+2018,Alberta,Education,25.131
+2018,Alberta,Health,37.805
+2018,Alberta,Other expenditure,28.092
+2018,Alberta,Social protection,8.971
+2018,British Columbia,Education,22.759
+2018,British Columbia,Health,42.577
+2018,British Columbia,Other expenditure,24.207
+2018,British Columbia,Social protection,10.457
+2018,Manitoba,Education,23.26
+2018,Manitoba,Health,43.143
+2018,Manitoba,Other expenditure,24.14
+2018,Manitoba,Social protection,9.457
+2018,New Brunswick,Education,16.717
+2018,New Brunswick,Health,43.789
+2018,New Brunswick,Other expenditure,30.584
+2018,New Brunswick,Social protection,8.91
+2018,Newfoundland and Labrador,Education,21.94
+2018,Newfoundland and Labrador,Health,45.525
+2018,Newfoundland and Labrador,Other expenditure,26.905
+2018,Newfoundland and Labrador,Social protection,5.629
+2018,Northwest Territories,Education,13.525
+2018,Northwest Territories,Health,32.409
+2018,Northwest Territories,Other expenditure,41.87
+2018,Northwest Territories,Social protection,12.195
+2018,Nova Scotia,Education,23.11
+2018,Nova Scotia,Health,41.988
+2018,Nova Scotia,Other expenditure,27.257
+2018,Nova Scotia,Social protection,7.645
+2018,Nunavut,Education,14.022
+2018,Nunavut,Health,24.149
+2018,Nunavut,Other expenditure,49.569
+2018,Nunavut,Social protection,12.259
+2018,Ontario,Education,25.594
+2018,Ontario,Health,35.842
+2018,Ontario,Other expenditure,25.826
+2018,Ontario,Social protection,12.738
+2018,Prince Edward Island,Education,25
+2018,Prince Edward Island,Health,43.25
+2018,Prince Edward Island,Other expenditure,26.125
+2018,Prince Edward Island,Social protection,5.625
+2018,Quebec,Education,19.526
+2018,Quebec,Health,33.169
+2018,Quebec,Other expenditure,28.638
+2018,Quebec,Social protection,18.668
+2018,Saskatchewan,Education,26.611
+2018,Saskatchewan,Health,37.706
+2018,Saskatchewan,Other expenditure,24.464
+2018,Saskatchewan,Social protection,11.218
+2018,Yukon,Education,15.443
+2018,Yukon,Health,25.316
+2018,Yukon,Other expenditure,50
+2018,Yukon,Social protection,9.241
+2019,Alberta,Education,24.553
+2019,Alberta,Health,37.333
+2019,Alberta,Other expenditure,29.482
+2019,Alberta,Social protection,8.632
+2019,British Columbia,Education,22.75
+2019,British Columbia,Health,42.614
+2019,British Columbia,Other expenditure,23.586
+2019,British Columbia,Social protection,11.05
+2019,Manitoba,Education,23.42
+2019,Manitoba,Health,42.618
+2019,Manitoba,Other expenditure,24.867
+2019,Manitoba,Social protection,9.094
+2019,New Brunswick,Education,16.647
+2019,New Brunswick,Health,43.987
+2019,New Brunswick,Other expenditure,30.576
+2019,New Brunswick,Social protection,8.789
+2019,Newfoundland and Labrador,Education,21.846
+2019,Newfoundland and Labrador,Health,45.513
+2019,Newfoundland and Labrador,Other expenditure,26.878
+2019,Newfoundland and Labrador,Social protection,5.763
+2019,Northwest Territories,Education,13.537
+2019,Northwest Territories,Health,32.387
+2019,Northwest Territories,Other expenditure,41.849
+2019,Northwest Territories,Social protection,12.227
+2019,Nova Scotia,Education,22.86
+2019,Nova Scotia,Health,42.144
+2019,Nova Scotia,Other expenditure,27.668
+2019,Nova Scotia,Social protection,7.328
+2019,Nunavut,Education,14.1
+2019,Nunavut,Health,24.19
+2019,Nunavut,Other expenditure,49.514
+2019,Nunavut,Social protection,12.196
+2019,Ontario,Education,25.045
+2019,Ontario,Health,36.546
+2019,Ontario,Other expenditure,25.769
+2019,Ontario,Social protection,12.64
+2019,Prince Edward Island,Education,24.849
+2019,Prince Edward Island,Health,43.16
+2019,Prince Edward Island,Other expenditure,26.211
+2019,Prince Edward Island,Social protection,5.781
+2019,Quebec,Education,19.717
+2019,Quebec,Health,33.009
+2019,Quebec,Other expenditure,28.679
+2019,Quebec,Social protection,18.595
+2019,Saskatchewan,Education,26.027
+2019,Saskatchewan,Health,38.214
+2019,Saskatchewan,Other expenditure,24.768
+2019,Saskatchewan,Social protection,10.991
+2019,Yukon,Education,15.707
+2019,Yukon,Health,25.407
+2019,Yukon,Other expenditure,50.188
+2019,Yukon,Social protection,8.698
diff --git a/tests/assets/progress-calculation/data/temp/indicator_10-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_10-2-1.csv
new file mode 100644
index 00000000..08f38a15
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_10-2-1.csv
@@ -0,0 +1,1261 @@
+Year,Geography,Persons in low income,GeoCode,Value
+2015,"","",,14.2
+2016,"","",,13
+2017,"","",,12.6
+2018,"","",,12.3
+2019,"","",,12.1
+2015,Canada,Persons under 18 years,,15.2
+2015,Canada,Persons 18 to 64 years,,13.9
+2015,Canada,Persons 65 years and over,,14.3
+2015,Canada,Males,,13.7
+2015,Canada,"Males, under 18 years",,15
+2015,Canada,"Males, 18 to 64 years",,13.6
+2015,Canada,"Males, 65 years and over",,11.9
+2015,Canada,Females,,14.7
+2015,Canada,"Females, under 18 years",,15.4
+2015,Canada,"Females, 18 to 64 years",,14.1
+2015,Canada,"Females, 65 years and over",,16.3
+2015,Atlantic provinces,All persons,,16.7
+2015,Atlantic provinces,Persons under 18 years,,17.5
+2015,Atlantic provinces,Persons 18 to 64 years,,14.9
+2015,Atlantic provinces,Persons 65 years and over,,22
+2015,Atlantic provinces,Males,,15.5
+2015,Atlantic provinces,"Males, under 18 years",,16.8
+2015,Atlantic provinces,"Males, 18 to 64 years",,14.5
+2015,Atlantic provinces,"Males, 65 years and over",,18
+2015,Atlantic provinces,Females,,17.9
+2015,Atlantic provinces,"Females, under 18 years",,18.2
+2015,Atlantic provinces,"Females, 18 to 64 years",,15.4
+2015,Atlantic provinces,"Females, 65 years and over",,25.5
+2015,Newfoundland and Labrador,All persons,10,15.4
+2015,Newfoundland and Labrador,Persons under 18 years,,16.1
+2015,Newfoundland and Labrador,Persons 18 to 64 years,,11.7
+2015,Newfoundland and Labrador,Persons 65 years and over,,27.6
+2015,Newfoundland and Labrador,Males,,13
+2015,Newfoundland and Labrador,"Males, under 18 years",,15
+2015,Newfoundland and Labrador,"Males, 18 to 64 years",,9.8
+2015,Newfoundland and Labrador,"Males, 65 years and over",,22.9
+2015,Newfoundland and Labrador,Females,,17.7
+2015,Newfoundland and Labrador,"Females, under 18 years",,17.3
+2015,Newfoundland and Labrador,"Females, 18 to 64 years",,13.6
+2015,Newfoundland and Labrador,"Females, 65 years and over",,31.8
+2015,Prince Edward Island,All persons,11,15.9
+2015,Prince Edward Island,Persons under 18 years,,16.4
+2015,Prince Edward Island,Persons 18 to 64 years,,14.5
+2015,Prince Edward Island,Persons 65 years and over,,20.1
+2015,Prince Edward Island,Males,,14.4
+2015,Prince Edward Island,"Males, under 18 years",,14.4
+2015,Prince Edward Island,"Males, 18 to 64 years",,14.9
+2015,Prince Edward Island,"Males, 65 years and over",,12.7
+2015,Prince Edward Island,Females,,17.2
+2015,Prince Edward Island,"Females, under 18 years",,18.2
+2015,Prince Edward Island,"Females, 18 to 64 years",,14
+2015,Prince Edward Island,"Females, 65 years and over",,26.6
+2015,Nova Scotia,All persons,12,17.5
+2015,Nova Scotia,Persons under 18 years,,17.6
+2015,Nova Scotia,Persons 18 to 64 years,,16.4
+2015,Nova Scotia,Persons 65 years and over,,21
+2015,Nova Scotia,Males,,16.3
+2015,Nova Scotia,"Males, under 18 years",,15.9
+2015,Nova Scotia,"Males, 18 to 64 years",,16.1
+2015,Nova Scotia,"Males, 65 years and over",,17.2
+2015,Nova Scotia,Females,,18.6
+2015,Nova Scotia,"Females, under 18 years",,19.6
+2015,Nova Scotia,"Females, 18 to 64 years",,16.6
+2015,Nova Scotia,"Females, 65 years and over",,24.2
+2015,New Brunswick,All persons,13,16.9
+2015,New Brunswick,Persons under 18 years,,18.5
+2015,New Brunswick,Persons 18 to 64 years,,15.5
+2015,New Brunswick,Persons 65 years and over,,19.9
+2015,New Brunswick,Males,,16.5
+2015,New Brunswick,"Males, under 18 years",,19.6
+2015,New Brunswick,"Males, 18 to 64 years",,15.6
+2015,New Brunswick,"Males, 65 years and over",,16.5
+2015,New Brunswick,Females,,17.2
+2015,New Brunswick,"Females, under 18 years",,17.3
+2015,New Brunswick,"Females, 18 to 64 years",,15.4
+2015,New Brunswick,"Females, 65 years and over",,22.8
+2015,Quebec,All persons,24,16.2
+2015,Quebec,Persons under 18 years,,15.5
+2015,Quebec,Persons 18 to 64 years,,15.8
+2015,Quebec,Persons 65 years and over,,18.4
+2015,Quebec,Males,,15.4
+2015,Quebec,"Males, under 18 years",,15
+2015,Quebec,"Males, 18 to 64 years",,15.4
+2015,Quebec,"Males, 65 years and over",,15.6
+2015,Quebec,Females,,17
+2015,Quebec,"Females, under 18 years",,16
+2015,Quebec,"Females, 18 to 64 years",,16.2
+2015,Quebec,"Females, 65 years and over",,20.7
+2015,Ontario,All persons,35,14.3
+2015,Ontario,Persons under 18 years,,15.8
+2015,Ontario,Persons 18 to 64 years,,14.2
+2015,Ontario,Persons 65 years and over,,12.5
+2015,Ontario,Males,,13.8
+2015,Ontario,"Males, under 18 years",,16.7
+2015,Ontario,"Males, 18 to 64 years",,13.8
+2015,Ontario,"Males, 65 years and over",,10
+2015,Ontario,Females,,14.7
+2015,Ontario,"Females, under 18 years",,14.8
+2015,Ontario,"Females, 18 to 64 years",,14.7
+2015,Ontario,"Females, 65 years and over",,14.6
+2015,Prairie provinces,All persons,,9.5
+2015,Prairie provinces,Persons under 18 years,,13.9
+2015,Prairie provinces,Persons 18 to 64 years,,8.3
+2015,Prairie provinces,Persons 65 years and over,,7.8
+2015,Prairie provinces,Males,,9.1
+2015,Prairie provinces,"Males, under 18 years",,12.9
+2015,Prairie provinces,"Males, 18 to 64 years",,8.3
+2015,Prairie provinces,"Males, 65 years and over",,6.3
+2015,Prairie provinces,Females,,9.9
+2015,Prairie provinces,"Females, under 18 years",,15.1
+2015,Prairie provinces,"Females, 18 to 64 years",,8.3
+2015,Prairie provinces,"Females, 65 years and over",,9.1
+2015,Manitoba,All persons,46,15.6
+2015,Manitoba,Persons under 18 years,,22.4
+2015,Manitoba,Persons 18 to 64 years,,13.7
+2015,Manitoba,Persons 65 years and over,,13.4
+2015,Manitoba,Males,,16
+2015,Manitoba,"Males, under 18 years",,26.2
+2015,Manitoba,"Males, 18 to 64 years",,13.9
+2015,Manitoba,"Males, 65 years and over",,9
+2015,Manitoba,Females,,15.2
+2015,Manitoba,"Females, under 18 years",,18.3
+2015,Manitoba,"Females, 18 to 64 years",,13.6
+2015,Manitoba,"Females, 65 years and over",,17.1
+2015,Saskatchewan,All persons,47,12.6
+2015,Saskatchewan,Persons under 18 years,,17.7
+2015,Saskatchewan,Persons 18 to 64 years,,10.8
+2015,Saskatchewan,Persons 65 years and over,,12.4
+2015,Saskatchewan,Males,,11.2
+2015,Saskatchewan,"Males, under 18 years",,17
+2015,Saskatchewan,"Males, 18 to 64 years",,9.4
+2015,Saskatchewan,"Males, 65 years and over",,10.3
+2015,Saskatchewan,Females,,14
+2015,Saskatchewan,"Females, under 18 years",,18.5
+2015,Saskatchewan,"Females, 18 to 64 years",,12.3
+2015,Saskatchewan,"Females, 65 years and over",,14.2
+2015,Alberta,All persons,48,6.9
+2015,Alberta,Persons under 18 years,,10.5
+2015,Alberta,Persons 18 to 64 years,,6.2
+2015,Alberta,Persons 65 years and over,,4.1
+2015,Alberta,Males,,6.6
+2015,Alberta,"Males, under 18 years",,8
+2015,Alberta,"Males, 18 to 64 years",,6.5
+2015,Alberta,"Males, 65 years and over",,4
+2015,Alberta,Females,,7.2
+2015,Alberta,"Females, under 18 years",,13.3
+2015,Alberta,"Females, 18 to 64 years",,5.8
+2015,Alberta,"Females, 65 years and over",,4.2
+2015,British Columbia,All persons,59,15.8
+2015,British Columbia,Persons under 18 years,,14
+2015,British Columbia,Persons 18 to 64 years,,16.8
+2015,British Columbia,Persons 65 years and over,,14.1
+2015,British Columbia,Males,,15.7
+2015,British Columbia,"Males, under 18 years",,12.8
+2015,British Columbia,"Males, 18 to 64 years",,17.3
+2015,British Columbia,"Males, 65 years and over",,12.7
+2015,British Columbia,Females,,15.9
+2015,British Columbia,"Females, under 18 years",,15.2
+2015,British Columbia,"Females, 18 to 64 years",,16.3
+2015,British Columbia,"Females, 65 years and over",,15.3
+2015,"Québec, Quebec",All persons,,9.9
+2015,"Québec, Quebec",Persons under 18 years,,
+2015,"Québec, Quebec",Persons 18 to 64 years,,9
+2015,"Québec, Quebec",Persons 65 years and over,,16.6
+2015,"Québec, Quebec",Males,,10.2
+2015,"Québec, Quebec","Males, under 18 years",,
+2015,"Québec, Quebec","Males, 18 to 64 years",,9.7
+2015,"Québec, Quebec","Males, 65 years and over",,13.9
+2015,"Québec, Quebec",Females,,9.7
+2015,"Québec, Quebec","Females, under 18 years",,
+2015,"Québec, Quebec","Females, 18 to 64 years",,8.4
+2015,"Québec, Quebec","Females, 65 years and over",,18.6
+2015,"Montréal, Quebec",All persons,,18.9
+2015,"Montréal, Quebec",Persons under 18 years,,20.3
+2015,"Montréal, Quebec",Persons 18 to 64 years,,19.1
+2015,"Montréal, Quebec",Persons 65 years and over,,16.1
+2015,"Montréal, Quebec",Males,,18.2
+2015,"Montréal, Quebec","Males, under 18 years",,20.5
+2015,"Montréal, Quebec","Males, 18 to 64 years",,18.4
+2015,"Montréal, Quebec","Males, 65 years and over",,14.4
+2015,"Montréal, Quebec",Females,,19.5
+2015,"Montréal, Quebec","Females, under 18 years",,20.2
+2015,"Montréal, Quebec","Females, 18 to 64 years",,19.8
+2015,"Montréal, Quebec","Females, 65 years and over",,17.4
+2015,"Ottawa-Gatineau, Ontario/Quebec",All persons,,10.8
+2015,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,,10.5
+2015,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,,11.4
+2015,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,,8.1
+2015,"Ottawa-Gatineau, Ontario/Quebec",Males,,9.8
+2015,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",,
+2015,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",,10.6
+2015,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",,
+2015,"Ottawa-Gatineau, Ontario/Quebec",Females,,11.7
+2015,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",,
+2015,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",,12.2
+2015,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",,8.8
+2015,"Toronto, Ontario",All persons,,16.4
+2015,"Toronto, Ontario",Persons under 18 years,,18.8
+2015,"Toronto, Ontario",Persons 18 to 64 years,,15.8
+2015,"Toronto, Ontario",Persons 65 years and over,,15.9
+2015,"Toronto, Ontario",Males,,16
+2015,"Toronto, Ontario","Males, under 18 years",,20.3
+2015,"Toronto, Ontario","Males, 18 to 64 years",,15.2
+2015,"Toronto, Ontario","Males, 65 years and over",,13
+2015,"Toronto, Ontario",Females,,16.7
+2015,"Toronto, Ontario","Females, under 18 years",,17.1
+2015,"Toronto, Ontario","Females, 18 to 64 years",,16.3
+2015,"Toronto, Ontario","Females, 65 years and over",,18.2
+2015,"Winnipeg, Manitoba",All persons,,16.4
+2015,"Winnipeg, Manitoba",Persons under 18 years,,23.8
+2015,"Winnipeg, Manitoba",Persons 18 to 64 years,,15.2
+2015,"Winnipeg, Manitoba",Persons 65 years and over,,10.8
+2015,"Winnipeg, Manitoba",Males,,16.2
+2015,"Winnipeg, Manitoba","Males, under 18 years",,28.3
+2015,"Winnipeg, Manitoba","Males, 18 to 64 years",,14.7
+2015,"Winnipeg, Manitoba","Males, 65 years and over",,4.9
+2015,"Winnipeg, Manitoba",Females,,16.5
+2015,"Winnipeg, Manitoba","Females, under 18 years",,19.5
+2015,"Winnipeg, Manitoba","Females, 18 to 64 years",,15.8
+2015,"Winnipeg, Manitoba","Females, 65 years and over",,15.6
+2015,"Calgary, Alberta",All persons,,7.8
+2015,"Calgary, Alberta",Persons under 18 years,,
+2015,"Calgary, Alberta",Persons 18 to 64 years,,6.7
+2015,"Calgary, Alberta",Persons 65 years and over,,
+2015,"Calgary, Alberta",Males,,7.6
+2015,"Calgary, Alberta","Males, under 18 years",,
+2015,"Calgary, Alberta","Males, 18 to 64 years",,7.2
+2015,"Calgary, Alberta","Males, 65 years and over",,
+2015,"Calgary, Alberta",Females,,8
+2015,"Calgary, Alberta","Females, under 18 years",,
+2015,"Calgary, Alberta","Females, 18 to 64 years",,6.2
+2015,"Calgary, Alberta","Females, 65 years and over",,
+2015,"Edmonton, Alberta",All persons,,6.1
+2015,"Edmonton, Alberta",Persons under 18 years,,
+2015,"Edmonton, Alberta",Persons 18 to 64 years,,5.6
+2015,"Edmonton, Alberta",Persons 65 years and over,,
+2015,"Edmonton, Alberta",Males,,5.9
+2015,"Edmonton, Alberta","Males, under 18 years",,
+2015,"Edmonton, Alberta","Males, 18 to 64 years",,6.6
+2015,"Edmonton, Alberta","Males, 65 years and over",,
+2015,"Edmonton, Alberta",Females,,6.2
+2015,"Edmonton, Alberta","Females, under 18 years",,
+2015,"Edmonton, Alberta","Females, 18 to 64 years",,4.5
+2015,"Edmonton, Alberta","Females, 65 years and over",,
+2015,"Vancouver, British Columbia",All persons,,16.1
+2015,"Vancouver, British Columbia",Persons under 18 years,,15.1
+2015,"Vancouver, British Columbia",Persons 18 to 64 years,,16.7
+2015,"Vancouver, British Columbia",Persons 65 years and over,,15.1
+2015,"Vancouver, British Columbia",Males,,16.2
+2015,"Vancouver, British Columbia","Males, under 18 years",,14.9
+2015,"Vancouver, British Columbia","Males, 18 to 64 years",,16.8
+2015,"Vancouver, British Columbia","Males, 65 years and over",,15.4
+2015,"Vancouver, British Columbia",Females,,16
+2015,"Vancouver, British Columbia","Females, under 18 years",,15.2
+2015,"Vancouver, British Columbia","Females, 18 to 64 years",,16.5
+2015,"Vancouver, British Columbia","Females, 65 years and over",,14.9
+2016,Canada,Persons under 18 years,,14
+2016,Canada,Persons 18 to 64 years,,12.4
+2016,Canada,Persons 65 years and over,,14.2
+2016,Canada,Males,,12.2
+2016,Canada,"Males, under 18 years",,13.5
+2016,Canada,"Males, 18 to 64 years",,11.8
+2016,Canada,"Males, 65 years and over",,12
+2016,Canada,Females,,13.8
+2016,Canada,"Females, under 18 years",,14.5
+2016,Canada,"Females, 18 to 64 years",,13
+2016,Canada,"Females, 65 years and over",,16.1
+2016,Atlantic provinces,All persons,,15.4
+2016,Atlantic provinces,Persons under 18 years,,17.6
+2016,Atlantic provinces,Persons 18 to 64 years,,13.4
+2016,Atlantic provinces,Persons 65 years and over,,20.1
+2016,Atlantic provinces,Males,,14.3
+2016,Atlantic provinces,"Males, under 18 years",,18.6
+2016,Atlantic provinces,"Males, 18 to 64 years",,12
+2016,Atlantic provinces,"Males, 65 years and over",,18
+2016,Atlantic provinces,Females,,16.6
+2016,Atlantic provinces,"Females, under 18 years",,16.6
+2016,Atlantic provinces,"Females, 18 to 64 years",,14.8
+2016,Atlantic provinces,"Females, 65 years and over",,21.9
+2016,Newfoundland and Labrador,All persons,10,15.6
+2016,Newfoundland and Labrador,Persons under 18 years,,16.3
+2016,Newfoundland and Labrador,Persons 18 to 64 years,,12.4
+2016,Newfoundland and Labrador,Persons 65 years and over,,25.4
+2016,Newfoundland and Labrador,Males,,13.6
+2016,Newfoundland and Labrador,"Males, under 18 years",,16.5
+2016,Newfoundland and Labrador,"Males, 18 to 64 years",,9.5
+2016,Newfoundland and Labrador,"Males, 65 years and over",,24.9
+2016,Newfoundland and Labrador,Females,,17.6
+2016,Newfoundland and Labrador,"Females, under 18 years",,16.1
+2016,Newfoundland and Labrador,"Females, 18 to 64 years",,15.3
+2016,Newfoundland and Labrador,"Females, 65 years and over",,25.9
+2016,Prince Edward Island,All persons,11,14.4
+2016,Prince Edward Island,Persons under 18 years,,19.8
+2016,Prince Edward Island,Persons 18 to 64 years,,11.2
+2016,Prince Edward Island,Persons 65 years and over,,19.1
+2016,Prince Edward Island,Males,,11.7
+2016,Prince Edward Island,"Males, under 18 years",,16.1
+2016,Prince Edward Island,"Males, 18 to 64 years",,9.8
+2016,Prince Edward Island,"Males, 65 years and over",,13.4
+2016,Prince Edward Island,Females,,16.9
+2016,Prince Edward Island,"Females, under 18 years",,23.9
+2016,Prince Edward Island,"Females, 18 to 64 years",,12.6
+2016,Prince Edward Island,"Females, 65 years and over",,24.1
+2016,Nova Scotia,All persons,12,16.1
+2016,Nova Scotia,Persons under 18 years,,18.1
+2016,Nova Scotia,Persons 18 to 64 years,,15.6
+2016,Nova Scotia,Persons 65 years and over,,16.1
+2016,Nova Scotia,Males,,15.9
+2016,Nova Scotia,"Males, under 18 years",,19.3
+2016,Nova Scotia,"Males, 18 to 64 years",,15.4
+2016,Nova Scotia,"Males, 65 years and over",,14.4
+2016,Nova Scotia,Females,,16.3
+2016,Nova Scotia,"Females, under 18 years",,16.7
+2016,Nova Scotia,"Females, 18 to 64 years",,15.8
+2016,Nova Scotia,"Females, 65 years and over",,17.4
+2016,New Brunswick,All persons,13,14.7
+2016,New Brunswick,Persons under 18 years,,17.5
+2016,New Brunswick,Persons 18 to 64 years,,11.8
+2016,New Brunswick,Persons 65 years and over,,21.5
+2016,New Brunswick,Males,,13.3
+2016,New Brunswick,"Males, under 18 years",,19.7
+2016,New Brunswick,"Males, 18 to 64 years",,9.9
+2016,New Brunswick,"Males, 65 years and over",,18.4
+2016,New Brunswick,Females,,16.1
+2016,New Brunswick,"Females, under 18 years",,15.1
+2016,New Brunswick,"Females, 18 to 64 years",,13.7
+2016,New Brunswick,"Females, 65 years and over",,24.3
+2016,Quebec,All persons,24,14
+2016,Quebec,Persons under 18 years,,13.1
+2016,Quebec,Persons 18 to 64 years,,12.9
+2016,Quebec,Persons 65 years and over,,18.9
+2016,Quebec,Males,,13.4
+2016,Quebec,"Males, under 18 years",,13.4
+2016,Quebec,"Males, 18 to 64 years",,12.7
+2016,Quebec,"Males, 65 years and over",,16
+2016,Quebec,Females,,14.7
+2016,Quebec,"Females, under 18 years",,12.8
+2016,Quebec,"Females, 18 to 64 years",,13.2
+2016,Quebec,"Females, 65 years and over",,21.3
+2016,Ontario,All persons,35,13.7
+2016,Ontario,Persons under 18 years,,16.2
+2016,Ontario,Persons 18 to 64 years,,13.2
+2016,Ontario,Persons 65 years and over,,12.3
+2016,Ontario,Males,,12.2
+2016,Ontario,"Males, under 18 years",,15
+2016,Ontario,"Males, 18 to 64 years",,11.9
+2016,Ontario,"Males, 65 years and over",,10.1
+2016,Ontario,Females,,15
+2016,Ontario,"Females, under 18 years",,17.5
+2016,Ontario,"Females, 18 to 64 years",,14.6
+2016,Ontario,"Females, 65 years and over",,14.1
+2016,Prairie provinces,All persons,,9.6
+2016,Prairie provinces,Persons under 18 years,,10.4
+2016,Prairie provinces,Persons 18 to 64 years,,9.4
+2016,Prairie provinces,Persons 65 years and over,,9.6
+2016,Prairie provinces,Males,,9.5
+2016,Prairie provinces,"Males, under 18 years",,10.6
+2016,Prairie provinces,"Males, 18 to 64 years",,9.2
+2016,Prairie provinces,"Males, 65 years and over",,9.1
+2016,Prairie provinces,Females,,9.8
+2016,Prairie provinces,"Females, under 18 years",,10.1
+2016,Prairie provinces,"Females, 18 to 64 years",,9.7
+2016,Prairie provinces,"Females, 65 years and over",,10
+2016,Manitoba,All persons,46,13.3
+2016,Manitoba,Persons under 18 years,,17.1
+2016,Manitoba,Persons 18 to 64 years,,11.8
+2016,Manitoba,Persons 65 years and over,,14.1
+2016,Manitoba,Males,,13
+2016,Manitoba,"Males, under 18 years",,18.5
+2016,Manitoba,"Males, 18 to 64 years",,11.3
+2016,Manitoba,"Males, 65 years and over",,11.5
+2016,Manitoba,Females,,13.6
+2016,Manitoba,"Females, under 18 years",,15.6
+2016,Manitoba,"Females, 18 to 64 years",,12.3
+2016,Manitoba,"Females, 65 years and over",,16.4
+2016,Saskatchewan,All persons,47,11.6
+2016,Saskatchewan,Persons under 18 years,,13
+2016,Saskatchewan,Persons 18 to 64 years,,10.2
+2016,Saskatchewan,Persons 65 years and over,,15.7
+2016,Saskatchewan,Males,,10.6
+2016,Saskatchewan,"Males, under 18 years",,12.1
+2016,Saskatchewan,"Males, 18 to 64 years",,9.3
+2016,Saskatchewan,"Males, 65 years and over",,14.5
+2016,Saskatchewan,Females,,12.7
+2016,Saskatchewan,"Females, under 18 years",,13.9
+2016,Saskatchewan,"Females, 18 to 64 years",,11.1
+2016,Saskatchewan,"Females, 65 years and over",,16.9
+2016,Alberta,All persons,48,8.1
+2016,Alberta,Persons under 18 years,,7.7
+2016,Alberta,Persons 18 to 64 years,,8.6
+2016,Alberta,Persons 65 years and over,,5.8
+2016,Alberta,Males,,8.2
+2016,Alberta,"Males, under 18 years",,7.8
+2016,Alberta,"Males, 18 to 64 years",,8.6
+2016,Alberta,"Males, 65 years and over",,6.4
+2016,Alberta,Females,,7.9
+2016,Alberta,"Females, under 18 years",,7.7
+2016,Alberta,"Females, 18 to 64 years",,8.5
+2016,Alberta,"Females, 65 years and over",,5.3
+2016,British Columbia,All persons,59,12.9
+2016,British Columbia,Persons under 18 years,,12.8
+2016,British Columbia,Persons 18 to 64 years,,12.9
+2016,British Columbia,Persons 65 years and over,,12.8
+2016,British Columbia,Males,,12.8
+2016,British Columbia,"Males, under 18 years",,11.8
+2016,British Columbia,"Males, 18 to 64 years",,13.9
+2016,British Columbia,"Males, 65 years and over",,9.8
+2016,British Columbia,Females,,12.9
+2016,British Columbia,"Females, under 18 years",,13.9
+2016,British Columbia,"Females, 18 to 64 years",,11.9
+2016,British Columbia,"Females, 65 years and over",,15.6
+2016,"Québec, Quebec",All persons,,11.1
+2016,"Québec, Quebec",Persons under 18 years,,7.8
+2016,"Québec, Quebec",Persons 18 to 64 years,,9.3
+2016,"Québec, Quebec",Persons 65 years and over,,19.9
+2016,"Québec, Quebec",Males,,8.7
+2016,"Québec, Quebec","Males, under 18 years",,
+2016,"Québec, Quebec","Males, 18 to 64 years",,8.3
+2016,"Québec, Quebec","Males, 65 years and over",,13.3
+2016,"Québec, Quebec",Females,,13.2
+2016,"Québec, Quebec","Females, under 18 years",,
+2016,"Québec, Quebec","Females, 18 to 64 years",,10.3
+2016,"Québec, Quebec","Females, 65 years and over",,25
+2016,"Montréal, Quebec",All persons,,14.9
+2016,"Montréal, Quebec",Persons under 18 years,,15.8
+2016,"Montréal, Quebec",Persons 18 to 64 years,,14
+2016,"Montréal, Quebec",Persons 65 years and over,,17.4
+2016,"Montréal, Quebec",Males,,14.7
+2016,"Montréal, Quebec","Males, under 18 years",,15.6
+2016,"Montréal, Quebec","Males, 18 to 64 years",,13.8
+2016,"Montréal, Quebec","Males, 65 years and over",,17.7
+2016,"Montréal, Quebec",Females,,15.1
+2016,"Montréal, Quebec","Females, under 18 years",,16
+2016,"Montréal, Quebec","Females, 18 to 64 years",,14.2
+2016,"Montréal, Quebec","Females, 65 years and over",,17.2
+2016,"Ottawa-Gatineau, Ontario/Quebec",All persons,,9.3
+2016,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,,11.1
+2016,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,,9.2
+2016,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,,7.1
+2016,"Ottawa-Gatineau, Ontario/Quebec",Males,,8.3
+2016,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",,9.6
+2016,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",,8.7
+2016,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",,
+2016,"Ottawa-Gatineau, Ontario/Quebec",Females,,10.3
+2016,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",,12.4
+2016,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",,9.8
+2016,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",,9.7
+2016,"Toronto, Ontario",All persons,,15.6
+2016,"Toronto, Ontario",Persons under 18 years,,19.3
+2016,"Toronto, Ontario",Persons 18 to 64 years,,14.7
+2016,"Toronto, Ontario",Persons 65 years and over,,14.6
+2016,"Toronto, Ontario",Males,,13.9
+2016,"Toronto, Ontario","Males, under 18 years",,16.9
+2016,"Toronto, Ontario","Males, 18 to 64 years",,12.9
+2016,"Toronto, Ontario","Males, 65 years and over",,14.2
+2016,"Toronto, Ontario",Females,,17.2
+2016,"Toronto, Ontario","Females, under 18 years",,21.6
+2016,"Toronto, Ontario","Females, 18 to 64 years",,16.4
+2016,"Toronto, Ontario","Females, 65 years and over",,14.9
+2016,"Winnipeg, Manitoba",All persons,,13.3
+2016,"Winnipeg, Manitoba",Persons under 18 years,,18.7
+2016,"Winnipeg, Manitoba",Persons 18 to 64 years,,12.1
+2016,"Winnipeg, Manitoba",Persons 65 years and over,,11.1
+2016,"Winnipeg, Manitoba",Males,,13.2
+2016,"Winnipeg, Manitoba","Males, under 18 years",,20
+2016,"Winnipeg, Manitoba","Males, 18 to 64 years",,11.7
+2016,"Winnipeg, Manitoba","Males, 65 years and over",,9.6
+2016,"Winnipeg, Manitoba",Females,,13.4
+2016,"Winnipeg, Manitoba","Females, under 18 years",,17.4
+2016,"Winnipeg, Manitoba","Females, 18 to 64 years",,12.5
+2016,"Winnipeg, Manitoba","Females, 65 years and over",,12.4
+2016,"Calgary, Alberta",All persons,,6.6
+2016,"Calgary, Alberta",Persons under 18 years,,5.3
+2016,"Calgary, Alberta",Persons 18 to 64 years,,7
+2016,"Calgary, Alberta",Persons 65 years and over,,
+2016,"Calgary, Alberta",Males,,6.7
+2016,"Calgary, Alberta","Males, under 18 years",,5.8
+2016,"Calgary, Alberta","Males, 18 to 64 years",,6.3
+2016,"Calgary, Alberta","Males, 65 years and over",,
+2016,"Calgary, Alberta",Females,,6.5
+2016,"Calgary, Alberta","Females, under 18 years",,
+2016,"Calgary, Alberta","Females, 18 to 64 years",,7.6
+2016,"Calgary, Alberta","Females, 65 years and over",,
+2016,"Edmonton, Alberta",All persons,,6.7
+2016,"Edmonton, Alberta",Persons under 18 years,,
+2016,"Edmonton, Alberta",Persons 18 to 64 years,,8.2
+2016,"Edmonton, Alberta",Persons 65 years and over,,
+2016,"Edmonton, Alberta",Males,,7.2
+2016,"Edmonton, Alberta","Males, under 18 years",,
+2016,"Edmonton, Alberta","Males, 18 to 64 years",,9.1
+2016,"Edmonton, Alberta","Males, 65 years and over",,
+2016,"Edmonton, Alberta",Females,,6.1
+2016,"Edmonton, Alberta","Females, under 18 years",,
+2016,"Edmonton, Alberta","Females, 18 to 64 years",,7.3
+2016,"Edmonton, Alberta","Females, 65 years and over",,
+2016,"Vancouver, British Columbia",All persons,,12.2
+2016,"Vancouver, British Columbia",Persons under 18 years,,11.4
+2016,"Vancouver, British Columbia",Persons 18 to 64 years,,12.2
+2016,"Vancouver, British Columbia",Persons 65 years and over,,12.8
+2016,"Vancouver, British Columbia",Males,,11.9
+2016,"Vancouver, British Columbia","Males, under 18 years",,10.9
+2016,"Vancouver, British Columbia","Males, 18 to 64 years",,13.1
+2016,"Vancouver, British Columbia","Males, 65 years and over",,8.8
+2016,"Vancouver, British Columbia",Females,,12.4
+2016,"Vancouver, British Columbia","Females, under 18 years",,12
+2016,"Vancouver, British Columbia","Females, 18 to 64 years",,11.4
+2016,"Vancouver, British Columbia","Females, 65 years and over",,16.5
+2017,Canada,Persons under 18 years,,11.9
+2017,Canada,Persons 18 to 64 years,,12.2
+2017,Canada,Persons 65 years and over,,15.1
+2017,Canada,Males,,11.8
+2017,Canada,"Males, under 18 years",,11.4
+2017,Canada,"Males, 18 to 64 years",,11.9
+2017,Canada,"Males, 65 years and over",,11.9
+2017,Canada,Females,,13.4
+2017,Canada,"Females, under 18 years",,12.4
+2017,Canada,"Females, 18 to 64 years",,12.4
+2017,Canada,"Females, 65 years and over",,17.9
+2017,Atlantic provinces,All persons,,16
+2017,Atlantic provinces,Persons under 18 years,,16.4
+2017,Atlantic provinces,Persons 18 to 64 years,,14.7
+2017,Atlantic provinces,Persons 65 years and over,,19.4
+2017,Atlantic provinces,Males,,14.7
+2017,Atlantic provinces,"Males, under 18 years",,15.9
+2017,Atlantic provinces,"Males, 18 to 64 years",,13.6
+2017,Atlantic provinces,"Males, 65 years and over",,17.1
+2017,Atlantic provinces,Females,,17.1
+2017,Atlantic provinces,"Females, under 18 years",,16.9
+2017,Atlantic provinces,"Females, 18 to 64 years",,15.7
+2017,Atlantic provinces,"Females, 65 years and over",,21.5
+2017,Newfoundland and Labrador,All persons,10,15
+2017,Newfoundland and Labrador,Persons under 18 years,,13.1
+2017,Newfoundland and Labrador,Persons 18 to 64 years,,13.3
+2017,Newfoundland and Labrador,Persons 65 years and over,,22.2
+2017,Newfoundland and Labrador,Males,,13.7
+2017,Newfoundland and Labrador,"Males, under 18 years",,13.5
+2017,Newfoundland and Labrador,"Males, 18 to 64 years",,11.9
+2017,Newfoundland and Labrador,"Males, 65 years and over",,19.8
+2017,Newfoundland and Labrador,Females,,16.3
+2017,Newfoundland and Labrador,"Females, under 18 years",,12.6
+2017,Newfoundland and Labrador,"Females, 18 to 64 years",,14.6
+2017,Newfoundland and Labrador,"Females, 65 years and over",,24.3
+2017,Prince Edward Island,All persons,11,14.4
+2017,Prince Edward Island,Persons under 18 years,,12.1
+2017,Prince Edward Island,Persons 18 to 64 years,,13.4
+2017,Prince Edward Island,Persons 65 years and over,,19.8
+2017,Prince Edward Island,Males,,14.3
+2017,Prince Edward Island,"Males, under 18 years",,14
+2017,Prince Edward Island,"Males, 18 to 64 years",,13.5
+2017,Prince Edward Island,"Males, 65 years and over",,17.6
+2017,Prince Edward Island,Females,,14.5
+2017,Prince Edward Island,"Females, under 18 years",,10
+2017,Prince Edward Island,"Females, 18 to 64 years",,13.4
+2017,Prince Edward Island,"Females, 65 years and over",,21.7
+2017,Nova Scotia,All persons,12,17.5
+2017,Nova Scotia,Persons under 18 years,,19.3
+2017,Nova Scotia,Persons 18 to 64 years,,16.9
+2017,Nova Scotia,Persons 65 years and over,,17.9
+2017,Nova Scotia,Males,,16.1
+2017,Nova Scotia,"Males, under 18 years",,17.1
+2017,Nova Scotia,"Males, 18 to 64 years",,15.8
+2017,Nova Scotia,"Males, 65 years and over",,16
+2017,Nova Scotia,Females,,18.8
+2017,Nova Scotia,"Females, under 18 years",,21.7
+2017,Nova Scotia,"Females, 18 to 64 years",,17.8
+2017,Nova Scotia,"Females, 65 years and over",,19.6
+2017,New Brunswick,All persons,13,15
+2017,New Brunswick,Persons under 18 years,,16.1
+2017,New Brunswick,Persons 18 to 64 years,,13.2
+2017,New Brunswick,Persons 65 years and over,,19.3
+2017,New Brunswick,Males,,13.8
+2017,New Brunswick,"Males, under 18 years",,16.6
+2017,New Brunswick,"Males, 18 to 64 years",,12.1
+2017,New Brunswick,"Males, 65 years and over",,16.4
+2017,New Brunswick,Females,,16.1
+2017,New Brunswick,"Females, under 18 years",,15.7
+2017,New Brunswick,"Females, 18 to 64 years",,14.3
+2017,New Brunswick,"Females, 65 years and over",,21.9
+2017,Quebec,All persons,24,14.4
+2017,Quebec,Persons under 18 years,,10.5
+2017,Quebec,Persons 18 to 64 years,,13.2
+2017,Quebec,Persons 65 years and over,,22.3
+2017,Quebec,Males,,13.1
+2017,Quebec,"Males, under 18 years",,10.5
+2017,Quebec,"Males, 18 to 64 years",,12.9
+2017,Quebec,"Males, 65 years and over",,16.9
+2017,Quebec,Females,,15.7
+2017,Quebec,"Females, under 18 years",,10.6
+2017,Quebec,"Females, 18 to 64 years",,13.6
+2017,Quebec,"Females, 65 years and over",,27
+2017,Ontario,All persons,35,12.7
+2017,Ontario,Persons under 18 years,,13
+2017,Ontario,Persons 18 to 64 years,,12.8
+2017,Ontario,Persons 65 years and over,,11.9
+2017,Ontario,Males,,12.3
+2017,Ontario,"Males, under 18 years",,12.1
+2017,Ontario,"Males, 18 to 64 years",,13.1
+2017,Ontario,"Males, 65 years and over",,9.4
+2017,Ontario,Females,,13.1
+2017,Ontario,"Females, under 18 years",,14
+2017,Ontario,"Females, 18 to 64 years",,12.6
+2017,Ontario,"Females, 65 years and over",,14
+2017,Prairie provinces,All persons,,9.6
+2017,Prairie provinces,Persons under 18 years,,10.9
+2017,Prairie provinces,Persons 18 to 64 years,,9.3
+2017,Prairie provinces,Persons 65 years and over,,8.8
+2017,Prairie provinces,Males,,8.7
+2017,Prairie provinces,"Males, under 18 years",,9.8
+2017,Prairie provinces,"Males, 18 to 64 years",,8.6
+2017,Prairie provinces,"Males, 65 years and over",,7
+2017,Prairie provinces,Females,,10.5
+2017,Prairie provinces,"Females, under 18 years",,12
+2017,Prairie provinces,"Females, 18 to 64 years",,10
+2017,Prairie provinces,"Females, 65 years and over",,10.4
+2017,Manitoba,All persons,46,14.5
+2017,Manitoba,Persons under 18 years,,19
+2017,Manitoba,Persons 18 to 64 years,,12.9
+2017,Manitoba,Persons 65 years and over,,15.1
+2017,Manitoba,Males,,13.2
+2017,Manitoba,"Males, under 18 years",,16.9
+2017,Manitoba,"Males, 18 to 64 years",,12.2
+2017,Manitoba,"Males, 65 years and over",,12
+2017,Manitoba,Females,,15.8
+2017,Manitoba,"Females, under 18 years",,21.1
+2017,Manitoba,"Females, 18 to 64 years",,13.5
+2017,Manitoba,"Females, 65 years and over",,17.7
+2017,Saskatchewan,All persons,47,13
+2017,Saskatchewan,Persons under 18 years,,15.4
+2017,Saskatchewan,Persons 18 to 64 years,,11.6
+2017,Saskatchewan,Persons 65 years and over,,15.4
+2017,Saskatchewan,Males,,12.3
+2017,Saskatchewan,"Males, under 18 years",,14.9
+2017,Saskatchewan,"Males, 18 to 64 years",,11.3
+2017,Saskatchewan,"Males, 65 years and over",,12.7
+2017,Saskatchewan,Females,,13.7
+2017,Saskatchewan,"Females, under 18 years",,15.9
+2017,Saskatchewan,"Females, 18 to 64 years",,11.9
+2017,Saskatchewan,"Females, 65 years and over",,17.8
+2017,Alberta,All persons,48,7.2
+2017,Alberta,Persons under 18 years,,7.3
+2017,Alberta,Persons 18 to 64 years,,7.7
+2017,Alberta,Persons 65 years and over,,4.4
+2017,Alberta,Males,,6.4
+2017,Alberta,"Males, under 18 years",,6.3
+2017,Alberta,"Males, 18 to 64 years",,7
+2017,Alberta,"Males, 65 years and over",,3.4
+2017,Alberta,Females,,8
+2017,Alberta,"Females, under 18 years",,8.4
+2017,Alberta,"Females, 18 to 64 years",,8.5
+2017,Alberta,"Females, 65 years and over",,5.4
+2017,British Columbia,All persons,59,11.7
+2017,British Columbia,Persons under 18 years,,10.5
+2017,British Columbia,Persons 18 to 64 years,,11.1
+2017,British Columbia,Persons 65 years and over,,14.9
+2017,British Columbia,Males,,11
+2017,British Columbia,"Males, under 18 years",,11.7
+2017,British Columbia,"Males, 18 to 64 years",,10.5
+2017,British Columbia,"Males, 65 years and over",,11.8
+2017,British Columbia,Females,,12.4
+2017,British Columbia,"Females, under 18 years",,9.2
+2017,British Columbia,"Females, 18 to 64 years",,11.7
+2017,British Columbia,"Females, 65 years and over",,17.8
+2017,"Québec, Quebec",All persons,,8.7
+2017,"Québec, Quebec",Persons under 18 years,,
+2017,"Québec, Quebec",Persons 18 to 64 years,,7.1
+2017,"Québec, Quebec",Persons 65 years and over,,17.8
+2017,"Québec, Quebec",Males,,7.7
+2017,"Québec, Quebec","Males, under 18 years",,
+2017,"Québec, Quebec","Males, 18 to 64 years",,6.5
+2017,"Québec, Quebec","Males, 65 years and over",,13.7
+2017,"Québec, Quebec",Females,,9.8
+2017,"Québec, Quebec","Females, under 18 years",,
+2017,"Québec, Quebec","Females, 18 to 64 years",,7.7
+2017,"Québec, Quebec","Females, 65 years and over",,21.7
+2017,"Montréal, Quebec",All persons,,15.6
+2017,"Montréal, Quebec",Persons under 18 years,,12.6
+2017,"Montréal, Quebec",Persons 18 to 64 years,,14.9
+2017,"Montréal, Quebec",Persons 65 years and over,,22.4
+2017,"Montréal, Quebec",Males,,14.7
+2017,"Montréal, Quebec","Males, under 18 years",,12.9
+2017,"Montréal, Quebec","Males, 18 to 64 years",,14.7
+2017,"Montréal, Quebec","Males, 65 years and over",,17.1
+2017,"Montréal, Quebec",Females,,16.6
+2017,"Montréal, Quebec","Females, under 18 years",,12.2
+2017,"Montréal, Quebec","Females, 18 to 64 years",,15.1
+2017,"Montréal, Quebec","Females, 65 years and over",,26.6
+2017,"Ottawa-Gatineau, Ontario/Quebec",All persons,,10.9
+2017,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,,11.3
+2017,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,,10.6
+2017,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,,11.9
+2017,"Ottawa-Gatineau, Ontario/Quebec",Males,,10.8
+2017,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",,12.1
+2017,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",,10.7
+2017,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",,9.1
+2017,"Ottawa-Gatineau, Ontario/Quebec",Females,,11.1
+2017,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",,10.4
+2017,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",,10.5
+2017,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",,14
+2017,"Toronto, Ontario",All persons,,12.4
+2017,"Toronto, Ontario",Persons under 18 years,,12.7
+2017,"Toronto, Ontario",Persons 18 to 64 years,,12.6
+2017,"Toronto, Ontario",Persons 65 years and over,,11.2
+2017,"Toronto, Ontario",Males,,12.3
+2017,"Toronto, Ontario","Males, under 18 years",,11.2
+2017,"Toronto, Ontario","Males, 18 to 64 years",,13.1
+2017,"Toronto, Ontario","Males, 65 years and over",,9.7
+2017,"Toronto, Ontario",Females,,12.5
+2017,"Toronto, Ontario","Females, under 18 years",,14.2
+2017,"Toronto, Ontario","Females, 18 to 64 years",,12
+2017,"Toronto, Ontario","Females, 65 years and over",,12.5
+2017,"Winnipeg, Manitoba",All persons,,14.4
+2017,"Winnipeg, Manitoba",Persons under 18 years,,18.4
+2017,"Winnipeg, Manitoba",Persons 18 to 64 years,,13.2
+2017,"Winnipeg, Manitoba",Persons 65 years and over,,14.5
+2017,"Winnipeg, Manitoba",Males,,13.3
+2017,"Winnipeg, Manitoba","Males, under 18 years",,15.3
+2017,"Winnipeg, Manitoba","Males, 18 to 64 years",,13
+2017,"Winnipeg, Manitoba","Males, 65 years and over",,11.7
+2017,"Winnipeg, Manitoba",Females,,15.6
+2017,"Winnipeg, Manitoba","Females, under 18 years",,21.5
+2017,"Winnipeg, Manitoba","Females, 18 to 64 years",,13.5
+2017,"Winnipeg, Manitoba","Females, 65 years and over",,16.8
+2017,"Calgary, Alberta",All persons,,6.4
+2017,"Calgary, Alberta",Persons under 18 years,,7.8
+2017,"Calgary, Alberta",Persons 18 to 64 years,,6.6
+2017,"Calgary, Alberta",Persons 65 years and over,,
+2017,"Calgary, Alberta",Males,,5.7
+2017,"Calgary, Alberta","Males, under 18 years",,4.8
+2017,"Calgary, Alberta","Males, 18 to 64 years",,6.5
+2017,"Calgary, Alberta","Males, 65 years and over",,
+2017,"Calgary, Alberta",Females,,7.1
+2017,"Calgary, Alberta","Females, under 18 years",,10.2
+2017,"Calgary, Alberta","Females, 18 to 64 years",,6.8
+2017,"Calgary, Alberta","Females, 65 years and over",,
+2017,"Edmonton, Alberta",All persons,,6.9
+2017,"Edmonton, Alberta",Persons under 18 years,,
+2017,"Edmonton, Alberta",Persons 18 to 64 years,,7.2
+2017,"Edmonton, Alberta",Persons 65 years and over,,5.8
+2017,"Edmonton, Alberta",Males,,6.3
+2017,"Edmonton, Alberta","Males, under 18 years",,
+2017,"Edmonton, Alberta","Males, 18 to 64 years",,6.4
+2017,"Edmonton, Alberta","Males, 65 years and over",,
+2017,"Edmonton, Alberta",Females,,7.5
+2017,"Edmonton, Alberta","Females, under 18 years",,
+2017,"Edmonton, Alberta","Females, 18 to 64 years",,8
+2017,"Edmonton, Alberta","Females, 65 years and over",,
+2017,"Vancouver, British Columbia",All persons,,12.5
+2017,"Vancouver, British Columbia",Persons under 18 years,,10.6
+2017,"Vancouver, British Columbia",Persons 18 to 64 years,,11.8
+2017,"Vancouver, British Columbia",Persons 65 years and over,,17.4
+2017,"Vancouver, British Columbia",Males,,11.7
+2017,"Vancouver, British Columbia","Males, under 18 years",,12.7
+2017,"Vancouver, British Columbia","Males, 18 to 64 years",,11.1
+2017,"Vancouver, British Columbia","Males, 65 years and over",,13.3
+2017,"Vancouver, British Columbia",Females,,13.3
+2017,"Vancouver, British Columbia","Females, under 18 years",,
+2017,"Vancouver, British Columbia","Females, 18 to 64 years",,12.6
+2017,"Vancouver, British Columbia","Females, 65 years and over",,20.9
+2018,Canada,Persons under 18 years,,12.3
+2018,Canada,Persons 18 to 64 years,,11.8
+2018,Canada,Persons 65 years and over,,14.3
+2018,Canada,Males,,11.8
+2018,Canada,"Males, under 18 years",,13
+2018,Canada,"Males, 18 to 64 years",,11.5
+2018,Canada,"Males, 65 years and over",,11.6
+2018,Canada,Females,,12.8
+2018,Canada,"Females, under 18 years",,11.6
+2018,Canada,"Females, 18 to 64 years",,12
+2018,Canada,"Females, 65 years and over",,16.6
+2018,Atlantic provinces,All persons,,15.2
+2018,Atlantic provinces,Persons under 18 years,,15.8
+2018,Atlantic provinces,Persons 18 to 64 years,,13.2
+2018,Atlantic provinces,Persons 65 years and over,,20.6
+2018,Atlantic provinces,Males,,14.5
+2018,Atlantic provinces,"Males, under 18 years",,16.6
+2018,Atlantic provinces,"Males, 18 to 64 years",,13
+2018,Atlantic provinces,"Males, 65 years and over",,17
+2018,Atlantic provinces,Females,,15.8
+2018,Atlantic provinces,"Females, under 18 years",,15
+2018,Atlantic provinces,"Females, 18 to 64 years",,13.3
+2018,Atlantic provinces,"Females, 65 years and over",,23.7
+2018,Newfoundland and Labrador,All persons,10,16
+2018,Newfoundland and Labrador,Persons under 18 years,,15.7
+2018,Newfoundland and Labrador,Persons 18 to 64 years,,13.7
+2018,Newfoundland and Labrador,Persons 65 years and over,,23.3
+2018,Newfoundland and Labrador,Males,,15.8
+2018,Newfoundland and Labrador,"Males, under 18 years",,16.7
+2018,Newfoundland and Labrador,"Males, 18 to 64 years",,14.4
+2018,Newfoundland and Labrador,"Males, 65 years and over",,19.4
+2018,Newfoundland and Labrador,Females,,16.2
+2018,Newfoundland and Labrador,"Females, under 18 years",,14.6
+2018,Newfoundland and Labrador,"Females, 18 to 64 years",,13
+2018,Newfoundland and Labrador,"Females, 65 years and over",,26.8
+2018,Prince Edward Island,All persons,11,14.6
+2018,Prince Edward Island,Persons under 18 years,,15.9
+2018,Prince Edward Island,Persons 18 to 64 years,,12
+2018,Prince Edward Island,Persons 65 years and over,,21.8
+2018,Prince Edward Island,Males,,13.8
+2018,Prince Edward Island,"Males, under 18 years",,16.3
+2018,Prince Edward Island,"Males, 18 to 64 years",,11.7
+2018,Prince Edward Island,"Males, 65 years and over",,18.2
+2018,Prince Edward Island,Females,,15.5
+2018,Prince Edward Island,"Females, under 18 years",,15.4
+2018,Prince Edward Island,"Females, 18 to 64 years",,12.3
+2018,Prince Edward Island,"Females, 65 years and over",,24.9
+2018,Nova Scotia,All persons,12,15.9
+2018,Nova Scotia,Persons under 18 years,,16.8
+2018,Nova Scotia,Persons 18 to 64 years,,14.3
+2018,Nova Scotia,Persons 65 years and over,,20.2
+2018,Nova Scotia,Males,,15.1
+2018,Nova Scotia,"Males, under 18 years",,17.8
+2018,Nova Scotia,"Males, 18 to 64 years",,13.8
+2018,Nova Scotia,"Males, 65 years and over",,16.7
+2018,Nova Scotia,Females,,16.7
+2018,Nova Scotia,"Females, under 18 years",,15.9
+2018,Nova Scotia,"Females, 18 to 64 years",,14.7
+2018,Nova Scotia,"Females, 65 years and over",,23.2
+2018,New Brunswick,All persons,13,13.8
+2018,New Brunswick,Persons under 18 years,,14.7
+2018,New Brunswick,Persons 18 to 64 years,,11.7
+2018,New Brunswick,Persons 65 years and over,,18.9
+2018,New Brunswick,Males,,12.9
+2018,New Brunswick,"Males, under 18 years",,15.3
+2018,New Brunswick,"Males, 18 to 64 years",,11.4
+2018,New Brunswick,"Males, 65 years and over",,15.4
+2018,New Brunswick,Females,,14.6
+2018,New Brunswick,"Females, under 18 years",,14.1
+2018,New Brunswick,"Females, 18 to 64 years",,12
+2018,New Brunswick,"Females, 65 years and over",,22.1
+2018,Quebec,All persons,24,14
+2018,Quebec,Persons under 18 years,,11.7
+2018,Quebec,Persons 18 to 64 years,,12.8
+2018,Quebec,Persons 65 years and over,,20.4
+2018,Quebec,Males,,13
+2018,Quebec,"Males, under 18 years",,11.5
+2018,Quebec,"Males, 18 to 64 years",,12.5
+2018,Quebec,"Males, 65 years and over",,16.1
+2018,Quebec,Females,,15.1
+2018,Quebec,"Females, under 18 years",,11.8
+2018,Quebec,"Females, 18 to 64 years",,13.1
+2018,Quebec,"Females, 65 years and over",,24.1
+2018,Ontario,All persons,35,12.4
+2018,Ontario,Persons under 18 years,,13.9
+2018,Ontario,Persons 18 to 64 years,,12.3
+2018,Ontario,Persons 65 years and over,,11.3
+2018,Ontario,Males,,12
+2018,Ontario,"Males, under 18 years",,14.8
+2018,Ontario,"Males, 18 to 64 years",,11.7
+2018,Ontario,"Males, 65 years and over",,9.3
+2018,Ontario,Females,,12.9
+2018,Ontario,"Females, under 18 years",,12.9
+2018,Ontario,"Females, 18 to 64 years",,12.8
+2018,Ontario,"Females, 65 years and over",,13.1
+2018,Prairie provinces,All persons,,9.7
+2018,Prairie provinces,Persons under 18 years,,10.7
+2018,Prairie provinces,Persons 18 to 64 years,,9.4
+2018,Prairie provinces,Persons 65 years and over,,9.2
+2018,Prairie provinces,Males,,9.4
+2018,Prairie provinces,"Males, under 18 years",,11.1
+2018,Prairie provinces,"Males, 18 to 64 years",,9.1
+2018,Prairie provinces,"Males, 65 years and over",,7.5
+2018,Prairie provinces,Females,,10
+2018,Prairie provinces,"Females, under 18 years",,10.3
+2018,Prairie provinces,"Females, 18 to 64 years",,9.7
+2018,Prairie provinces,"Females, 65 years and over",,10.7
+2018,Manitoba,All persons,46,14.1
+2018,Manitoba,Persons under 18 years,,19
+2018,Manitoba,Persons 18 to 64 years,,12.2
+2018,Manitoba,Persons 65 years and over,,14.8
+2018,Manitoba,Males,,13.3
+2018,Manitoba,"Males, under 18 years",,19.5
+2018,Manitoba,"Males, 18 to 64 years",,11.7
+2018,Manitoba,"Males, 65 years and over",,10.5
+2018,Manitoba,Females,,14.8
+2018,Manitoba,"Females, under 18 years",,18.4
+2018,Manitoba,"Females, 18 to 64 years",,12.6
+2018,Manitoba,"Females, 65 years and over",,18.6
+2018,Saskatchewan,All persons,47,13
+2018,Saskatchewan,Persons under 18 years,,14.3
+2018,Saskatchewan,Persons 18 to 64 years,,12.5
+2018,Saskatchewan,Persons 65 years and over,,13.4
+2018,Saskatchewan,Males,,12.3
+2018,Saskatchewan,"Males, under 18 years",,13.4
+2018,Saskatchewan,"Males, 18 to 64 years",,12.3
+2018,Saskatchewan,"Males, 65 years and over",,10.8
+2018,Saskatchewan,Females,,13.8
+2018,Saskatchewan,"Females, under 18 years",,15.2
+2018,Saskatchewan,"Females, 18 to 64 years",,12.7
+2018,Saskatchewan,"Females, 65 years and over",,15.6
+2018,Alberta,All persons,48,7.5
+2018,Alberta,Persons under 18 years,,7.3
+2018,Alberta,Persons 18 to 64 years,,7.9
+2018,Alberta,Persons 65 years and over,,5.9
+2018,Alberta,Males,,7.5
+2018,Alberta,"Males, under 18 years",,8
+2018,Alberta,"Males, 18 to 64 years",,7.7
+2018,Alberta,"Males, 65 years and over",,5.4
+2018,Alberta,Females,,7.6
+2018,Alberta,"Females, under 18 years",,6.6
+2018,Alberta,"Females, 18 to 64 years",,8.2
+2018,Alberta,"Females, 65 years and over",,6.4
+2018,British Columbia,All persons,59,11.2
+2018,British Columbia,Persons under 18 years,,9.4
+2018,British Columbia,Persons 18 to 64 years,,11.1
+2018,British Columbia,Persons 65 years and over,,13.1
+2018,British Columbia,Males,,11.6
+2018,British Columbia,"Males, under 18 years",,11.1
+2018,British Columbia,"Males, 18 to 64 years",,11.8
+2018,British Columbia,"Males, 65 years and over",,11.2
+2018,British Columbia,Females,,10.8
+2018,British Columbia,"Females, under 18 years",,7.5
+2018,British Columbia,"Females, 18 to 64 years",,10.5
+2018,British Columbia,"Females, 65 years and over",,14.9
+2018,"Québec, Quebec",All persons,,11.3
+2018,"Québec, Quebec",Persons under 18 years,,9.5
+2018,"Québec, Quebec",Persons 18 to 64 years,,10.5
+2018,"Québec, Quebec",Persons 65 years and over,,17
+2018,"Québec, Quebec",Males,,11.5
+2018,"Québec, Quebec","Males, under 18 years",,12.3
+2018,"Québec, Quebec","Males, 18 to 64 years",,10
+2018,"Québec, Quebec","Males, 65 years and over",,16.8
+2018,"Québec, Quebec",Females,,11.2
+2018,"Québec, Quebec","Females, under 18 years",,
+2018,"Québec, Quebec","Females, 18 to 64 years",,10.9
+2018,"Québec, Quebec","Females, 65 years and over",,17.1
+2018,"Montréal, Quebec",All persons,,13.5
+2018,"Montréal, Quebec",Persons under 18 years,,12.6
+2018,"Montréal, Quebec",Persons 18 to 64 years,,12.9
+2018,"Montréal, Quebec",Persons 65 years and over,,16.5
+2018,"Montréal, Quebec",Males,,11.9
+2018,"Montréal, Quebec","Males, under 18 years",,12.4
+2018,"Montréal, Quebec","Males, 18 to 64 years",,12.2
+2018,"Montréal, Quebec","Males, 65 years and over",,9.7
+2018,"Montréal, Quebec",Females,,15
+2018,"Montréal, Quebec","Females, under 18 years",,12.9
+2018,"Montréal, Quebec","Females, 18 to 64 years",,13.6
+2018,"Montréal, Quebec","Females, 65 years and over",,21.9
+2018,"Ottawa-Gatineau, Ontario/Quebec",All persons,,12
+2018,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,,12.4
+2018,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,,11.8
+2018,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,,12.4
+2018,"Ottawa-Gatineau, Ontario/Quebec",Males,,12.3
+2018,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",,12.2
+2018,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",,13
+2018,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",,9.3
+2018,"Ottawa-Gatineau, Ontario/Quebec",Females,,11.8
+2018,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",,12.6
+2018,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",,10.6
+2018,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",,15
+2018,"Toronto, Ontario",All persons,,13.1
+2018,"Toronto, Ontario",Persons under 18 years,,14.6
+2018,"Toronto, Ontario",Persons 18 to 64 years,,12.9
+2018,"Toronto, Ontario",Persons 65 years and over,,11.6
+2018,"Toronto, Ontario",Males,,12.9
+2018,"Toronto, Ontario","Males, under 18 years",,15.9
+2018,"Toronto, Ontario","Males, 18 to 64 years",,12.5
+2018,"Toronto, Ontario","Males, 65 years and over",,10.2
+2018,"Toronto, Ontario",Females,,13.3
+2018,"Toronto, Ontario","Females, under 18 years",,13.2
+2018,"Toronto, Ontario","Females, 18 to 64 years",,13.4
+2018,"Toronto, Ontario","Females, 65 years and over",,12.9
+2018,"Winnipeg, Manitoba",All persons,,13.5
+2018,"Winnipeg, Manitoba",Persons under 18 years,,19.3
+2018,"Winnipeg, Manitoba",Persons 18 to 64 years,,11.9
+2018,"Winnipeg, Manitoba",Persons 65 years and over,,12.7
+2018,"Winnipeg, Manitoba",Males,,12.8
+2018,"Winnipeg, Manitoba","Males, under 18 years",,19.6
+2018,"Winnipeg, Manitoba","Males, 18 to 64 years",,11.4
+2018,"Winnipeg, Manitoba","Males, 65 years and over",,9.4
+2018,"Winnipeg, Manitoba",Females,,14.2
+2018,"Winnipeg, Manitoba","Females, under 18 years",,19.1
+2018,"Winnipeg, Manitoba","Females, 18 to 64 years",,12.4
+2018,"Winnipeg, Manitoba","Females, 65 years and over",,15.5
+2018,"Calgary, Alberta",All persons,,8.7
+2018,"Calgary, Alberta",Persons under 18 years,,
+2018,"Calgary, Alberta",Persons 18 to 64 years,,9.2
+2018,"Calgary, Alberta",Persons 65 years and over,,
+2018,"Calgary, Alberta",Males,,8.7
+2018,"Calgary, Alberta","Males, under 18 years",,
+2018,"Calgary, Alberta","Males, 18 to 64 years",,9
+2018,"Calgary, Alberta","Males, 65 years and over",,
+2018,"Calgary, Alberta",Females,,8.6
+2018,"Calgary, Alberta","Females, under 18 years",,
+2018,"Calgary, Alberta","Females, 18 to 64 years",,9.3
+2018,"Calgary, Alberta","Females, 65 years and over",,
+2018,"Edmonton, Alberta",All persons,,6.1
+2018,"Edmonton, Alberta",Persons under 18 years,,5.6
+2018,"Edmonton, Alberta",Persons 18 to 64 years,,6.5
+2018,"Edmonton, Alberta",Persons 65 years and over,,5.1
+2018,"Edmonton, Alberta",Males,,5.6
+2018,"Edmonton, Alberta","Males, under 18 years",,5.7
+2018,"Edmonton, Alberta","Males, 18 to 64 years",,5.6
+2018,"Edmonton, Alberta","Males, 65 years and over",,
+2018,"Edmonton, Alberta",Females,,6.7
+2018,"Edmonton, Alberta","Females, under 18 years",,5.6
+2018,"Edmonton, Alberta","Females, 18 to 64 years",,7.4
+2018,"Edmonton, Alberta","Females, 65 years and over",,5
+2018,"Vancouver, British Columbia",All persons,,11.1
+2018,"Vancouver, British Columbia",Persons under 18 years,,8.4
+2018,"Vancouver, British Columbia",Persons 18 to 64 years,,11.4
+2018,"Vancouver, British Columbia",Persons 65 years and over,,13.2
+2018,"Vancouver, British Columbia",Males,,12.1
+2018,"Vancouver, British Columbia","Males, under 18 years",,10.6
+2018,"Vancouver, British Columbia","Males, 18 to 64 years",,12.6
+2018,"Vancouver, British Columbia","Males, 65 years and over",,11.7
+2018,"Vancouver, British Columbia",Females,,10.2
+2018,"Vancouver, British Columbia","Females, under 18 years",,
+2018,"Vancouver, British Columbia","Females, 18 to 64 years",,10.3
+2018,"Vancouver, British Columbia","Females, 65 years and over",,14.5
+2019,Canada,Persons under 18 years,,11.4
+2019,Canada,Persons 18 to 64 years,,11.4
+2019,Canada,Persons 65 years and over,,15.2
+2019,Canada,Males,,11.2
+2019,Canada,"Males, under 18 years",,11.4
+2019,Canada,"Males, 18 to 64 years",,10.9
+2019,Canada,"Males, 65 years and over",,12.5
+2019,Canada,Females,,12.8
+2019,Canada,"Females, under 18 years",,11.5
+2019,Canada,"Females, 18 to 64 years",,11.8
+2019,Canada,"Females, 65 years and over",,17.6
+2019,Atlantic provinces,All persons,,15.1
+2019,Atlantic provinces,Persons under 18 years,,16.6
+2019,Atlantic provinces,Persons 18 to 64 years,,12.6
+2019,Atlantic provinces,Persons 65 years and over,,21.4
+2019,Atlantic provinces,Males,,13.8
+2019,Atlantic provinces,"Males, under 18 years",,16.9
+2019,Atlantic provinces,"Males, 18 to 64 years",,11.9
+2019,Atlantic provinces,"Males, 65 years and over",,16.9
+2019,Atlantic provinces,Females,,16.4
+2019,Atlantic provinces,"Females, under 18 years",,16.4
+2019,Atlantic provinces,"Females, 18 to 64 years",,13.3
+2019,Atlantic provinces,"Females, 65 years and over",,25.3
+2019,Newfoundland and Labrador,All persons,10,14.7
+2019,Newfoundland and Labrador,Persons under 18 years,,13.1
+2019,Newfoundland and Labrador,Persons 18 to 64 years,,10.7
+2019,Newfoundland and Labrador,Persons 65 years and over,,27.3
+2019,Newfoundland and Labrador,Males,,13.4
+2019,Newfoundland and Labrador,"Males, under 18 years",,14.6
+2019,Newfoundland and Labrador,"Males, 18 to 64 years",,9.5
+2019,Newfoundland and Labrador,"Males, 65 years and over",,24.2
+2019,Newfoundland and Labrador,Females,,15.9
+2019,Newfoundland and Labrador,"Females, under 18 years",,11.6
+2019,Newfoundland and Labrador,"Females, 18 to 64 years",,11.9
+2019,Newfoundland and Labrador,"Females, 65 years and over",,30.2
+2019,Prince Edward Island,All persons,11,14.4
+2019,Prince Edward Island,Persons under 18 years,,18.6
+2019,Prince Edward Island,Persons 18 to 64 years,,12.3
+2019,Prince Edward Island,Persons 65 years and over,,16.6
+2019,Prince Edward Island,Males,,13.7
+2019,Prince Edward Island,"Males, under 18 years",,19
+2019,Prince Edward Island,"Males, 18 to 64 years",,12
+2019,Prince Edward Island,"Males, 65 years and over",,13.3
+2019,Prince Edward Island,Females,,15
+2019,Prince Edward Island,"Females, under 18 years",,18.1
+2019,Prince Edward Island,"Females, 18 to 64 years",,12.6
+2019,Prince Edward Island,"Females, 65 years and over",,19.5
+2019,Nova Scotia,All persons,12,15.7
+2019,Nova Scotia,Persons under 18 years,,16.9
+2019,Nova Scotia,Persons 18 to 64 years,,13.9
+2019,Nova Scotia,Persons 65 years and over,,20
+2019,Nova Scotia,Males,,14.4
+2019,Nova Scotia,"Males, under 18 years",,17.6
+2019,Nova Scotia,"Males, 18 to 64 years",,13.3
+2019,Nova Scotia,"Males, 65 years and over",,15.3
+2019,Nova Scotia,Females,,16.9
+2019,Nova Scotia,"Females, under 18 years",,16.1
+2019,Nova Scotia,"Females, 18 to 64 years",,14.6
+2019,Nova Scotia,"Females, 65 years and over",,24
+2019,New Brunswick,All persons,13,14.9
+2019,New Brunswick,Persons under 18 years,,18.2
+2019,New Brunswick,Persons 18 to 64 years,,12.2
+2019,New Brunswick,Persons 65 years and over,,19.9
+2019,New Brunswick,Males,,13.2
+2019,New Brunswick,"Males, under 18 years",,17.1
+2019,New Brunswick,"Males, 18 to 64 years",,11.6
+2019,New Brunswick,"Males, 65 years and over",,14.5
+2019,New Brunswick,Females,,16.5
+2019,New Brunswick,"Females, under 18 years",,19.3
+2019,New Brunswick,"Females, 18 to 64 years",,12.8
+2019,New Brunswick,"Females, 65 years and over",,24.7
+2019,Quebec,All persons,24,13.5
+2019,Quebec,Persons under 18 years,,8.4
+2019,Quebec,Persons 18 to 64 years,,12
+2019,Quebec,Persons 65 years and over,,22.9
+2019,Quebec,Males,,13.1
+2019,Quebec,"Males, under 18 years",,10.2
+2019,Quebec,"Males, 18 to 64 years",,12.7
+2019,Quebec,"Males, 65 years and over",,17.8
+2019,Quebec,Females,,13.8
+2019,Quebec,"Females, under 18 years",,6.6
+2019,Quebec,"Females, 18 to 64 years",,11.4
+2019,Quebec,"Females, 65 years and over",,27.3
+2019,Ontario,All persons,35,12.3
+2019,Ontario,Persons under 18 years,,13.8
+2019,Ontario,Persons 18 to 64 years,,11.6
+2019,Ontario,Persons 65 years and over,,13.1
+2019,Ontario,Males,,11
+2019,Ontario,"Males, under 18 years",,12.5
+2019,Ontario,"Males, 18 to 64 years",,10.4
+2019,Ontario,"Males, 65 years and over",,11.2
+2019,Ontario,Females,,13.5
+2019,Ontario,"Females, under 18 years",,15.1
+2019,Ontario,"Females, 18 to 64 years",,12.7
+2019,Ontario,"Females, 65 years and over",,14.8
+2019,Prairie provinces,All persons,,9.7
+2019,Prairie provinces,Persons under 18 years,,10.7
+2019,Prairie provinces,Persons 18 to 64 years,,9.7
+2019,Prairie provinces,Persons 65 years and over,,8.2
+2019,Prairie provinces,Males,,9.8
+2019,Prairie provinces,"Males, under 18 years",,11
+2019,Prairie provinces,"Males, 18 to 64 years",,9.8
+2019,Prairie provinces,"Males, 65 years and over",,7.8
+2019,Prairie provinces,Females,,9.6
+2019,Prairie provinces,"Females, under 18 years",,10.3
+2019,Prairie provinces,"Females, 18 to 64 years",,9.6
+2019,Prairie provinces,"Females, 65 years and over",,8.5
+2019,Manitoba,All persons,46,15.3
+2019,Manitoba,Persons under 18 years,,20.5
+2019,Manitoba,Persons 18 to 64 years,,13.5
+2019,Manitoba,Persons 65 years and over,,15.6
+2019,Manitoba,Males,,15
+2019,Manitoba,"Males, under 18 years",,21.2
+2019,Manitoba,"Males, 18 to 64 years",,13.1
+2019,Manitoba,"Males, 65 years and over",,13.7
+2019,Manitoba,Females,,15.7
+2019,Manitoba,"Females, under 18 years",,19.8
+2019,Manitoba,"Females, 18 to 64 years",,13.8
+2019,Manitoba,"Females, 65 years and over",,17.3
+2019,Saskatchewan,All persons,47,13.5
+2019,Saskatchewan,Persons under 18 years,,12.9
+2019,Saskatchewan,Persons 18 to 64 years,,13.4
+2019,Saskatchewan,Persons 65 years and over,,14.7
+2019,Saskatchewan,Males,,13.9
+2019,Saskatchewan,"Males, under 18 years",,13.8
+2019,Saskatchewan,"Males, 18 to 64 years",,13.8
+2019,Saskatchewan,"Males, 65 years and over",,14.4
+2019,Saskatchewan,Females,,13.1
+2019,Saskatchewan,"Females, under 18 years",,12
+2019,Saskatchewan,"Females, 18 to 64 years",,13
+2019,Saskatchewan,"Females, 65 years and over",,15.1
+2019,Alberta,All persons,48,7.1
+2019,Alberta,Persons under 18 years,,7.2
+2019,Alberta,Persons 18 to 64 years,,7.8
+2019,Alberta,Persons 65 years and over,,3.6
+2019,Alberta,Males,,7.2
+2019,Alberta,"Males, under 18 years",,7.3
+2019,Alberta,"Males, 18 to 64 years",,7.9
+2019,Alberta,"Males, 65 years and over",,3.9
+2019,Alberta,Females,,6.9
+2019,Alberta,"Females, under 18 years",,7.1
+2019,Alberta,"Females, 18 to 64 years",,7.7
+2019,Alberta,"Females, 65 years and over",,3.4
+2019,British Columbia,All persons,59,10.8
+2019,British Columbia,Persons under 18 years,,8.1
+2019,British Columbia,Persons 18 to 64 years,,11.3
+2019,British Columbia,Persons 65 years and over,,11.3
+2019,British Columbia,Males,,9.7
+2019,British Columbia,"Males, under 18 years",,8
+2019,British Columbia,"Males, 18 to 64 years",,10.5
+2019,British Columbia,"Males, 65 years and over",,8.9
+2019,British Columbia,Females,,11.8
+2019,British Columbia,"Females, under 18 years",,8.2
+2019,British Columbia,"Females, 18 to 64 years",,12.2
+2019,British Columbia,"Females, 65 years and over",,13.4
+2019,"Québec, Quebec",All persons,,10.3
+2019,"Québec, Quebec",Persons under 18 years,,
+2019,"Québec, Quebec",Persons 18 to 64 years,,9.2
+2019,"Québec, Quebec",Persons 65 years and over,,22.2
+2019,"Québec, Quebec",Males,,8.5
+2019,"Québec, Quebec","Males, under 18 years",,
+2019,"Québec, Quebec","Males, 18 to 64 years",,8.4
+2019,"Québec, Quebec","Males, 65 years and over",,13.9
+2019,"Québec, Quebec",Females,,12
+2019,"Québec, Quebec","Females, under 18 years",,
+2019,"Québec, Quebec","Females, 18 to 64 years",,9.8
+2019,"Québec, Quebec","Females, 65 years and over",,29.8
+2019,"Montréal, Quebec",All persons,,14.6
+2019,"Montréal, Quebec",Persons under 18 years,,11.8
+2019,"Montréal, Quebec",Persons 18 to 64 years,,13.5
+2019,"Montréal, Quebec",Persons 65 years and over,,22.1
+2019,"Montréal, Quebec",Males,,14.7
+2019,"Montréal, Quebec","Males, under 18 years",,14
+2019,"Montréal, Quebec","Males, 18 to 64 years",,14.4
+2019,"Montréal, Quebec","Males, 65 years and over",,16.9
+2019,"Montréal, Quebec",Females,,14.5
+2019,"Montréal, Quebec","Females, under 18 years",,9.6
+2019,"Montréal, Quebec","Females, 18 to 64 years",,12.5
+2019,"Montréal, Quebec","Females, 65 years and over",,26.1
+2019,"Ottawa-Gatineau, Ontario/Quebec",All persons,,8.7
+2019,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,,7.9
+2019,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,,8.4
+2019,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,,10.9
+2019,"Ottawa-Gatineau, Ontario/Quebec",Males,,8.5
+2019,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",,8.8
+2019,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",,8.6
+2019,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",,7.5
+2019,"Ottawa-Gatineau, Ontario/Quebec",Females,,9
+2019,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",,
+2019,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",,8.2
+2019,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",,13.8
+2019,"Toronto, Ontario",All persons,,13.1
+2019,"Toronto, Ontario",Persons under 18 years,,16.8
+2019,"Toronto, Ontario",Persons 18 to 64 years,,11.2
+2019,"Toronto, Ontario",Persons 65 years and over,,16.7
+2019,"Toronto, Ontario",Males,,11.6
+2019,"Toronto, Ontario","Males, under 18 years",,15
+2019,"Toronto, Ontario","Males, 18 to 64 years",,9.7
+2019,"Toronto, Ontario","Males, 65 years and over",,16.5
+2019,"Toronto, Ontario",Females,,14.4
+2019,"Toronto, Ontario","Females, under 18 years",,18.6
+2019,"Toronto, Ontario","Females, 18 to 64 years",,12.6
+2019,"Toronto, Ontario","Females, 65 years and over",,17
+2019,"Winnipeg, Manitoba",All persons,,14.6
+2019,"Winnipeg, Manitoba",Persons under 18 years,,19.8
+2019,"Winnipeg, Manitoba",Persons 18 to 64 years,,13.1
+2019,"Winnipeg, Manitoba",Persons 65 years and over,,14.6
+2019,"Winnipeg, Manitoba",Males,,14.2
+2019,"Winnipeg, Manitoba","Males, under 18 years",,20.2
+2019,"Winnipeg, Manitoba","Males, 18 to 64 years",,12.6
+2019,"Winnipeg, Manitoba","Males, 65 years and over",,13.6
+2019,"Winnipeg, Manitoba",Females,,15
+2019,"Winnipeg, Manitoba","Females, under 18 years",,19.5
+2019,"Winnipeg, Manitoba","Females, 18 to 64 years",,13.5
+2019,"Winnipeg, Manitoba","Females, 65 years and over",,15.5
+2019,"Calgary, Alberta",All persons,,4.9
+2019,"Calgary, Alberta",Persons under 18 years,,
+2019,"Calgary, Alberta",Persons 18 to 64 years,,5.3
+2019,"Calgary, Alberta",Persons 65 years and over,,
+2019,"Calgary, Alberta",Males,,4.5
+2019,"Calgary, Alberta","Males, under 18 years",,
+2019,"Calgary, Alberta","Males, 18 to 64 years",,4.8
+2019,"Calgary, Alberta","Males, 65 years and over",,
+2019,"Calgary, Alberta",Females,,5.3
+2019,"Calgary, Alberta","Females, under 18 years",,
+2019,"Calgary, Alberta","Females, 18 to 64 years",,5.8
+2019,"Calgary, Alberta","Females, 65 years and over",,
+2019,"Edmonton, Alberta",All persons,,7.3
+2019,"Edmonton, Alberta",Persons under 18 years,,
+2019,"Edmonton, Alberta",Persons 18 to 64 years,,8.4
+2019,"Edmonton, Alberta",Persons 65 years and over,,
+2019,"Edmonton, Alberta",Males,,7.8
+2019,"Edmonton, Alberta","Males, under 18 years",,
+2019,"Edmonton, Alberta","Males, 18 to 64 years",,8.9
+2019,"Edmonton, Alberta","Males, 65 years and over",,
+2019,"Edmonton, Alberta",Females,,6.9
+2019,"Edmonton, Alberta","Females, under 18 years",,
+2019,"Edmonton, Alberta","Females, 18 to 64 years",,7.8
+2019,"Edmonton, Alberta","Females, 65 years and over",,
+2019,"Vancouver, British Columbia",All persons,,9.7
+2019,"Vancouver, British Columbia",Persons under 18 years,,4.7
+2019,"Vancouver, British Columbia",Persons 18 to 64 years,,11.1
+2019,"Vancouver, British Columbia",Persons 65 years and over,,8.8
+2019,"Vancouver, British Columbia",Males,,8.9
+2019,"Vancouver, British Columbia","Males, under 18 years",,
+2019,"Vancouver, British Columbia","Males, 18 to 64 years",,10.6
+2019,"Vancouver, British Columbia","Males, 65 years and over",,6.4
+2019,"Vancouver, British Columbia",Females,,10.5
+2019,"Vancouver, British Columbia","Females, under 18 years",,
+2019,"Vancouver, British Columbia","Females, 18 to 64 years",,11.6
+2019,"Vancouver, British Columbia","Females, 65 years and over",,11.1
diff --git a/tests/assets/progress-calculation/data/temp/indicator_10-4-1.csv b/tests/assets/progress-calculation/data/temp/indicator_10-4-1.csv
new file mode 100644
index 00000000..7019bab1
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_10-4-1.csv
@@ -0,0 +1,319 @@
+Year,Geography,GeoCode,Value
+2000,"",,49.91
+2001,"",,50.22
+2002,"",,50.03
+2003,"",,49.51
+2004,"",,49.17
+2005,"",,48.78
+2006,"",,49.33
+2007,"",,49.69
+2008,"",,49.47
+2009,"",,51.68
+2010,"",,50.28
+2011,"",,49.78
+2012,"",,50.54
+2013,"",,50.53
+2014,"",,50.05
+2015,"",,51.59
+2016,"",,50.68
+2017,"",,49.98
+2018,"",,50.41
+2019,"",,50.8
+2020,"",,52.54
+2000,Newfoundland and Labrador,10,44.72
+2000,Prince Edward Island,11,51.18
+2000,Nova Scotia,12,52.07
+2000,New Brunswick,13,50.13
+2000,Quebec,24,51.23
+2000,Ontario,35,52.75
+2000,Manitoba,46,49.15
+2000,Saskatchewan,47,39.21
+2000,Alberta,48,41.43
+2000,British Columbia,59,50.28
+2000,Yukon,60,53.17
+2000,Northwest Territories,61,42.06
+2000,Nunavut,62,53.98
+2000,Outside Canada,,87.82
+2001,Newfoundland and Labrador,10,45.89
+2001,Prince Edward Island,11,51.97
+2001,Nova Scotia,12,51.39
+2001,New Brunswick,13,49.03
+2001,Quebec,24,51.42
+2001,Ontario,35,52.21
+2001,Manitoba,46,49.1
+2001,Saskatchewan,47,41.62
+2001,Alberta,48,44.36
+2001,British Columbia,59,50.65
+2001,Yukon,60,51.64
+2001,Northwest Territories,61,41.06
+2001,Nunavut,62,59.74
+2001,Outside Canada,,88.59
+2002,Newfoundland and Labrador,10,41.1
+2002,Prince Edward Island,11,50.85
+2002,Nova Scotia,12,51.77
+2002,New Brunswick,13,49.72
+2002,Quebec,24,51.26
+2002,Ontario,35,51.13
+2002,Manitoba,46,49.42
+2002,Saskatchewan,47,41.8
+2002,Alberta,48,46.41
+2002,British Columbia,59,50.66
+2002,Yukon,60,55.24
+2002,Northwest Territories,61,43.59
+2002,Nunavut,62,62
+2002,Outside Canada,,88.38
+2003,Newfoundland and Labrador,10,39.43
+2003,Prince Edward Island,11,52.07
+2003,Nova Scotia,12,50.49
+2003,New Brunswick,13,49.82
+2003,Quebec,24,51.51
+2003,Ontario,35,51.6
+2003,Manitoba,46,50.01
+2003,Saskatchewan,47,41.02
+2003,Alberta,48,42.93
+2003,British Columbia,59,49.53
+2003,Yukon,60,52.94
+2003,Northwest Territories,61,36.52
+2003,Nunavut,62,64.11
+2003,Outside Canada,,89.18
+2004,Newfoundland and Labrador,10,38.52
+2004,Prince Edward Island,11,51.72
+2004,Nova Scotia,12,50.68
+2004,New Brunswick,13,49.38
+2004,Quebec,24,51.34
+2004,Ontario,35,51.85
+2004,Manitoba,46,49.53
+2004,Saskatchewan,47,39.16
+2004,Alberta,48,42.17
+2004,British Columbia,59,48.65
+2004,Yukon,60,52.76
+2004,Northwest Territories,61,33.63
+2004,Nunavut,62,63.21
+2004,Outside Canada,,90.02
+2005,Newfoundland and Labrador,10,35.01
+2005,Prince Edward Island,11,50.37
+2005,Nova Scotia,12,50.69
+2005,New Brunswick,13,48.71
+2005,Quebec,24,51.39
+2005,Ontario,35,51.96
+2005,Manitoba,46,49.37
+2005,Saskatchewan,47,38.22
+2005,Alberta,48,41.23
+2005,British Columbia,59,48.16
+2005,Yukon,60,51.94
+2005,Northwest Territories,61,36.52
+2005,Nunavut,62,63.63
+2005,Outside Canada,,91.49
+2006,Newfoundland and Labrador,10,33.34
+2006,Prince Edward Island,11,50.61
+2006,Nova Scotia,12,51.52
+2006,New Brunswick,13,48.63
+2006,Quebec,24,51.45
+2006,Ontario,35,52.31
+2006,Manitoba,46,47.86
+2006,Saskatchewan,47,40.15
+2006,Alberta,48,43.37
+2006,British Columbia,59,49.03
+2006,Yukon,60,52.32
+2006,Northwest Territories,61,39.59
+2006,Nunavut,62,63.29
+2006,Outside Canada,,89.48
+2007,Newfoundland and Labrador,10,30.34
+2007,Prince Edward Island,11,50.43
+2007,Nova Scotia,12,51.48
+2007,New Brunswick,13,48.89
+2007,Quebec,24,51.24
+2007,Ontario,35,52.96
+2007,Manitoba,46,48.37
+2007,Saskatchewan,47,38.83
+2007,Alberta,48,45.11
+2007,British Columbia,59,49.12
+2007,Yukon,60,54.66
+2007,Northwest Territories,61,42.99
+2007,Nunavut,62,62.4
+2007,Outside Canada,,89.51
+2008,Newfoundland and Labrador,10,29.99
+2008,Prince Edward Island,11,51.88
+2008,Nova Scotia,12,51.81
+2008,New Brunswick,13,51.29
+2008,Quebec,24,51.97
+2008,Ontario,35,53.88
+2008,Manitoba,46,48.85
+2008,Saskatchewan,47,32.92
+2008,Alberta,48,43.12
+2008,British Columbia,59,49.57
+2008,Yukon,60,51.66
+2008,Northwest Territories,61,41.45
+2008,Nunavut,62,59.29
+2008,Outside Canada,,90.13
+2009,Newfoundland and Labrador,10,40.61
+2009,Prince Edward Island,11,52.52
+2009,Nova Scotia,12,53.75
+2009,New Brunswick,13,52.34
+2009,Quebec,24,52.15
+2009,Ontario,35,54.01
+2009,Manitoba,46,51.55
+2009,Saskatchewan,47,39.02
+2009,Alberta,48,49.97
+2009,British Columbia,59,50.65
+2009,Yukon,60,50.82
+2009,Northwest Territories,61,48.95
+2009,Nunavut,62,63.85
+2009,Outside Canada,,90
+2010,Newfoundland and Labrador,10,37.02
+2010,Prince Edward Island,11,51.33
+2010,Nova Scotia,12,52.47
+2010,New Brunswick,13,51.26
+2010,Quebec,24,51.75
+2010,Ontario,35,52.82
+2010,Manitoba,46,50.49
+2010,Saskatchewan,47,38.89
+2010,Alberta,48,46.68
+2010,British Columbia,59,49.58
+2010,Yukon,60,51.99
+2010,Northwest Territories,61,42.45
+2010,Nunavut,62,57.13
+2010,Outside Canada,,90.03
+2011,Newfoundland and Labrador,10,35.16
+2011,Prince Edward Island,11,51.64
+2011,Nova Scotia,12,52.97
+2011,New Brunswick,13,50.82
+2011,Quebec,24,52
+2011,Ontario,35,52.84
+2011,Manitoba,46,50.07
+2011,Saskatchewan,47,36.12
+2011,Alberta,48,45.47
+2011,British Columbia,59,48.84
+2011,Yukon,60,53.19
+2011,Northwest Territories,61,45.5
+2011,Nunavut,62,58.99
+2011,Outside Canada,,89.65
+2012,Newfoundland and Labrador,10,40.02
+2012,Prince Edward Island,11,51.63
+2012,Nova Scotia,12,53.64
+2012,New Brunswick,13,50.95
+2012,Quebec,24,52.68
+2012,Ontario,35,52.95
+2012,Manitoba,46,49.21
+2012,Saskatchewan,47,37.28
+2012,Alberta,48,47.76
+2012,British Columbia,59,49.31
+2012,Yukon,60,54.3
+2012,Northwest Territories,61,50.43
+2012,Nunavut,62,57.32
+2012,Outside Canada,,89.31
+2013,Newfoundland and Labrador,10,40.24
+2013,Prince Edward Island,11,51.18
+2013,Nova Scotia,12,53.81
+2013,New Brunswick,13,51.27
+2013,Quebec,24,52.79
+2013,Ontario,35,53.43
+2013,Manitoba,46,49.2
+2013,Saskatchewan,47,36.77
+2013,Alberta,48,46.95
+2013,British Columbia,59,49.48
+2013,Yukon,60,52.37
+2013,Northwest Territories,61,51.05
+2013,Nunavut,62,56.64
+2013,Outside Canada,,89.26
+2014,Newfoundland and Labrador,10,41.89
+2014,Prince Edward Island,11,51.79
+2014,Nova Scotia,12,53.47
+2014,New Brunswick,13,51.58
+2014,Quebec,24,52.73
+2014,Ontario,35,52.89
+2014,Manitoba,46,49.4
+2014,Saskatchewan,47,38.46
+2014,Alberta,48,45.61
+2014,British Columbia,59,48.57
+2014,Yukon,60,51.06
+2014,Northwest Territories,61,49.41
+2014,Nunavut,62,57.74
+2014,Outside Canada,,90
+2015,Newfoundland and Labrador,10,48.05
+2015,Prince Edward Island,11,50.69
+2015,Nova Scotia,12,53.52
+2015,New Brunswick,13,50.9
+2015,Quebec,24,52.32
+2015,Ontario,35,52.84
+2015,Manitoba,46,50.19
+2015,Saskatchewan,47,40.53
+2015,Alberta,48,52.51
+2015,British Columbia,59,49.37
+2015,Yukon,60,53.41
+2015,Northwest Territories,61,53.76
+2015,Nunavut,62,60.39
+2015,Outside Canada,,89.8
+2016,Newfoundland and Labrador,10,46.89
+2016,Prince Edward Island,11,49.69
+2016,Nova Scotia,12,52.67
+2016,New Brunswick,13,51.08
+2016,Quebec,24,52.21
+2016,Ontario,35,51.72
+2016,Manitoba,46,49.69
+2016,Saskatchewan,47,41.22
+2016,Alberta,48,50.31
+2016,British Columbia,59,48.45
+2016,Yukon,60,52.1
+2016,Northwest Territories,61,54.9
+2016,Nunavut,62,58.95
+2016,Outside Canada,,90.11
+2017,Newfoundland and Labrador,10,43.12
+2017,Prince Edward Island,11,49.22
+2017,Nova Scotia,12,52.36
+2017,New Brunswick,13,50.56
+2017,Quebec,24,52.02
+2017,Ontario,35,51.84
+2017,Manitoba,46,49.02
+2017,Saskatchewan,47,39.18
+2017,Alberta,48,47.33
+2017,British Columbia,59,48.15
+2017,Yukon,60,53.59
+2017,Northwest Territories,61,52.52
+2017,Nunavut,62,54.47
+2017,Outside Canada,,90.35
+2018,Newfoundland and Labrador,10,41.37
+2018,Prince Edward Island,11,49.85
+2018,Nova Scotia,12,53.36
+2018,New Brunswick,13,51.1
+2018,Quebec,24,52.73
+2018,Ontario,35,52.73
+2018,Manitoba,46,49.21
+2018,Saskatchewan,47,38.41
+2018,Alberta,48,46.64
+2018,British Columbia,59,48.58
+2018,Yukon,60,55.5
+2018,Northwest Territories including Nunavut,,
+2018,Northwest Territories,61,52.42
+2018,Nunavut,62,57.13
+2018,Outside Canada,,90.46
+2019,Newfoundland and Labrador,10,41.29
+2019,Prince Edward Island,11,49.81
+2019,Nova Scotia,12,52.73
+2019,New Brunswick,13,51.7
+2019,Quebec,24,53.27
+2019,Ontario,35,53.09
+2019,Manitoba,46,49.63
+2019,Saskatchewan,47,38.73
+2019,Alberta,48,46.77
+2019,British Columbia,59,49.06
+2019,Yukon,60,58.63
+2019,Northwest Territories including Nunavut,,
+2019,Northwest Territories,61,54.53
+2019,Nunavut,62,57.09
+2019,Outside Canada,,91.21
+2020,Newfoundland and Labrador,10,43.95
+2020,Prince Edward Island,11,50.15
+2020,Nova Scotia,12,52.45
+2020,New Brunswick,13,51.73
+2020,Quebec,24,54.71
+2020,Ontario,35,54.45
+2020,Manitoba,46,49.67
+2020,Saskatchewan,47,40.24
+2020,Alberta,48,51.87
+2020,British Columbia,59,49.31
+2020,Yukon,60,56.63
+2020,Northwest Territories including Nunavut,,
+2020,Northwest Territories,61,56.36
+2020,Nunavut,62,52.07
+2020,Outside Canada,,90.94
diff --git a/tests/assets/progress-calculation/data/temp/indicator_10-c-1.csv b/tests/assets/progress-calculation/data/temp/indicator_10-c-1.csv
new file mode 100644
index 00000000..2d8b849f
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_10-c-1.csv
@@ -0,0 +1,2 @@
+Year,Value
+2017,6
diff --git a/tests/assets/progress-calculation/data/temp/indicator_11-1-1.csv b/tests/assets/progress-calculation/data/temp/indicator_11-1-1.csv
new file mode 100644
index 00000000..8b953f1e
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_11-1-1.csv
@@ -0,0 +1,10 @@
+Year,Selected housing vulnerable populations,Value
+2016,,12.7
+2018,,11.6
+2018,"Total, lone-parent family households",22
+2018,Lone-parent family households whose reference person is male,15.8
+2018,Lone-parent family households whose reference person is female,24
+2018,"Total, one person households",22
+2018,Men living alone,21
+2018,Women living alone,24
+2018,Reference person who experienced homelessness,34
diff --git a/tests/assets/progress-calculation/data/temp/indicator_11-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_11-2-1.csv
new file mode 100644
index 00000000..765012ce
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_11-2-1.csv
@@ -0,0 +1,75 @@
+Year,Geography,Census divisions,GeoCode,Value
+2016,Newfoundland and Labrador,"",10,26.7
+2016,"St. John's, Newfoundland and Labrador","",,59.9
+2016,Newfoundland and Labrador,Census subdivisions in a census agglomeration,,22.1
+2016,Newfoundland and Labrador,Area outside census metropolitan areas and census agglomeration,,0
+2016,Prince Edward Island,"",11,16.9
+2016,Prince Edward Island,Census subdivisions in a census agglomeration,,28.1
+2016,Prince Edward Island,Area outside census metropolitan areas and census agglomeration,,0
+2016,Nova Scotia,"",12,37.6
+2016,"Halifax, Nova Scotia","",,70.9
+2016,Nova Scotia,Census subdivisions in a census agglomeration,,29.7
+2016,Nova Scotia,Area outside census metropolitan areas and census agglomeration,,0
+2016,New Brunswick,"",13,28.8
+2016,"Moncton, New Brunswick","",,65.4
+2016,"Saint John, New Brunswick","",,49.1
+2016,New Brunswick,Census subdivisions in a census agglomeration,,29.8
+2016,New Brunswick,Area outside census metropolitan areas and census agglomeration,,0
+2016,Quebec,"",24,66.6
+2016,"Montréal, Quebec","",,91.6
+2016,"Ottawa - Gatineau (Quebec part), Quebec","",,77.2
+2016,"Québec, Quebec","",,83.1
+2016,"Saguenay, Quebec","",,75.4
+2016,"Sherbrooke, Quebec","",,76.4
+2016,"Trois-Rivières, Quebec","",,75.4
+2016,Quebec,Census subdivisions in a census agglomeration,,35.5
+2016,Quebec,Area outside census metropolitan areas and census agglomeration,,3.4
+2016,Ontario,"",35,75.2
+2016,"Barrie, Ontario","",,66.8
+2016,"Belleville, Ontario","",,57.1
+2016,"Brantford, Ontario","",,69.6
+2016,"Greater Sudbury / Grand Sudbury, Ontario","",,66.5
+2016,"Guelph, Ontario","",,83.5
+2016,"Hamilton, Ontario","",,81.1
+2016,"Kingston, Ontario","",,69.4
+2016,"Kitchener - Cambridge - Waterloo, Ontario","",,86.2
+2016,"London, Ontario","",,77.7
+2016,"Oshawa, Ontario","",,88.7
+2016,"Ottawa - Gatineau (Ontario part), Ontario","",,85
+2016,"Peterborough, Ontario","",,62.7
+2016,"St. Catharines - Niagara, Ontario","",,80.9
+2016,"Thunder Bay, Ontario","",,76.3
+2016,"Toronto, Ontario","",,93
+2016,"Windsor, Ontario","",,67.1
+2016,Ontario,Census subdivisions in a census agglomeration,,54.7
+2016,Ontario,Area outside census metropolitan areas and census agglomeration,,1.7
+2016,Manitoba,"",46,57.4
+2016,"Winnipeg, Manitoba","",,88.2
+2016,Manitoba,Census subdivisions in a census agglomeration,,35.7
+2016,Manitoba,Area outside census metropolitan areas and census agglomeration,,0
+2016,Saskatchewan,"",47,50.3
+2016,"Regina, Saskatchewan","",,90.4
+2016,"Saskatoon, Saskatchewan","",,82.6
+2016,Saskatchewan,Census subdivisions in a census agglomeration,,54.4
+2016,Saskatchewan,Area outside census metropolitan areas and census agglomeration,,0
+2016,Alberta,"",48,67.9
+2016,"Calgary, Alberta","",,88.9
+2016,"Edmonton, Alberta","",,82.7
+2016,"Lethbridge, Alberta","",,71.6
+2016,Alberta,Census subdivisions in a census agglomeration,,64.5
+2016,Alberta,Area outside census metropolitan areas and census agglomeration,,3.1
+2016,British Columbia,"",59,78.4
+2016,"Abbotsford - Mission, British Columbia","",,79.3
+2016,"Kelowna, British Columbia","",,73.7
+2016,"Vancouver, British Columbia","",,92.7
+2016,"Victoria, British Columbia","",,90.4
+2016,British Columbia,Census subdivisions in a census agglomeration,,72
+2016,British Columbia,Area outside census metropolitan areas and census agglomeration,,17.1
+2016,Yukon,"",60,56.3
+2016,Yukon,Census subdivisions in a census agglomeration,,71.6
+2016,Yukon,Area outside census metropolitan areas and census agglomeration,,0
+2016,Northwest Territories,"",61,41.4
+2016,Northwest Territories,Census subdivisions in a census agglomeration,,88.4
+2016,Northwest Territories,Area outside census metropolitan areas and census agglomeration,,0
+2016,Nunavut,"",62,0
+2016,Nunavut,Area outside census metropolitan areas and census agglomeration,,0
diff --git a/tests/assets/progress-calculation/data/temp/indicator_11-6-1.csv b/tests/assets/progress-calculation/data/temp/indicator_11-6-1.csv
new file mode 100644
index 00000000..981e6900
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_11-6-1.csv
@@ -0,0 +1,307 @@
+Year,Geography,Sources of waste for disposal,GeoCode,Value
+2002,"","",,24081371
+2004,"","",,25226766
+2006,"","",,26417011
+2008,"","",,25926476
+2010,"","",,24952415
+2012,"","",,24681474
+2014,"","",,24766650
+2016,"","",,24940747
+2018,"","",,25733021
+2002,Newfoundland and Labrador,All sources of waste for disposal,10,376594
+2002,Newfoundland and Labrador,Residential sources of waste for disposal,,216218
+2002,Newfoundland and Labrador,Non-residential sources of waste for disposal,,160376
+2002,Prince Edward Island,All sources of waste for disposal,11,
+2002,Prince Edward Island,Residential sources of waste for disposal,,
+2002,Prince Edward Island,Non-residential sources of waste for disposal,,
+2002,Nova Scotia,All sources of waste for disposal,12,389194
+2002,Nova Scotia,Residential sources of waste for disposal,,169649
+2002,Nova Scotia,Non-residential sources of waste for disposal,,219546
+2002,New Brunswick,All sources of waste for disposal,13,413606
+2002,New Brunswick,Residential sources of waste for disposal,,203506
+2002,New Brunswick,Non-residential sources of waste for disposal,,210100
+2002,Quebec,All sources of waste for disposal,24,5846459
+2002,Quebec,Residential sources of waste for disposal,,1875235
+2002,Quebec,Non-residential sources of waste for disposal,,3971225
+2002,Ontario,All sources of waste for disposal,35,9645633
+2002,Ontario,Residential sources of waste for disposal,,3438408
+2002,Ontario,Non-residential sources of waste for disposal,,6207225
+2002,Manitoba,All sources of waste for disposal,46,896556
+2002,Manitoba,Residential sources of waste for disposal,,412612
+2002,Manitoba,Non-residential sources of waste for disposal,,483944
+2002,Saskatchewan,All sources of waste for disposal,47,795124
+2002,Saskatchewan,Residential sources of waste for disposal,,278692
+2002,Saskatchewan,Non-residential sources of waste for disposal,,516432
+2002,Alberta,All sources of waste for disposal,48,2890294
+2002,Alberta,Residential sources of waste for disposal,,866398
+2002,Alberta,Non-residential sources of waste for disposal,,2023896
+2002,British Columbia,All sources of waste for disposal,59,2687882
+2002,British Columbia,Residential sources of waste for disposal,,929101
+2002,British Columbia,Non-residential sources of waste for disposal,,1758781
+2002,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
+2002,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
+2002,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
+2004,Newfoundland and Labrador,All sources of waste for disposal,10,400048
+2004,Newfoundland and Labrador,Residential sources of waste for disposal,,228004
+2004,Newfoundland and Labrador,Non-residential sources of waste for disposal,,172044
+2004,Prince Edward Island,All sources of waste for disposal,11,
+2004,Prince Edward Island,Residential sources of waste for disposal,,
+2004,Prince Edward Island,Non-residential sources of waste for disposal,,
+2004,Nova Scotia,All sources of waste for disposal,12,399967
+2004,Nova Scotia,Residential sources of waste for disposal,,179262
+2004,Nova Scotia,Non-residential sources of waste for disposal,,220705
+2004,New Brunswick,All sources of waste for disposal,13,442173
+2004,New Brunswick,Residential sources of waste for disposal,,208120
+2004,New Brunswick,Non-residential sources of waste for disposal,,234053
+2004,Quebec,All sources of waste for disposal,24,6454000
+2004,Quebec,Residential sources of waste for disposal,,2209000
+2004,Quebec,Non-residential sources of waste for disposal,,4245000
+2004,Ontario,All sources of waste for disposal,35,9809264
+2004,Ontario,Residential sources of waste for disposal,,3489917
+2004,Ontario,Non-residential sources of waste for disposal,,6319347
+2004,Manitoba,All sources of waste for disposal,46,928117
+2004,Manitoba,Residential sources of waste for disposal,,450658
+2004,Manitoba,Non-residential sources of waste for disposal,,477459
+2004,Saskatchewan,All sources of waste for disposal,47,794933
+2004,Saskatchewan,Residential sources of waste for disposal,,279420
+2004,Saskatchewan,Non-residential sources of waste for disposal,,515513
+2004,Alberta,All sources of waste for disposal,48,3077311
+2004,Alberta,Residential sources of waste for disposal,,943420
+2004,Alberta,Non-residential sources of waste for disposal,,2133890
+2004,British Columbia,All sources of waste for disposal,59,2767657
+2004,British Columbia,Residential sources of waste for disposal,,919323
+2004,British Columbia,Non-residential sources of waste for disposal,,1848335
+2004,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
+2004,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
+2004,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
+2006,Newfoundland and Labrador,All sources of waste for disposal,10,428809
+2006,Newfoundland and Labrador,Residential sources of waste for disposal,,227618
+2006,Newfoundland and Labrador,Non-residential sources of waste for disposal,,201192
+2006,Prince Edward Island,All sources of waste for disposal,11,
+2006,Prince Edward Island,Residential sources of waste for disposal,,
+2006,Prince Edward Island,Non-residential sources of waste for disposal,,
+2006,Nova Scotia,All sources of waste for disposal,12,359105
+2006,Nova Scotia,Residential sources of waste for disposal,,169337
+2006,Nova Scotia,Non-residential sources of waste for disposal,,189768
+2006,New Brunswick,All sources of waste for disposal,13,511706
+2006,New Brunswick,Residential sources of waste for disposal,,263580
+2006,New Brunswick,Non-residential sources of waste for disposal,,248125
+2006,Quebec,All sources of waste for disposal,24,6808440
+2006,Quebec,Residential sources of waste for disposal,,2980427
+2006,Quebec,Non-residential sources of waste for disposal,,3828013
+2006,Ontario,All sources of waste for disposal,35,9710459
+2006,Ontario,Residential sources of waste for disposal,,3411642
+2006,Ontario,Non-residential sources of waste for disposal,,6298818
+2006,Manitoba,All sources of waste for disposal,46,904272
+2006,Manitoba,Residential sources of waste for disposal,,425304
+2006,Manitoba,Non-residential sources of waste for disposal,,478968
+2006,Saskatchewan,All sources of waste for disposal,47,833753
+2006,Saskatchewan,Residential sources of waste for disposal,,296062
+2006,Saskatchewan,Non-residential sources of waste for disposal,,537691
+2006,Alberta,All sources of waste for disposal,48,3819872
+2006,Alberta,Residential sources of waste for disposal,,973683
+2006,Alberta,Non-residential sources of waste for disposal,,2846189
+2006,British Columbia,All sources of waste for disposal,59,2917080
+2006,British Columbia,Residential sources of waste for disposal,,956968
+2006,British Columbia,Non-residential sources of waste for disposal,,1960113
+2006,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
+2006,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
+2006,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
+2008,Newfoundland and Labrador,All sources of waste for disposal,10,399184
+2008,Newfoundland and Labrador,Residential sources of waste for disposal,,210964
+2008,Newfoundland and Labrador,Non-residential sources of waste for disposal,,188220
+2008,Prince Edward Island,All sources of waste for disposal,11,
+2008,Prince Edward Island,Residential sources of waste for disposal,,
+2008,Prince Edward Island,Non-residential sources of waste for disposal,,
+2008,Nova Scotia,All sources of waste for disposal,12,354231
+2008,Nova Scotia,Residential sources of waste for disposal,,148060
+2008,Nova Scotia,Non-residential sources of waste for disposal,,206171
+2008,New Brunswick,All sources of waste for disposal,13,479461
+2008,New Brunswick,Residential sources of waste for disposal,,233703
+2008,New Brunswick,Non-residential sources of waste for disposal,,245758
+2008,Quebec,All sources of waste for disposal,24,6146319
+2008,Quebec,Residential sources of waste for disposal,,2848822
+2008,Quebec,Non-residential sources of waste for disposal,,3297497
+2008,Ontario,All sources of waste for disposal,35,9631559
+2008,Ontario,Residential sources of waste for disposal,,3231399
+2008,Ontario,Non-residential sources of waste for disposal,,6400160
+2008,Manitoba,All sources of waste for disposal,46,945441
+2008,Manitoba,Residential sources of waste for disposal,,400297
+2008,Manitoba,Non-residential sources of waste for disposal,,545144
+2008,Saskatchewan,All sources of waste for disposal,47,902943
+2008,Saskatchewan,Residential sources of waste for disposal,,289760
+2008,Saskatchewan,Non-residential sources of waste for disposal,,613182
+2008,Alberta,All sources of waste for disposal,48,4147558
+2008,Alberta,Residential sources of waste for disposal,,993976
+2008,Alberta,Non-residential sources of waste for disposal,,3153581
+2008,British Columbia,All sources of waste for disposal,59,2811568
+2008,British Columbia,Residential sources of waste for disposal,,960472
+2008,British Columbia,Non-residential sources of waste for disposal,,1851097
+2008,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
+2008,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
+2008,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
+2010,Newfoundland and Labrador,All sources of waste for disposal,10,394235
+2010,Newfoundland and Labrador,Residential sources of waste for disposal,,
+2010,Newfoundland and Labrador,Non-residential sources of waste for disposal,,
+2010,Prince Edward Island,All sources of waste for disposal,11,
+2010,Prince Edward Island,Residential sources of waste for disposal,,
+2010,Prince Edward Island,Non-residential sources of waste for disposal,,
+2010,Nova Scotia,All sources of waste for disposal,12,367246
+2010,Nova Scotia,Residential sources of waste for disposal,,145589
+2010,Nova Scotia,Non-residential sources of waste for disposal,,221657
+2010,New Brunswick,All sources of waste for disposal,13,475265
+2010,New Brunswick,Residential sources of waste for disposal,,219486
+2010,New Brunswick,Non-residential sources of waste for disposal,,255779
+2010,Quebec,All sources of waste for disposal,24,5795707
+2010,Quebec,Residential sources of waste for disposal,,2853189
+2010,Quebec,Non-residential sources of waste for disposal,,2942518
+2010,Ontario,All sources of waste for disposal,35,9247415
+2010,Ontario,Residential sources of waste for disposal,,3204264
+2010,Ontario,Non-residential sources of waste for disposal,,6043151
+2010,Manitoba,All sources of waste for disposal,46,1020481
+2010,Manitoba,Residential sources of waste for disposal,,453754
+2010,Manitoba,Non-residential sources of waste for disposal,,566727
+2010,Saskatchewan,All sources of waste for disposal,47,937268
+2010,Saskatchewan,Residential sources of waste for disposal,,283726
+2010,Saskatchewan,Non-residential sources of waste for disposal,,653541
+2010,Alberta,All sources of waste for disposal,48,3917492
+2010,Alberta,Residential sources of waste for disposal,,1093155
+2010,Alberta,Non-residential sources of waste for disposal,,2824337
+2010,British Columbia,All sources of waste for disposal,59,2658271
+2010,British Columbia,Residential sources of waste for disposal,,953761
+2010,British Columbia,Non-residential sources of waste for disposal,,1704510
+2010,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
+2010,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
+2010,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
+2012,Newfoundland and Labrador,All sources of waste for disposal,10,391571
+2012,Newfoundland and Labrador,Residential sources of waste for disposal,,
+2012,Newfoundland and Labrador,Non-residential sources of waste for disposal,,
+2012,Prince Edward Island,All sources of waste for disposal,11,
+2012,Prince Edward Island,Residential sources of waste for disposal,,
+2012,Prince Edward Island,Non-residential sources of waste for disposal,,
+2012,Nova Scotia,All sources of waste for disposal,12,365079
+2012,Nova Scotia,Residential sources of waste for disposal,,145601
+2012,Nova Scotia,Non-residential sources of waste for disposal,,219478
+2012,New Brunswick,All sources of waste for disposal,13,492938
+2012,New Brunswick,Residential sources of waste for disposal,,215755
+2012,New Brunswick,Non-residential sources of waste for disposal,,277183
+2012,Quebec,All sources of waste for disposal,24,5584621
+2012,Quebec,Residential sources of waste for disposal,,2803335
+2012,Quebec,Non-residential sources of waste for disposal,,2781286
+2012,Ontario,All sources of waste for disposal,35,9208839
+2012,Ontario,Residential sources of waste for disposal,,3388501
+2012,Ontario,Non-residential sources of waste for disposal,,5820338
+2012,Manitoba,All sources of waste for disposal,46,1017663
+2012,Manitoba,Residential sources of waste for disposal,,444227
+2012,Manitoba,Non-residential sources of waste for disposal,,573436
+2012,Saskatchewan,All sources of waste for disposal,47,957670
+2012,Saskatchewan,Residential sources of waste for disposal,,315987
+2012,Saskatchewan,Non-residential sources of waste for disposal,,641682
+2012,Alberta,All sources of waste for disposal,48,3913924
+2012,Alberta,Residential sources of waste for disposal,,1176226
+2012,Alberta,Non-residential sources of waste for disposal,,2737698
+2012,British Columbia,All sources of waste for disposal,59,2604147
+2012,British Columbia,Residential sources of waste for disposal,,947542
+2012,British Columbia,Non-residential sources of waste for disposal,,1656605
+2012,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
+2012,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
+2012,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
+2014,Newfoundland and Labrador,All sources of waste for disposal,10,415158
+2014,Newfoundland and Labrador,Residential sources of waste for disposal,,
+2014,Newfoundland and Labrador,Non-residential sources of waste for disposal,,
+2014,Prince Edward Island,All sources of waste for disposal,11,
+2014,Prince Edward Island,Residential sources of waste for disposal,,
+2014,Prince Edward Island,Non-residential sources of waste for disposal,,
+2014,Nova Scotia,All sources of waste for disposal,12,364193
+2014,Nova Scotia,Residential sources of waste for disposal,,160805
+2014,Nova Scotia,Non-residential sources of waste for disposal,,203388
+2014,New Brunswick,All sources of waste for disposal,13,508115
+2014,New Brunswick,Residential sources of waste for disposal,,234534
+2014,New Brunswick,Non-residential sources of waste for disposal,,273581
+2014,Quebec,All sources of waste for disposal,24,5414539
+2014,Quebec,Residential sources of waste for disposal,,2831404
+2014,Quebec,Non-residential sources of waste for disposal,,2583135
+2014,Ontario,All sources of waste for disposal,35,9165299
+2014,Ontario,Residential sources of waste for disposal,,3490792
+2014,Ontario,Non-residential sources of waste for disposal,,5674507
+2014,Manitoba,All sources of waste for disposal,46,990230
+2014,Manitoba,Residential sources of waste for disposal,,333008
+2014,Manitoba,Non-residential sources of waste for disposal,,657222
+2014,Saskatchewan,All sources of waste for disposal,47,940595
+2014,Saskatchewan,Residential sources of waste for disposal,,331430
+2014,Saskatchewan,Non-residential sources of waste for disposal,,609166
+2014,Alberta,All sources of waste for disposal,48,4097584
+2014,Alberta,Residential sources of waste for disposal,,1230635
+2014,Alberta,Non-residential sources of waste for disposal,,2866949
+2014,British Columbia,All sources of waste for disposal,59,2721309
+2014,British Columbia,Residential sources of waste for disposal,,941345
+2014,British Columbia,Non-residential sources of waste for disposal,,1779963
+2014,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
+2014,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
+2014,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
+2016,Newfoundland and Labrador,All sources of waste for disposal,10,395324
+2016,Newfoundland and Labrador,Residential sources of waste for disposal,,
+2016,Newfoundland and Labrador,Non-residential sources of waste for disposal,,
+2016,Prince Edward Island,All sources of waste for disposal,11,
+2016,Prince Edward Island,Residential sources of waste for disposal,,
+2016,Prince Edward Island,Non-residential sources of waste for disposal,,
+2016,Nova Scotia,All sources of waste for disposal,12,375258
+2016,Nova Scotia,Residential sources of waste for disposal,,169786
+2016,Nova Scotia,Non-residential sources of waste for disposal,,205472
+2016,New Brunswick,All sources of waste for disposal,13,503123
+2016,New Brunswick,Residential sources of waste for disposal,,225893
+2016,New Brunswick,Non-residential sources of waste for disposal,,277230
+2016,Quebec,All sources of waste for disposal,24,5356134
+2016,Quebec,Residential sources of waste for disposal,,3010083
+2016,Quebec,Non-residential sources of waste for disposal,,2346051
+2016,Ontario,All sources of waste for disposal,35,9475472
+2016,Ontario,Residential sources of waste for disposal,,3703850
+2016,Ontario,Non-residential sources of waste for disposal,,5771622
+2016,Manitoba,All sources of waste for disposal,46,969289
+2016,Manitoba,Residential sources of waste for disposal,,308517
+2016,Manitoba,Non-residential sources of waste for disposal,,660772
+2016,Saskatchewan,All sources of waste for disposal,47,898404
+2016,Saskatchewan,Residential sources of waste for disposal,,343497
+2016,Saskatchewan,Non-residential sources of waste for disposal,,554908
+2016,Alberta,All sources of waste for disposal,48,4206668
+2016,Alberta,Residential sources of waste for disposal,,1299856
+2016,Alberta,Non-residential sources of waste for disposal,,2906811
+2016,British Columbia,All sources of waste for disposal,59,2614087
+2016,British Columbia,Residential sources of waste for disposal,,929476
+2016,British Columbia,Non-residential sources of waste for disposal,,1684611
+2016,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
+2016,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
+2016,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
+2018,Newfoundland and Labrador,All sources of waste for disposal,10,373668
+2018,Newfoundland and Labrador,Residential sources of waste for disposal,,158588
+2018,Newfoundland and Labrador,Non-residential sources of waste for disposal,,215080
+2018,Prince Edward Island,All sources of waste for disposal,11,53972
+2018,Prince Edward Island,Residential sources of waste for disposal,,20540
+2018,Prince Edward Island,Non-residential sources of waste for disposal,,33432
+2018,Nova Scotia,All sources of waste for disposal,12,392328
+2018,Nova Scotia,Residential sources of waste for disposal,,157078
+2018,Nova Scotia,Non-residential sources of waste for disposal,,235250
+2018,New Brunswick,All sources of waste for disposal,13,507848
+2018,New Brunswick,Residential sources of waste for disposal,,222110
+2018,New Brunswick,Non-residential sources of waste for disposal,,285738
+2018,Quebec,All sources of waste for disposal,24,5563136
+2018,Quebec,Residential sources of waste for disposal,,3231578
+2018,Quebec,Non-residential sources of waste for disposal,,2331557
+2018,Ontario,All sources of waste for disposal,35,10085613
+2018,Ontario,Residential sources of waste for disposal,,3980665
+2018,Ontario,Non-residential sources of waste for disposal,,6104948
+2018,Manitoba,All sources of waste for disposal,46,963256
+2018,Manitoba,Residential sources of waste for disposal,,333742
+2018,Manitoba,Non-residential sources of waste for disposal,,629514
+2018,Saskatchewan,All sources of waste for disposal,47,864753
+2018,Saskatchewan,Residential sources of waste for disposal,,381180
+2018,Saskatchewan,Non-residential sources of waste for disposal,,483573
+2018,Alberta,All sources of waste for disposal,48,4118081
+2018,Alberta,Residential sources of waste for disposal,,1336765
+2018,Alberta,Non-residential sources of waste for disposal,,2781316
+2018,British Columbia,All sources of waste for disposal,59,2719877
+2018,British Columbia,Residential sources of waste for disposal,,993371
+2018,British Columbia,Non-residential sources of waste for disposal,,1726506
+2018,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,90489
+2018,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,32621
+2018,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,57868
diff --git a/tests/assets/progress-calculation/data/temp/indicator_11-6-2.csv b/tests/assets/progress-calculation/data/temp/indicator_11-6-2.csv
new file mode 100644
index 00000000..d7e86c3f
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_11-6-2.csv
@@ -0,0 +1,17 @@
+Year,Value
+2002,7.3
+2003,7.2
+2004,6.5
+2005,6.9
+2006,6.2
+2007,6.1
+2008,6.1
+2009,6
+2010,6.8
+2011,6.6
+2012,6.6
+2013,7.2
+2014,7.5
+2015,7.5
+2016,6.4
+2020,8.8
diff --git a/tests/assets/progress-calculation/data/temp/indicator_14-4-1.csv b/tests/assets/progress-calculation/data/temp/indicator_14-4-1.csv
new file mode 100644
index 00000000..08aae2d2
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_14-4-1.csv
@@ -0,0 +1,10 @@
+Year,Value
+2011,89.7
+2012,95.5
+2013,97.4
+2014,98.7
+2015,95.6
+2016,95.9
+2017,95.5
+2018,96.0
+2019,94.3
diff --git a/tests/assets/progress-calculation/data/temp/indicator_14-5-1.csv b/tests/assets/progress-calculation/data/temp/indicator_14-5-1.csv
new file mode 100644
index 00000000..06e1f272
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_14-5-1.csv
@@ -0,0 +1,12 @@
+Year,Value
+2010,1.2
+2011,1.2
+2012,1.2
+2013,1.2
+2014,1.2
+2015,1.2
+2016,1.4
+2017,7.9
+2018,8.1
+2019,13.8
+2020,13.8
diff --git a/tests/assets/progress-calculation/data/temp/indicator_15-1-1.csv b/tests/assets/progress-calculation/data/temp/indicator_15-1-1.csv
new file mode 100644
index 00000000..2d50e66c
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_15-1-1.csv
@@ -0,0 +1,8 @@
+Year,Value
+2010,38.19
+2015,38.17
+2016,38.17
+2017,38.16
+2018,38.16
+2019,38.16
+2020,38.15
diff --git a/tests/assets/progress-calculation/data/temp/indicator_15-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_15-2-1.csv
new file mode 100644
index 00000000..7eb980db
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_15-2-1.csv
@@ -0,0 +1,48 @@
+Year,Units,Series,Value
+2015-2016,Percentage (%),Forest area net change rate,-0.01
+2016-2017,Percentage (%),Forest area net change rate,-0.01
+2017-2018,Percentage (%),Forest area net change rate,-0.01
+2018-2019,Percentage (%),Forest area net change rate,-0.01
+2019-2020,Percentage (%),Forest area net change rate,-0.01
+2010,Tonnes/hectare,Above-ground biomass stock in forest,91.16
+2015,Tonnes/hectare,Above-ground biomass stock in forest,90.49
+2016,Tonnes/hectare,Above-ground biomass stock in forest,90.43
+2017,Tonnes/hectare,Above-ground biomass stock in forest,90.43
+2018,Tonnes/hectare,Above-ground biomass stock in forest,90.43
+2019,Tonnes/hectare,Above-ground biomass stock in forest,90.43
+2020,Tonnes/hectare,Above-ground biomass stock in forest,90.43
+2010,Percentage (%),Proportion of forest area located within legally established protected areas,8.13
+2015,Percentage (%),Proportion of forest area located within legally established protected areas,8.5
+2016,Percentage (%),Proportion of forest area located within legally established protected areas,8.5
+2017,Percentage (%),Proportion of forest area located within legally established protected areas,8.5
+2018,Percentage (%),Proportion of forest area located within legally established protected areas,8.5
+2019,Percentage (%),Proportion of forest area located within legally established protected areas,8.5
+2020,Percentage (%),Proportion of forest area located within legally established protected areas,8.5
+2010,Percentage (%),Proportion of forest area under a long term forest management plan,54.12
+2015,Percentage (%),Proportion of forest area under a long term forest management plan,54.35
+2016,Percentage (%),Proportion of forest area under a long term forest management plan,57.64
+2017,Percentage (%),Proportion of forest area under a long term forest management plan,57.64
+2018,Percentage (%),Proportion of forest area under a long term forest management plan,60.71
+2019,Percentage (%),Proportion of forest area under a long term forest management plan,60.82
+2020,Percentage (%),Proportion of forest area under a long term forest management plan,60.82
+2000,Hectares,Forest area under an independently verified forest management certification scheme,5
+2001,Hectares,Forest area under an independently verified forest management certification scheme,17
+2002,Hectares,Forest area under an independently verified forest management certification scheme,28
+2003,Hectares,Forest area under an independently verified forest management certification scheme,58
+2004,Hectares,Forest area under an independently verified forest management certification scheme,86
+2005,Hectares,Forest area under an independently verified forest management certification scheme,120
+2006,Hectares,Forest area under an independently verified forest management certification scheme,124
+2007,Hectares,Forest area under an independently verified forest management certification scheme,138
+2008,Hectares,Forest area under an independently verified forest management certification scheme,146
+2009,Hectares,Forest area under an independently verified forest management certification scheme,143
+2010,Hectares,Forest area under an independently verified forest management certification scheme,150
+2011,Hectares,Forest area under an independently verified forest management certification scheme,151
+2012,Hectares,Forest area under an independently verified forest management certification scheme,148
+2013,Hectares,Forest area under an independently verified forest management certification scheme,153
+2014,Hectares,Forest area under an independently verified forest management certification scheme,161
+2015,Hectares,Forest area under an independently verified forest management certification scheme,166
+2016,Hectares,Forest area under an independently verified forest management certification scheme,168
+2017,Hectares,Forest area under an independently verified forest management certification scheme,170
+2018,Hectares,Forest area under an independently verified forest management certification scheme,164
+2019,Hectares,Forest area under an independently verified forest management certification scheme,168
+2020,Hectares,Forest area under an independently verified forest management certification scheme,164
diff --git a/tests/assets/progress-calculation/data/temp/indicator_15-5-1.csv b/tests/assets/progress-calculation/data/temp/indicator_15-5-1.csv
new file mode 100644
index 00000000..df106e95
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_15-5-1.csv
@@ -0,0 +1,18 @@
+Year,Value
+2000,1.13
+2001,0.82
+2002,0.24
+2003,-0.28
+2004,-0.9
+2005,-1.07
+2006,-0.89
+2007,-0.58
+2008,-0.57
+2009,-0.24
+2010,-0.16
+2011,-0.19
+2012,-1.2
+2013,-2.85
+2014,-4.12
+2015,-4.83
+2016,-4.39
diff --git a/tests/assets/progress-calculation/data/temp/indicator_15-a-1.csv b/tests/assets/progress-calculation/data/temp/indicator_15-a-1.csv
new file mode 100644
index 00000000..b07d58c6
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_15-a-1.csv
@@ -0,0 +1,91 @@
+Year,Geography,Public sector components,GeoCode,Value
+2015,"","",,1875000000
+2016,"","",,1632000000
+2017,"","",,1848000000
+2018,"","",,1696000000
+2019,"","",,2202000000
+2020,"","",,1931000000
+2015,Canada,Consolidated provincial-territorial and local governments,,1446000000
+2015,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,9000000
+2015,Prince Edward Island,Consolidated provincial-territorial and local governments,11,2000000
+2015,Nova Scotia,Consolidated provincial-territorial and local governments,12,27000000
+2015,New Brunswick,Consolidated provincial-territorial and local governments,13,22000000
+2015,Quebec,Consolidated provincial-territorial and local governments,24,53000000
+2015,Ontario,Consolidated provincial-territorial and local governments,35,738000000
+2015,Manitoba,Consolidated provincial-territorial and local governments,46,33000000
+2015,Saskatchewan,Consolidated provincial-territorial and local governments,47,19000000
+2015,Alberta,Consolidated provincial-territorial and local governments,48,436000000
+2015,British Columbia,Consolidated provincial-territorial and local governments,59,33000000
+2015,Yukon,Consolidated provincial-territorial and local governments,60,53000000
+2015,Northwest Territories,Consolidated provincial-territorial and local governments,61,14000000
+2015,Nunavut,Consolidated provincial-territorial and local governments,62,6000000
+2016,Canada,Consolidated provincial-territorial and local governments,,1328000000
+2016,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,8000000
+2016,Prince Edward Island,Consolidated provincial-territorial and local governments,11,2000000
+2016,Nova Scotia,Consolidated provincial-territorial and local governments,12,22000000
+2016,New Brunswick,Consolidated provincial-territorial and local governments,13,11000000
+2016,Quebec,Consolidated provincial-territorial and local governments,24,52000000
+2016,Ontario,Consolidated provincial-territorial and local governments,35,758000000
+2016,Manitoba,Consolidated provincial-territorial and local governments,46,35000000
+2016,Saskatchewan,Consolidated provincial-territorial and local governments,47,17000000
+2016,Alberta,Consolidated provincial-territorial and local governments,48,328000000
+2016,British Columbia,Consolidated provincial-territorial and local governments,59,33000000
+2016,Yukon,Consolidated provincial-territorial and local governments,60,42000000
+2016,Northwest Territories,Consolidated provincial-territorial and local governments,61,13000000
+2016,Nunavut,Consolidated provincial-territorial and local governments,62,6000000
+2017,Canada,Consolidated provincial-territorial and local governments,,1506000000
+2017,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,7000000
+2017,Prince Edward Island,Consolidated provincial-territorial and local governments,11,2000000
+2017,Nova Scotia,Consolidated provincial-territorial and local governments,12,21000000
+2017,New Brunswick,Consolidated provincial-territorial and local governments,13,18000000
+2017,Quebec,Consolidated provincial-territorial and local governments,24,140000000
+2017,Ontario,Consolidated provincial-territorial and local governments,35,862000000
+2017,Manitoba,Consolidated provincial-territorial and local governments,46,34000000
+2017,Saskatchewan,Consolidated provincial-territorial and local governments,47,20000000
+2017,Alberta,Consolidated provincial-territorial and local governments,48,297000000
+2017,British Columbia,Consolidated provincial-territorial and local governments,59,52000000
+2017,Yukon,Consolidated provincial-territorial and local governments,60,34000000
+2017,Northwest Territories,Consolidated provincial-territorial and local governments,61,13000000
+2017,Nunavut,Consolidated provincial-territorial and local governments,62,6000000
+2018,Canada,Consolidated provincial-territorial and local governments,,1357000000
+2018,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,6000000
+2018,Prince Edward Island,Consolidated provincial-territorial and local governments,11,2000000
+2018,Nova Scotia,Consolidated provincial-territorial and local governments,12,36000000
+2018,New Brunswick,Consolidated provincial-territorial and local governments,13,19000000
+2018,Quebec,Consolidated provincial-territorial and local governments,24,55000000
+2018,Ontario,Consolidated provincial-territorial and local governments,35,802000000
+2018,Manitoba,Consolidated provincial-territorial and local governments,46,34000000
+2018,Saskatchewan,Consolidated provincial-territorial and local governments,47,22000000
+2018,Alberta,Consolidated provincial-territorial and local governments,48,295000000
+2018,British Columbia,Consolidated provincial-territorial and local governments,59,46000000
+2018,Yukon,Consolidated provincial-territorial and local governments,60,20000000
+2018,Northwest Territories,Consolidated provincial-territorial and local governments,61,14000000
+2018,Nunavut,Consolidated provincial-territorial and local governments,62,6000000
+2019,Canada,Consolidated provincial-territorial and local governments,,1665000000
+2019,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,7000000
+2019,Prince Edward Island,Consolidated provincial-territorial and local governments,11,2000000
+2019,Nova Scotia,Consolidated provincial-territorial and local governments,12,30000000
+2019,New Brunswick,Consolidated provincial-territorial and local governments,13,18000000
+2019,Quebec,Consolidated provincial-territorial and local governments,24,106000000
+2019,Ontario,Consolidated provincial-territorial and local governments,35,845000000
+2019,Manitoba,Consolidated provincial-territorial and local governments,46,35000000
+2019,Saskatchewan,Consolidated provincial-territorial and local governments,47,23000000
+2019,Alberta,Consolidated provincial-territorial and local governments,48,499000000
+2019,British Columbia,Consolidated provincial-territorial and local governments,59,46000000
+2019,Yukon,Consolidated provincial-territorial and local governments,60,29000000
+2019,Northwest Territories,Consolidated provincial-territorial and local governments,61,17000000
+2019,Nunavut,Consolidated provincial-territorial and local governments,62,7000000
+2020,Canada,Consolidated provincial-territorial and local governments,,1305000000
+2020,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,7000000
+2020,Prince Edward Island,Consolidated provincial-territorial and local governments,11,2000000
+2020,Nova Scotia,Consolidated provincial-territorial and local governments,12,31000000
+2020,New Brunswick,Consolidated provincial-territorial and local governments,13,16000000
+2020,Quebec,Consolidated provincial-territorial and local governments,24,165000000
+2020,Ontario,Consolidated provincial-territorial and local governments,35,821000000
+2020,Manitoba,Consolidated provincial-territorial and local governments,46,61000000
+2020,Saskatchewan,Consolidated provincial-territorial and local governments,47,23000000
+2020,Alberta,Consolidated provincial-territorial and local governments,48,66000000
+2020,British Columbia,Consolidated provincial-territorial and local governments,59,58000000
+2020,Yukon,Consolidated provincial-territorial and local governments,60,30000000
+2020,Northwest Territories,Consolidated provincial-territorial and local governments,61,17000000
+2020,Nunavut,Consolidated provincial-territorial and local governments,62,7000000
diff --git a/tests/assets/progress-calculation/data/temp/indicator_16-1-1.csv b/tests/assets/progress-calculation/data/temp/indicator_16-1-1.csv
new file mode 100644
index 00000000..e89ad519
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_16-1-1.csv
@@ -0,0 +1,883 @@
+Year,Geography,Gender,Indigenous identity,GeoCode,Value
+2014,"","","",,1.48
+2015,"","","",,1.71
+2016,"","","",,1.71
+2017,"","","",,1.83
+2018,"","","",,1.78
+2019,"","","",,1.83
+2020,"","","",,1.96
+2014,Canada,All genders,Indigenous identity,,7.19
+2014,Canada,All genders,Non-Indigenous identity,,1.18
+2014,Canada,Male,Total,,2.12
+2014,Canada,Male,Indigenous identity,,10.87
+2014,Canada,Male,Non-Indigenous identity,,1.65
+2014,Canada,Female,Total,,0.86
+2014,Canada,Female,Indigenous identity,,3.63
+2014,Canada,Female,Non-Indigenous identity,,0.71
+2014,Newfoundland and Labrador,All genders,Total,10,0.38
+2014,Newfoundland and Labrador,All genders,Indigenous identity,,0
+2014,Newfoundland and Labrador,All genders,Non-Indigenous identity,,0.41
+2014,Newfoundland and Labrador,Male,Total,,0.77
+2014,Newfoundland and Labrador,Male,Indigenous identity,,0
+2014,Newfoundland and Labrador,Male,Non-Indigenous identity,,0.83
+2014,Newfoundland and Labrador,Female,Total,,0
+2014,Newfoundland and Labrador,Female,Indigenous identity,,0
+2014,Newfoundland and Labrador,Female,Non-Indigenous identity,,0
+2014,Prince Edward Island,All genders,Total,11,2.06
+2014,Prince Edward Island,All genders,Indigenous identity,,0
+2014,Prince Edward Island,All genders,Non-Indigenous identity,,2.1
+2014,Prince Edward Island,Male,Total,,4.23
+2014,Prince Edward Island,Male,Indigenous identity,,0
+2014,Prince Edward Island,Male,Non-Indigenous identity,,4.31
+2014,Prince Edward Island,Female,Total,,0
+2014,Prince Edward Island,Female,Indigenous identity,,0
+2014,Prince Edward Island,Female,Non-Indigenous identity,,0
+2014,Nova Scotia,All genders,Total,12,0.64
+2014,Nova Scotia,All genders,Indigenous identity,,2.14
+2014,Nova Scotia,All genders,Non-Indigenous identity,,0.45
+2014,Nova Scotia,Male,Total,,0.87
+2014,Nova Scotia,Male,Indigenous identity,,0
+2014,Nova Scotia,Male,Non-Indigenous identity,,0.68
+2014,Nova Scotia,Female,Total,,0.42
+2014,Nova Scotia,Female,Indigenous identity,,4.19
+2014,Nova Scotia,Female,Non-Indigenous identity,,0.22
+2014,New Brunswick,All genders,Total,13,1.32
+2014,New Brunswick,All genders,Indigenous identity,,0
+2014,New Brunswick,All genders,Non-Indigenous identity,,1.37
+2014,New Brunswick,Male,Total,,1.6
+2014,New Brunswick,Male,Indigenous identity,,0
+2014,New Brunswick,Male,Non-Indigenous identity,,1.66
+2014,New Brunswick,Female,Total,,1.04
+2014,New Brunswick,Female,Indigenous identity,,0
+2014,New Brunswick,Female,Non-Indigenous identity,,1.08
+2014,Quebec,All genders,Total,24,0.89
+2014,Quebec,All genders,Indigenous identity,,2.15
+2014,Quebec,All genders,Non-Indigenous identity,,0.83
+2014,Quebec,Male,Total,,1.19
+2014,Quebec,Male,Indigenous identity,,2.12
+2014,Quebec,Male,Non-Indigenous identity,,1.11
+2014,Quebec,Female,Total,,0.59
+2014,Quebec,Female,Indigenous identity,,2.17
+2014,Quebec,Female,Non-Indigenous identity,,0.55
+2014,Ontario,All genders,Total,35,1.15
+2014,Ontario,All genders,Indigenous identity,,5.57
+2014,Ontario,All genders,Non-Indigenous identity,,1
+2014,Ontario,Male,Total,,1.72
+2014,Ontario,Male,Indigenous identity,,9.8
+2014,Ontario,Male,Non-Indigenous identity,,1.46
+2014,Ontario,Female,Total,,0.59
+2014,Ontario,Female,Indigenous identity,,1.55
+2014,Ontario,Female,Non-Indigenous identity,,0.55
+2014,Manitoba,All genders,Total,46,3.51
+2014,Manitoba,All genders,Indigenous identity,,12.88
+2014,Manitoba,All genders,Non-Indigenous identity,,1.52
+2014,Manitoba,Male,Total,,5.18
+2014,Manitoba,Male,Indigenous identity,,19.87
+2014,Manitoba,Male,Non-Indigenous identity,,2.09
+2014,Manitoba,Female,Total,,1.87
+2014,Manitoba,Female,Indigenous identity,,6.12
+2014,Manitoba,Female,Non-Indigenous identity,,0.95
+2014,Saskatchewan,All genders,Total,47,2.17
+2014,Saskatchewan,All genders,Indigenous identity,,6.73
+2014,Saskatchewan,All genders,Non-Indigenous identity,,1.29
+2014,Saskatchewan,Male,Total,,3.41
+2014,Saskatchewan,Male,Indigenous identity,,12.59
+2014,Saskatchewan,Male,Non-Indigenous identity,,1.7
+2014,Saskatchewan,Female,Total,,0.91
+2014,Saskatchewan,Female,Indigenous identity,,1.1
+2014,Saskatchewan,Female,Non-Indigenous identity,,0.87
+2014,Alberta,All genders,Total,48,2.65
+2014,Alberta,All genders,Indigenous identity,,12.23
+2014,Alberta,All genders,Non-Indigenous identity,,1.99
+2014,Alberta,Male,Total,,3.63
+2014,Alberta,Male,Indigenous identity,,17.08
+2014,Alberta,Male,Non-Indigenous identity,,2.72
+2014,Alberta,Female,Total,,1.65
+2014,Alberta,Female,Indigenous identity,,7.53
+2014,Alberta,Female,Non-Indigenous identity,,1.24
+2014,British Columbia,All genders,Total,59,1.89
+2014,British Columbia,All genders,Indigenous identity,,5.17
+2014,British Columbia,All genders,Non-Indigenous identity,,1.69
+2014,British Columbia,Male,Total,,2.61
+2014,British Columbia,Male,Indigenous identity,,8.29
+2014,British Columbia,Male,Non-Indigenous identity,,2.27
+2014,British Columbia,Female,Total,,1.18
+2014,British Columbia,Female,Indigenous identity,,2.17
+2014,British Columbia,Female,Non-Indigenous identity,,1.12
+2014,Yukon,All genders,Total,60,8.08
+2014,Yukon,All genders,Indigenous identity,,11.52
+2014,Yukon,All genders,Non-Indigenous identity,,7.03
+2014,Yukon,Male,Total,,10.58
+2014,Yukon,Male,Indigenous identity,,0
+2014,Yukon,Male,Non-Indigenous identity,,13.6
+2014,Yukon,Female,Total,,5.49
+2014,Yukon,Female,Indigenous identity,,22.34
+2014,Yukon,Female,Non-Indigenous identity,,0
+2014,Northwest Territories,All genders,Total,61,6.78
+2014,Northwest Territories,All genders,Indigenous identity,,13.27
+2014,Northwest Territories,All genders,Non-Indigenous identity,,0
+2014,Northwest Territories,Male,Total,,8.8
+2014,Northwest Territories,Male,Indigenous identity,,17.71
+2014,Northwest Territories,Male,Non-Indigenous identity,,0
+2014,Northwest Territories,Female,Total,,4.65
+2014,Northwest Territories,Female,Indigenous identity,,8.84
+2014,Northwest Territories,Female,Non-Indigenous identity,,0
+2014,Nunavut,All genders,Total,62,11.17
+2014,Nunavut,All genders,Indigenous identity,,13.01
+2014,Nunavut,All genders,Non-Indigenous identity,,0
+2014,Nunavut,Male,Total,,10.85
+2014,Nunavut,Male,Indigenous identity,,12.78
+2014,Nunavut,Male,Non-Indigenous identity,,0
+2014,Nunavut,Female,Total,,11.51
+2014,Nunavut,Female,Indigenous identity,,13.25
+2014,Nunavut,Female,Non-Indigenous identity,,0
+2015,Canada,All genders,Indigenous identity,,8.62
+2015,Canada,All genders,Non-Indigenous identity,,1.34
+2015,Canada,Male,Total,,2.44
+2015,Canada,Male,Indigenous identity,,12.49
+2015,Canada,Male,Non-Indigenous identity,,1.9
+2015,Canada,Female,Total,,0.99
+2015,Canada,Female,Indigenous identity,,4.87
+2015,Canada,Female,Non-Indigenous identity,,0.78
+2015,Newfoundland and Labrador,All genders,Total,10,0.57
+2015,Newfoundland and Labrador,All genders,Indigenous identity,,2.2
+2015,Newfoundland and Labrador,All genders,Non-Indigenous identity,,0.41
+2015,Newfoundland and Labrador,Male,Total,,0.76
+2015,Newfoundland and Labrador,Male,Indigenous identity,,0
+2015,Newfoundland and Labrador,Male,Non-Indigenous identity,,0.83
+2015,Newfoundland and Labrador,Female,Total,,0.37
+2015,Newfoundland and Labrador,Female,Indigenous identity,,4.33
+2015,Newfoundland and Labrador,Female,Non-Indigenous identity,,0
+2015,Prince Edward Island,All genders,Total,11,0.69
+2015,Prince Edward Island,All genders,Indigenous identity,,0
+2015,Prince Edward Island,All genders,Non-Indigenous identity,,0.7
+2015,Prince Edward Island,Male,Total,,0
+2015,Prince Edward Island,Male,Indigenous identity,,0
+2015,Prince Edward Island,Male,Non-Indigenous identity,,0
+2015,Prince Edward Island,Female,Total,,1.34
+2015,Prince Edward Island,Female,Indigenous identity,,0
+2015,Prince Edward Island,Female,Non-Indigenous identity,,1.36
+2015,Nova Scotia,All genders,Total,12,1.27
+2015,Nova Scotia,All genders,Indigenous identity,,1.98
+2015,Nova Scotia,All genders,Non-Indigenous identity,,1.12
+2015,Nova Scotia,Male,Total,,1.52
+2015,Nova Scotia,Male,Indigenous identity,,4.04
+2015,Nova Scotia,Male,Non-Indigenous identity,,1.38
+2015,Nova Scotia,Female,Total,,1.04
+2015,Nova Scotia,Female,Indigenous identity,,0
+2015,Nova Scotia,Female,Non-Indigenous identity,,0.88
+2015,New Brunswick,All genders,Total,13,1.44
+2015,New Brunswick,All genders,Indigenous identity,,0
+2015,New Brunswick,All genders,Non-Indigenous identity,,1.5
+2015,New Brunswick,Male,Total,,1.59
+2015,New Brunswick,Male,Indigenous identity,,0
+2015,New Brunswick,Male,Non-Indigenous identity,,1.66
+2015,New Brunswick,Female,Total,,1.3
+2015,New Brunswick,Female,Indigenous identity,,0
+2015,New Brunswick,Female,Non-Indigenous identity,,1.35
+2015,Quebec,All genders,Total,24,0.97
+2015,Quebec,All genders,Indigenous identity,,3.09
+2015,Quebec,All genders,Non-Indigenous identity,,0.91
+2015,Quebec,Male,Total,,1.48
+2015,Quebec,Male,Indigenous identity,,4.06
+2015,Quebec,Male,Non-Indigenous identity,,1.41
+2015,Quebec,Female,Total,,0.46
+2015,Quebec,Female,Indigenous identity,,2.09
+2015,Quebec,Female,Non-Indigenous identity,,0.42
+2015,Ontario,All genders,Total,35,1.27
+2015,Ontario,All genders,Indigenous identity,,3.33
+2015,Ontario,All genders,Non-Indigenous identity,,1.18
+2015,Ontario,Male,Total,,1.83
+2015,Ontario,Male,Indigenous identity,,5.25
+2015,Ontario,Male,Non-Indigenous identity,,1.69
+2015,Ontario,Female,Total,,0.72
+2015,Ontario,Female,Indigenous identity,,1.5
+2015,Ontario,Female,Non-Indigenous identity,,0.68
+2015,Manitoba,All genders,Total,46,3.7
+2015,Manitoba,All genders,Indigenous identity,,15.55
+2015,Manitoba,All genders,Non-Indigenous identity,,1.13
+2015,Manitoba,Male,Total,,5.73
+2015,Manitoba,Male,Indigenous identity,,24.58
+2015,Manitoba,Male,Non-Indigenous identity,,1.69
+2015,Manitoba,Female,Total,,1.69
+2015,Manitoba,Female,Indigenous identity,,6.81
+2015,Manitoba,Female,Non-Indigenous identity,,0.56
+2015,Saskatchewan,All genders,Total,47,4.01
+2015,Saskatchewan,All genders,Indigenous identity,,16.46
+2015,Saskatchewan,All genders,Non-Indigenous identity,,1.6
+2015,Saskatchewan,Male,Total,,5.67
+2015,Saskatchewan,Male,Indigenous identity,,29.02
+2015,Saskatchewan,Male,Non-Indigenous identity,,1.26
+2015,Saskatchewan,Female,Total,,2.33
+2015,Saskatchewan,Female,Indigenous identity,,4.32
+2015,Saskatchewan,Female,Non-Indigenous identity,,1.94
+2015,Alberta,All genders,Total,48,3.23
+2015,Alberta,All genders,Indigenous identity,,13.72
+2015,Alberta,All genders,Non-Indigenous identity,,2.47
+2015,Alberta,Male,Total,,4.23
+2015,Alberta,Male,Indigenous identity,,15.84
+2015,Alberta,Male,Non-Indigenous identity,,3.39
+2015,Alberta,Female,Total,,2.21
+2015,Alberta,Female,Indigenous identity,,11.67
+2015,Alberta,Female,Non-Indigenous identity,,1.53
+2015,British Columbia,All genders,Total,59,2.01
+2015,British Columbia,All genders,Indigenous identity,,6.42
+2015,British Columbia,All genders,Non-Indigenous identity,,1.73
+2015,British Columbia,Male,Total,,3
+2015,British Columbia,Male,Indigenous identity,,9.48
+2015,British Columbia,Male,Non-Indigenous identity,,2.6
+2015,British Columbia,Female,Total,,1.04
+2015,British Columbia,Female,Indigenous identity,,3.49
+2015,British Columbia,Female,Non-Indigenous identity,,0.88
+2015,Yukon,All genders,Total,60,2.65
+2015,Yukon,All genders,Indigenous identity,,0
+2015,Yukon,All genders,Non-Indigenous identity,,3.46
+2015,Yukon,Male,Total,,5.21
+2015,Yukon,Male,Indigenous identity,,0
+2015,Yukon,Male,Non-Indigenous identity,,6.71
+2015,Yukon,Female,Total,,0
+2015,Yukon,Female,Indigenous identity,,0
+2015,Yukon,Female,Non-Indigenous identity,,0
+2015,Northwest Territories,All genders,Total,61,13.48
+2015,Northwest Territories,All genders,Indigenous identity,,26.53
+2015,Northwest Territories,All genders,Non-Indigenous identity,,0
+2015,Northwest Territories,Male,Total,,13.12
+2015,Northwest Territories,Male,Indigenous identity,,26.49
+2015,Northwest Territories,Male,Non-Indigenous identity,,0
+2015,Northwest Territories,Female,Total,,13.86
+2015,Northwest Territories,Female,Indigenous identity,,26.57
+2015,Northwest Territories,Female,Non-Indigenous identity,,0
+2015,Nunavut,All genders,Total,62,5.5
+2015,Nunavut,All genders,Indigenous identity,,6.41
+2015,Nunavut,All genders,Non-Indigenous identity,,0
+2015,Nunavut,Male,Total,,5.35
+2015,Nunavut,Male,Indigenous identity,,6.31
+2015,Nunavut,Male,Non-Indigenous identity,,0
+2015,Nunavut,Female,Total,,5.66
+2015,Nunavut,Female,Indigenous identity,,6.52
+2015,Nunavut,Female,Non-Indigenous identity,,0
+2016,Canada,All genders,Indigenous identity,,7.96
+2016,Canada,All genders,Non-Indigenous identity,,1.36
+2016,Canada,Male,Total,,2.57
+2016,Canada,Male,Indigenous identity,,12.76
+2016,Canada,Male,Non-Indigenous identity,,2.02
+2016,Canada,Female,Total,,0.85
+2016,Canada,Female,Indigenous identity,,3.29
+2016,Canada,Female,Non-Indigenous identity,,0.71
+2016,Newfoundland and Labrador,All genders,Total,10,1.32
+2016,Newfoundland and Labrador,All genders,Indigenous identity,,2.11
+2016,Newfoundland and Labrador,All genders,Non-Indigenous identity,,1.25
+2016,Newfoundland and Labrador,Male,Total,,1.91
+2016,Newfoundland and Labrador,Male,Indigenous identity,,4.3
+2016,Newfoundland and Labrador,Male,Non-Indigenous identity,,1.67
+2016,Newfoundland and Labrador,Female,Total,,0.75
+2016,Newfoundland and Labrador,Female,Indigenous identity,,0
+2016,Newfoundland and Labrador,Female,Non-Indigenous identity,,0.82
+2016,Prince Edward Island,All genders,Total,11,0
+2016,Prince Edward Island,All genders,Indigenous identity,,0
+2016,Prince Edward Island,All genders,Non-Indigenous identity,,0
+2016,Prince Edward Island,Male,Total,,0
+2016,Prince Edward Island,Male,Indigenous identity,,0
+2016,Prince Edward Island,Male,Non-Indigenous identity,,0
+2016,Prince Edward Island,Female,Total,,0
+2016,Prince Edward Island,Female,Indigenous identity,,0
+2016,Prince Edward Island,Female,Non-Indigenous identity,,0
+2016,Nova Scotia,All genders,Total,12,1.38
+2016,Nova Scotia,All genders,Indigenous identity,,1.85
+2016,Nova Scotia,All genders,Non-Indigenous identity,,1.13
+2016,Nova Scotia,Male,Total,,2.39
+2016,Nova Scotia,Male,Indigenous identity,,3.78
+2016,Nova Scotia,Male,Non-Indigenous identity,,1.84
+2016,Nova Scotia,Female,Total,,0.42
+2016,Nova Scotia,Female,Indigenous identity,,0
+2016,Nova Scotia,Female,Non-Indigenous identity,,0.44
+2016,New Brunswick,All genders,Total,13,1.44
+2016,New Brunswick,All genders,Indigenous identity,,0
+2016,New Brunswick,All genders,Non-Indigenous identity,,1.5
+2016,New Brunswick,Male,Total,,2.38
+2016,New Brunswick,Male,Indigenous identity,,0
+2016,New Brunswick,Male,Non-Indigenous identity,,2.49
+2016,New Brunswick,Female,Total,,0.52
+2016,New Brunswick,Female,Indigenous identity,,0
+2016,New Brunswick,Female,Non-Indigenous identity,,0.54
+2016,Quebec,All genders,Total,24,0.81
+2016,Quebec,All genders,Indigenous identity,,1.98
+2016,Quebec,All genders,Non-Indigenous identity,,0.77
+2016,Quebec,Male,Total,,1.25
+2016,Quebec,Male,Indigenous identity,,3.9
+2016,Quebec,Male,Non-Indigenous identity,,1.15
+2016,Quebec,Female,Total,,0.39
+2016,Quebec,Female,Indigenous identity,,0
+2016,Quebec,Female,Non-Indigenous identity,,0.4
+2016,Ontario,All genders,Total,35,1.49
+2016,Ontario,All genders,Indigenous identity,,4.45
+2016,Ontario,All genders,Non-Indigenous identity,,1.36
+2016,Ontario,Male,Total,,2.21
+2016,Ontario,Male,Indigenous identity,,8.61
+2016,Ontario,Male,Non-Indigenous identity,,1.99
+2016,Ontario,Female,Total,,0.78
+2016,Ontario,Female,Indigenous identity,,0.48
+2016,Ontario,Female,Non-Indigenous identity,,0.75
+2016,Manitoba,All genders,Total,46,3.2
+2016,Manitoba,All genders,Indigenous identity,,11.35
+2016,Manitoba,All genders,Non-Indigenous identity,,1.4
+2016,Manitoba,Male,Total,,5.04
+2016,Manitoba,Male,Indigenous identity,,17.93
+2016,Manitoba,Male,Non-Indigenous identity,,2.23
+2016,Manitoba,Female,Total,,1.37
+2016,Manitoba,Female,Indigenous identity,,4.97
+2016,Manitoba,Female,Non-Indigenous identity,,0.56
+2016,Saskatchewan,All genders,Total,47,4.93
+2016,Saskatchewan,All genders,Indigenous identity,,20.39
+2016,Saskatchewan,All genders,Non-Indigenous identity,,1.9
+2016,Saskatchewan,Male,Total,,7.34
+2016,Saskatchewan,Male,Indigenous identity,,31.58
+2016,Saskatchewan,Male,Non-Indigenous identity,,2.71
+2016,Saskatchewan,Female,Total,,2.48
+2016,Saskatchewan,Female,Indigenous identity,,9.52
+2016,Saskatchewan,Female,Non-Indigenous identity,,1.07
+2016,Alberta,All genders,Total,48,2.76
+2016,Alberta,All genders,Indigenous identity,,11.15
+2016,Alberta,All genders,Non-Indigenous identity,,2.17
+2016,Alberta,Male,Total,,4.1
+2016,Alberta,Male,Indigenous identity,,15.38
+2016,Alberta,Male,Non-Indigenous identity,,3.33
+2016,Alberta,Female,Total,,1.39
+2016,Alberta,Female,Indigenous identity,,7.07
+2016,Alberta,Female,Non-Indigenous identity,,0.98
+2016,British Columbia,All genders,Total,59,1.85
+2016,British Columbia,All genders,Indigenous identity,,5.87
+2016,British Columbia,All genders,Non-Indigenous identity,,1.6
+2016,British Columbia,Male,Total,,2.75
+2016,British Columbia,Male,Indigenous identity,,10.6
+2016,British Columbia,Male,Non-Indigenous identity,,2.26
+2016,British Columbia,Female,Total,,0.98
+2016,British Columbia,Female,Indigenous identity,,1.35
+2016,British Columbia,Female,Non-Indigenous identity,,0.96
+2016,Yukon,All genders,Total,60,10.43
+2016,Yukon,All genders,Indigenous identity,,22.35
+2016,Yukon,All genders,Non-Indigenous identity,,6.8
+2016,Yukon,Male,Total,,20.52
+2016,Yukon,Male,Indigenous identity,,45.68
+2016,Yukon,Male,Non-Indigenous identity,,13.23
+2016,Yukon,Female,Total,,0
+2016,Yukon,Female,Indigenous identity,,0
+2016,Yukon,Female,Non-Indigenous identity,,0
+2016,Northwest Territories,All genders,Total,61,6.71
+2016,Northwest Territories,All genders,Indigenous identity,,13.26
+2016,Northwest Territories,All genders,Non-Indigenous identity,,0
+2016,Northwest Territories,Male,Total,,8.71
+2016,Northwest Territories,Male,Indigenous identity,,17.63
+2016,Northwest Territories,Male,Non-Indigenous identity,,0
+2016,Northwest Territories,Female,Total,,4.6
+2016,Northwest Territories,Female,Indigenous identity,,8.86
+2016,Northwest Territories,Female,Non-Indigenous identity,,0
+2016,Nunavut,All genders,Total,62,2.7
+2016,Nunavut,All genders,Indigenous identity,,3.15
+2016,Nunavut,All genders,Non-Indigenous identity,,0
+2016,Nunavut,Male,Total,,0
+2016,Nunavut,Male,Indigenous identity,,0
+2016,Nunavut,Male,Non-Indigenous identity,,0
+2016,Nunavut,Female,Total,,5.56
+2016,Nunavut,Female,Indigenous identity,,6.41
+2016,Nunavut,Female,Non-Indigenous identity,,0
+2017,Canada,All genders,Indigenous identity,,8.48
+2017,Canada,All genders,Non-Indigenous identity,,1.44
+2017,Canada,Male,Total,,2.71
+2017,Canada,Male,Indigenous identity,,13.04
+2017,Canada,Male,Non-Indigenous identity,,2.13
+2017,Canada,Female,Total,,0.94
+2017,Canada,Female,Indigenous identity,,4.05
+2017,Canada,Female,Non-Indigenous identity,,0.76
+2017,Newfoundland and Labrador,All genders,Total,10,0.76
+2017,Newfoundland and Labrador,All genders,Indigenous identity,,2.05
+2017,Newfoundland and Labrador,All genders,Non-Indigenous identity,,0.63
+2017,Newfoundland and Labrador,Male,Total,,0.38
+2017,Newfoundland and Labrador,Male,Indigenous identity,,0
+2017,Newfoundland and Labrador,Male,Non-Indigenous identity,,0.42
+2017,Newfoundland and Labrador,Female,Total,,1.13
+2017,Newfoundland and Labrador,Female,Indigenous identity,,4.03
+2017,Newfoundland and Labrador,Female,Non-Indigenous identity,,0.83
+2017,Prince Edward Island,All genders,Total,11,1.35
+2017,Prince Edward Island,All genders,Indigenous identity,,0
+2017,Prince Edward Island,All genders,Non-Indigenous identity,,1.37
+2017,Prince Edward Island,Male,Total,,2.75
+2017,Prince Edward Island,Male,Indigenous identity,,0
+2017,Prince Edward Island,Male,Non-Indigenous identity,,2.81
+2017,Prince Edward Island,Female,Total,,0
+2017,Prince Edward Island,Female,Indigenous identity,,0
+2017,Prince Edward Island,Female,Non-Indigenous identity,,0
+2017,Nova Scotia,All genders,Total,12,2.22
+2017,Nova Scotia,All genders,Indigenous identity,,0
+2017,Nova Scotia,All genders,Non-Indigenous identity,,2.25
+2017,Nova Scotia,Male,Total,,1.52
+2017,Nova Scotia,Male,Indigenous identity,,0
+2017,Nova Scotia,Male,Non-Indigenous identity,,1.61
+2017,Nova Scotia,Female,Total,,2.9
+2017,Nova Scotia,Female,Indigenous identity,,0
+2017,Nova Scotia,Female,Non-Indigenous identity,,2.87
+2017,New Brunswick,All genders,Total,13,1.31
+2017,New Brunswick,All genders,Indigenous identity,,0
+2017,New Brunswick,All genders,Non-Indigenous identity,,1.37
+2017,New Brunswick,Male,Total,,1.85
+2017,New Brunswick,Male,Indigenous identity,,0
+2017,New Brunswick,Male,Non-Indigenous identity,,1.94
+2017,New Brunswick,Female,Total,,0.78
+2017,New Brunswick,Female,Indigenous identity,,0
+2017,New Brunswick,Female,Non-Indigenous identity,,0.81
+2017,Quebec,All genders,Total,24,1.12
+2017,Quebec,All genders,Indigenous identity,,5.74
+2017,Quebec,All genders,Non-Indigenous identity,,1
+2017,Quebec,Male,Total,,1.5
+2017,Quebec,Male,Indigenous identity,,7.52
+2017,Quebec,Male,Non-Indigenous identity,,1.34
+2017,Quebec,Female,Total,,0.7
+2017,Quebec,Female,Indigenous identity,,3.89
+2017,Quebec,Female,Non-Indigenous identity,,0.62
+2017,Ontario,All genders,Total,35,1.41
+2017,Ontario,All genders,Indigenous identity,,4.79
+2017,Ontario,All genders,Non-Indigenous identity,,1.27
+2017,Ontario,Male,Total,,2.14
+2017,Ontario,Male,Indigenous identity,,7.84
+2017,Ontario,Male,Non-Indigenous identity,,1.92
+2017,Ontario,Female,Total,,0.7
+2017,Ontario,Female,Indigenous identity,,1.87
+2017,Ontario,Female,Non-Indigenous identity,,0.64
+2017,Manitoba,All genders,Total,46,3.53
+2017,Manitoba,All genders,Indigenous identity,,11.89
+2017,Manitoba,All genders,Non-Indigenous identity,,1.56
+2017,Manitoba,Male,Total,,5.72
+2017,Manitoba,Male,Indigenous identity,,19.97
+2017,Manitoba,Male,Non-Indigenous identity,,2.39
+2017,Manitoba,Female,Total,,1.35
+2017,Manitoba,Female,Indigenous identity,,4.04
+2017,Manitoba,Female,Non-Indigenous identity,,0.74
+2017,Saskatchewan,All genders,Total,47,3.31
+2017,Saskatchewan,All genders,Indigenous identity,,15.74
+2017,Saskatchewan,All genders,Non-Indigenous identity,,0.83
+2017,Saskatchewan,Male,Total,,5.01
+2017,Saskatchewan,Male,Indigenous identity,,26.61
+2017,Saskatchewan,Male,Non-Indigenous identity,,0.83
+2017,Saskatchewan,Female,Total,,1.58
+2017,Saskatchewan,Female,Indigenous identity,,5.17
+2017,Saskatchewan,Female,Non-Indigenous identity,,0.84
+2017,Alberta,All genders,Total,48,2.78
+2017,Alberta,All genders,Indigenous identity,,14.3
+2017,Alberta,All genders,Non-Indigenous identity,,1.9
+2017,Alberta,Male,Total,,4.39
+2017,Alberta,Male,Indigenous identity,,21.99
+2017,Alberta,Male,Non-Indigenous identity,,3.07
+2017,Alberta,Female,Total,,1.13
+2017,Alberta,Female,Indigenous identity,,6.86
+2017,Alberta,Female,Non-Indigenous identity,,0.71
+2017,British Columbia,All genders,Total,59,2.42
+2017,British Columbia,All genders,Indigenous identity,,3.69
+2017,British Columbia,All genders,Non-Indigenous identity,,2.34
+2017,British Columbia,Male,Total,,3.74
+2017,British Columbia,Male,Indigenous identity,,4.12
+2017,British Columbia,Male,Non-Indigenous identity,,3.72
+2017,British Columbia,Female,Total,,1.13
+2017,British Columbia,Female,Indigenous identity,,3.28
+2017,British Columbia,Female,Non-Indigenous identity,,0.99
+2017,Yukon,All genders,Total,60,20.65
+2017,Yukon,All genders,Indigenous identity,,66.96
+2017,Yukon,All genders,Non-Indigenous identity,,6.72
+2017,Yukon,Male,Total,,30.51
+2017,Yukon,Male,Indigenous identity,,91.22
+2017,Yukon,Male,Non-Indigenous identity,,13.09
+2017,Yukon,Female,Total,,10.48
+2017,Yukon,Female,Indigenous identity,,43.72
+2017,Yukon,Female,Non-Indigenous identity,,0
+2017,Northwest Territories,All genders,Total,61,4.44
+2017,Northwest Territories,All genders,Indigenous identity,,8.81
+2017,Northwest Territories,All genders,Non-Indigenous identity,,0
+2017,Northwest Territories,Male,Total,,8.68
+2017,Northwest Territories,Male,Indigenous identity,,17.58
+2017,Northwest Territories,Male,Non-Indigenous identity,,0
+2017,Northwest Territories,Female,Total,,0
+2017,Northwest Territories,Female,Indigenous identity,,0
+2017,Northwest Territories,Female,Non-Indigenous identity,,0
+2017,Nunavut,All genders,Total,62,15.97
+2017,Nunavut,All genders,Indigenous identity,,15.44
+2017,Nunavut,All genders,Non-Indigenous identity,,19.28
+2017,Nunavut,Male,Total,,20.86
+2017,Nunavut,Male,Indigenous identity,,18.28
+2017,Nunavut,Male,Non-Indigenous identity,,36.15
+2017,Nunavut,Female,Total,,10.87
+2017,Nunavut,Female,Indigenous identity,,12.52
+2017,Nunavut,Female,Non-Indigenous identity,,0
+2018,Canada,All genders,Indigenous identity,,7.47
+2018,Canada,All genders,Non-Indigenous identity,,1.46
+2018,Canada,Male,Total,,2.68
+2018,Canada,Male,Indigenous identity,,10.34
+2018,Canada,Male,Non-Indigenous identity,,2.25
+2018,Canada,Female,Total,,0.89
+2018,Canada,Female,Indigenous identity,,4.67
+2018,Canada,Female,Non-Indigenous identity,,0.68
+2018,Newfoundland and Labrador,All genders,Total,10,0.38
+2018,Newfoundland and Labrador,All genders,Indigenous identity,,0
+2018,Newfoundland and Labrador,All genders,Non-Indigenous identity,,0.21
+2018,Newfoundland and Labrador,Male,Total,,0.77
+2018,Newfoundland and Labrador,Male,Indigenous identity,,0
+2018,Newfoundland and Labrador,Male,Non-Indigenous identity,,0.42
+2018,Newfoundland and Labrador,Female,Total,,0
+2018,Newfoundland and Labrador,Female,Indigenous identity,,0
+2018,Newfoundland and Labrador,Female,Non-Indigenous identity,,0
+2018,Prince Edward Island,All genders,Total,11,0
+2018,Prince Edward Island,All genders,Indigenous identity,,0
+2018,Prince Edward Island,All genders,Non-Indigenous identity,,0
+2018,Prince Edward Island,Male,Total,,0
+2018,Prince Edward Island,Male,Indigenous identity,,0
+2018,Prince Edward Island,Male,Non-Indigenous identity,,0
+2018,Prince Edward Island,Female,Total,,0
+2018,Prince Edward Island,Female,Indigenous identity,,0
+2018,Prince Edward Island,Female,Non-Indigenous identity,,0
+2018,Nova Scotia,All genders,Total,12,1.16
+2018,Nova Scotia,All genders,Indigenous identity,,0
+2018,Nova Scotia,All genders,Non-Indigenous identity,,1.24
+2018,Nova Scotia,Male,Total,,1.51
+2018,Nova Scotia,Male,Indigenous identity,,0
+2018,Nova Scotia,Male,Non-Indigenous identity,,1.61
+2018,Nova Scotia,Female,Total,,0.83
+2018,Nova Scotia,Female,Indigenous identity,,0
+2018,Nova Scotia,Female,Non-Indigenous identity,,0.88
+2018,New Brunswick,All genders,Total,13,1.7
+2018,New Brunswick,All genders,Indigenous identity,,2.99
+2018,New Brunswick,All genders,Non-Indigenous identity,,1.64
+2018,New Brunswick,Male,Total,,1.32
+2018,New Brunswick,Male,Indigenous identity,,0
+2018,New Brunswick,Male,Non-Indigenous identity,,1.38
+2018,New Brunswick,Female,Total,,2.07
+2018,New Brunswick,Female,Indigenous identity,,6.05
+2018,New Brunswick,Female,Non-Indigenous identity,,1.89
+2018,Quebec,All genders,Total,24,1
+2018,Quebec,All genders,Indigenous identity,,2.31
+2018,Quebec,All genders,Non-Indigenous identity,,0.97
+2018,Quebec,Male,Total,,1.58
+2018,Quebec,Male,Indigenous identity,,2.73
+2018,Quebec,Male,Non-Indigenous identity,,1.55
+2018,Quebec,Female,Total,,0.43
+2018,Quebec,Female,Indigenous identity,,1.88
+2018,Quebec,Female,Non-Indigenous identity,,0.39
+2018,Ontario,All genders,Total,35,1.9
+2018,Ontario,All genders,Indigenous identity,,3.95
+2018,Ontario,All genders,Non-Indigenous identity,,1.83
+2018,Ontario,Male,Total,,2.81
+2018,Ontario,Male,Indigenous identity,,4.28
+2018,Ontario,Male,Non-Indigenous identity,,2.75
+2018,Ontario,Female,Total,,1.02
+2018,Ontario,Female,Indigenous identity,,3.63
+2018,Ontario,Female,Non-Indigenous identity,,0.93
+2018,Manitoba,All genders,Total,46,4.08
+2018,Manitoba,All genders,Indigenous identity,,16.02
+2018,Manitoba,All genders,Non-Indigenous identity,,1.36
+2018,Manitoba,Male,Total,,6.38
+2018,Manitoba,Male,Indigenous identity,,24.35
+2018,Manitoba,Male,Non-Indigenous identity,,2.36
+2018,Manitoba,Female,Total,,1.78
+2018,Manitoba,Female,Indigenous identity,,7.9
+2018,Manitoba,Female,Non-Indigenous identity,,0.36
+2018,Saskatchewan,All genders,Total,47,3
+2018,Saskatchewan,All genders,Indigenous identity,,11.29
+2018,Saskatchewan,All genders,Non-Indigenous identity,,1.34
+2018,Saskatchewan,Male,Total,,4.61
+2018,Saskatchewan,Male,Indigenous identity,,18.75
+2018,Saskatchewan,Male,Non-Indigenous identity,,1.84
+2018,Saskatchewan,Female,Total,,1.38
+2018,Saskatchewan,Female,Indigenous identity,,4.05
+2018,Saskatchewan,Female,Non-Indigenous identity,,0.83
+2018,Alberta,All genders,Total,48,1.85
+2018,Alberta,All genders,Indigenous identity,,10.16
+2018,Alberta,All genders,Non-Indigenous identity,,1.23
+2018,Alberta,Male,Total,,2.77
+2018,Alberta,Male,Indigenous identity,,13.76
+2018,Alberta,Male,Non-Indigenous identity,,1.94
+2018,Alberta,Female,Total,,0.92
+2018,Alberta,Female,Indigenous identity,,6.67
+2018,Alberta,Female,Non-Indigenous identity,,0.5
+2018,British Columbia,All genders,Total,59,1.8
+2018,British Columbia,All genders,Indigenous identity,,3.93
+2018,British Columbia,All genders,Non-Indigenous identity,,1.67
+2018,British Columbia,Male,Total,,2.92
+2018,British Columbia,Male,Indigenous identity,,4.69
+2018,British Columbia,Male,Non-Indigenous identity,,2.81
+2018,British Columbia,Female,Total,,0.71
+2018,British Columbia,Female,Indigenous identity,,3.21
+2018,British Columbia,Female,Non-Indigenous identity,,0.55
+2018,Yukon,All genders,Total,60,7.63
+2018,Yukon,All genders,Indigenous identity,,22.22
+2018,Yukon,All genders,Non-Indigenous identity,,3.3
+2018,Yukon,Male,Total,,10.01
+2018,Yukon,Male,Indigenous identity,,22.73
+2018,Yukon,Male,Non-Indigenous identity,,6.42
+2018,Yukon,Female,Total,,5.17
+2018,Yukon,Female,Indigenous identity,,21.73
+2018,Yukon,Female,Non-Indigenous identity,,0
+2018,Northwest Territories,All genders,Total,61,13.27
+2018,Northwest Territories,All genders,Indigenous identity,,21.96
+2018,Northwest Territories,All genders,Non-Indigenous identity,,4.46
+2018,Northwest Territories,Male,Total,,26
+2018,Northwest Territories,Male,Indigenous identity,,43.89
+2018,Northwest Territories,Male,Non-Indigenous identity,,8.56
+2018,Northwest Territories,Female,Total,,0
+2018,Northwest Territories,Female,Indigenous identity,,0
+2018,Northwest Territories,Female,Non-Indigenous identity,,0
+2018,Nunavut,All genders,Total,62,20.96
+2018,Nunavut,All genders,Indigenous identity,,24.22
+2018,Nunavut,All genders,Non-Indigenous identity,,0
+2018,Nunavut,Male,Total,,20.56
+2018,Nunavut,Male,Indigenous identity,,23.92
+2018,Nunavut,Male,Non-Indigenous identity,,0
+2018,Nunavut,Female,Total,,21.39
+2018,Nunavut,Female,Indigenous identity,,24.53
+2018,Nunavut,Female,Non-Indigenous identity,,0
+2019,Canada,All genders,Indigenous identity,,9.17
+2019,Canada,All genders,Non-Indigenous identity,,1.34
+2019,Canada,Male,Total,,2.82
+2019,Canada,Male,Indigenous identity,,13.6
+2019,Canada,Male,Non-Indigenous identity,,2.13
+2019,Canada,Female,Total,,0.82
+2019,Canada,Female,Indigenous identity,,4.76
+2019,Canada,Female,Non-Indigenous identity,,0.56
+2019,Newfoundland and Labrador,All genders,Total,10,0.96
+2019,Newfoundland and Labrador,All genders,Indigenous identity,,3.95
+2019,Newfoundland and Labrador,All genders,Non-Indigenous identity,,0.64
+2019,Newfoundland and Labrador,Male,Total,,1.16
+2019,Newfoundland and Labrador,Male,Indigenous identity,,4.03
+2019,Newfoundland and Labrador,Male,Non-Indigenous identity,,0.85
+2019,Newfoundland and Labrador,Female,Total,,0.76
+2019,Newfoundland and Labrador,Female,Indigenous identity,,3.87
+2019,Newfoundland and Labrador,Female,Non-Indigenous identity,,0.42
+2019,Prince Edward Island,All genders,Total,11,1.31
+2019,Prince Edward Island,All genders,Indigenous identity,,0
+2019,Prince Edward Island,All genders,Non-Indigenous identity,,1.34
+2019,Prince Edward Island,Male,Total,,2.67
+2019,Prince Edward Island,Male,Indigenous identity,,0
+2019,Prince Edward Island,Male,Non-Indigenous identity,,2.73
+2019,Prince Edward Island,Female,Total,,0
+2019,Prince Edward Island,Female,Indigenous identity,,0
+2019,Prince Edward Island,Female,Non-Indigenous identity,,0
+2019,Nova Scotia,All genders,Total,12,0.63
+2019,Nova Scotia,All genders,Indigenous identity,,3.26
+2019,Nova Scotia,All genders,Non-Indigenous identity,,0.34
+2019,Nova Scotia,Male,Total,,0.86
+2019,Nova Scotia,Male,Indigenous identity,,3.31
+2019,Nova Scotia,Male,Non-Indigenous identity,,0.69
+2019,Nova Scotia,Female,Total,,0.41
+2019,Nova Scotia,Female,Indigenous identity,,3.2
+2019,Nova Scotia,Female,Non-Indigenous identity,,0
+2019,New Brunswick,All genders,Total,13,2.22
+2019,New Brunswick,All genders,Indigenous identity,,2.9
+2019,New Brunswick,All genders,Non-Indigenous identity,,2.19
+2019,New Brunswick,Male,Total,,3.17
+2019,New Brunswick,Male,Indigenous identity,,5.75
+2019,New Brunswick,Male,Non-Indigenous identity,,3.04
+2019,New Brunswick,Female,Total,,1.29
+2019,New Brunswick,Female,Indigenous identity,,0
+2019,New Brunswick,Female,Non-Indigenous identity,,1.35
+2019,Quebec,All genders,Total,24,0.91
+2019,Quebec,All genders,Indigenous identity,,4.04
+2019,Quebec,All genders,Non-Indigenous identity,,0.8
+2019,Quebec,Male,Total,,1.3
+2019,Quebec,Male,Indigenous identity,,4.42
+2019,Quebec,Male,Non-Indigenous identity,,1.19
+2019,Quebec,Female,Total,,0.49
+2019,Quebec,Female,Indigenous identity,,3.65
+2019,Quebec,Female,Non-Indigenous identity,,0.41
+2019,Ontario,All genders,Total,35,1.74
+2019,Ontario,All genders,Indigenous identity,,5.87
+2019,Ontario,All genders,Non-Indigenous identity,,1.51
+2019,Ontario,Male,Total,,2.68
+2019,Ontario,Male,Indigenous identity,,7.38
+2019,Ontario,Male,Non-Indigenous identity,,2.42
+2019,Ontario,Female,Total,,0.79
+2019,Ontario,Female,Indigenous identity,,3.98
+2019,Ontario,Female,Non-Indigenous identity,,0.63
+2019,Manitoba,All genders,Total,46,5.27
+2019,Manitoba,All genders,Indigenous identity,,16.44
+2019,Manitoba,All genders,Non-Indigenous identity,,1.98
+2019,Manitoba,Male,Total,,9.08
+2019,Manitoba,Male,Indigenous identity,,29.35
+2019,Manitoba,Male,Non-Indigenous identity,,3.41
+2019,Manitoba,Female,Total,,1.46
+2019,Manitoba,Female,Indigenous identity,,3.87
+2019,Manitoba,Female,Non-Indigenous identity,,0.54
+2019,Saskatchewan,All genders,Total,47,4.65
+2019,Saskatchewan,All genders,Indigenous identity,,18.62
+2019,Saskatchewan,All genders,Non-Indigenous identity,,1.32
+2019,Saskatchewan,Male,Total,,7.39
+2019,Saskatchewan,Male,Indigenous identity,,29.62
+2019,Saskatchewan,Male,Non-Indigenous identity,,2.41
+2019,Saskatchewan,Female,Total,,1.7
+2019,Saskatchewan,Female,Indigenous identity,,7.94
+2019,Saskatchewan,Female,Non-Indigenous identity,,0.21
+2019,Alberta,All genders,Total,48,2.24
+2019,Alberta,All genders,Indigenous identity,,11.53
+2019,Alberta,All genders,Non-Indigenous identity,,1.56
+2019,Alberta,Male,Total,,3.33
+2019,Alberta,Male,Indigenous identity,,15.38
+2019,Alberta,Male,Non-Indigenous identity,,2.48
+2019,Alberta,Female,Total,,1.13
+2019,Alberta,Female,Indigenous identity,,7.79
+2019,Alberta,Female,Non-Indigenous identity,,0.63
+2019,British Columbia,All genders,Total,59,1.78
+2019,British Columbia,All genders,Indigenous identity,,4.8
+2019,British Columbia,All genders,Non-Indigenous identity,,1.56
+2019,British Columbia,Male,Total,,2.87
+2019,British Columbia,Male,Indigenous identity,,7.84
+2019,British Columbia,Male,Non-Indigenous identity,,2.51
+2019,British Columbia,Female,Total,,0.7
+2019,British Columbia,Female,Indigenous identity,,1.88
+2019,British Columbia,Female,Non-Indigenous identity,,0.62
+2019,Yukon,All genders,Total,60,2.52
+2019,Yukon,All genders,Indigenous identity,,11.07
+2019,Yukon,All genders,Non-Indigenous identity,,0
+2019,Yukon,Male,Total,,0
+2019,Yukon,Male,Indigenous identity,,0
+2019,Yukon,Male,Non-Indigenous identity,,0
+2019,Yukon,Female,Total,,5.11
+2019,Yukon,Female,Indigenous identity,,21.71
+2019,Yukon,Female,Non-Indigenous identity,,0
+2019,Northwest Territories,All genders,Total,61,4.4
+2019,Northwest Territories,All genders,Indigenous identity,,8.74
+2019,Northwest Territories,All genders,Non-Indigenous identity,,0
+2019,Northwest Territories,Male,Total,,8.64
+2019,Northwest Territories,Male,Indigenous identity,,17.49
+2019,Northwest Territories,Male,Non-Indigenous identity,,0
+2019,Northwest Territories,Female,Total,,0
+2019,Northwest Territories,Female,Indigenous identity,,0
+2019,Northwest Territories,Female,Non-Indigenous identity,,0
+2019,Nunavut,All genders,Total,62,18.06
+2019,Nunavut,All genders,Indigenous identity,,20.8
+2019,Nunavut,All genders,Non-Indigenous identity,,0
+2019,Nunavut,Male,Total,,20.3
+2019,Nunavut,Male,Indigenous identity,,23.5
+2019,Nunavut,Male,Non-Indigenous identity,,0
+2019,Nunavut,Female,Total,,15.74
+2019,Nunavut,Female,Indigenous identity,,18.04
+2019,Nunavut,Female,Non-Indigenous identity,,0
+2020,Canada,All genders,Indigenous identity,,10.05
+2020,Canada,All genders,Non-Indigenous identity,,1.42
+2020,Canada,Male,Total,,3.01
+2020,Canada,Male,Indigenous identity,,16.5
+2020,Canada,Male,Non-Indigenous identity,,2.14
+2020,Canada,Female,Total,,0.89
+2020,Canada,Female,Indigenous identity,,3.76
+2020,Canada,Female,Non-Indigenous identity,,0.69
+2020,Newfoundland and Labrador,All genders,Total,10,0.77
+2020,Newfoundland and Labrador,All genders,Indigenous identity,,1.94
+2020,Newfoundland and Labrador,All genders,Non-Indigenous identity,,0.21
+2020,Newfoundland and Labrador,Male,Total,,1.55
+2020,Newfoundland and Labrador,Male,Indigenous identity,,3.96
+2020,Newfoundland and Labrador,Male,Non-Indigenous identity,,0.43
+2020,Newfoundland and Labrador,Female,Total,,0
+2020,Newfoundland and Labrador,Female,Indigenous identity,,0
+2020,Newfoundland and Labrador,Female,Non-Indigenous identity,,0
+2020,Prince Edward Island,All genders,Total,11,0.65
+2020,Prince Edward Island,All genders,Indigenous identity,,0
+2020,Prince Edward Island,All genders,Non-Indigenous identity,,0.66
+2020,Prince Edward Island,Male,Total,,0
+2020,Prince Edward Island,Male,Indigenous identity,,0
+2020,Prince Edward Island,Male,Non-Indigenous identity,,0
+2020,Prince Edward Island,Female,Total,,1.28
+2020,Prince Edward Island,Female,Indigenous identity,,0
+2020,Prince Edward Island,Female,Non-Indigenous identity,,1.31
+2020,Nova Scotia,All genders,Total,12,3.67
+2020,Nova Scotia,All genders,Indigenous identity,,1.57
+2020,Nova Scotia,All genders,Non-Indigenous identity,,3.6
+2020,Nova Scotia,Male,Total,,4.06
+2020,Nova Scotia,Male,Indigenous identity,,0
+2020,Nova Scotia,Male,Non-Indigenous identity,,4.12
+2020,Nova Scotia,Female,Total,,3.3
+2020,Nova Scotia,Female,Indigenous identity,,3.09
+2020,Nova Scotia,Female,Non-Indigenous identity,,3.09
+2020,New Brunswick,All genders,Total,13,1.83
+2020,New Brunswick,All genders,Indigenous identity,,5.64
+2020,New Brunswick,All genders,Non-Indigenous identity,,1.65
+2020,New Brunswick,Male,Total,,2.91
+2020,New Brunswick,Male,Indigenous identity,,11.2
+2020,New Brunswick,Male,Non-Indigenous identity,,2.5
+2020,New Brunswick,Female,Total,,0.78
+2020,New Brunswick,Female,Indigenous identity,,0
+2020,New Brunswick,Female,Non-Indigenous identity,,0.81
+2020,Quebec,All genders,Total,24,1.02
+2020,Quebec,All genders,Indigenous identity,,4.8
+2020,Quebec,All genders,Non-Indigenous identity,,0.9
+2020,Quebec,Male,Total,,1.48
+2020,Quebec,Male,Indigenous identity,,7.73
+2020,Quebec,Male,Non-Indigenous identity,,1.28
+2020,Quebec,Female,Total,,0.56
+2020,Quebec,Female,Indigenous identity,,1.77
+2020,Quebec,Female,Non-Indigenous identity,,0.53
+2020,Ontario,All genders,Total,35,1.59
+2020,Ontario,All genders,Indigenous identity,,5.05
+2020,Ontario,All genders,Non-Indigenous identity,,1.35
+2020,Ontario,Male,Total,,2.42
+2020,Ontario,Male,Indigenous identity,,8.51
+2020,Ontario,Male,Non-Indigenous identity,,2.07
+2020,Ontario,Female,Total,,0.75
+2020,Ontario,Female,Indigenous identity,,1.72
+2020,Ontario,Female,Non-Indigenous identity,,0.64
+2020,Manitoba,All genders,Total,46,4.51
+2020,Manitoba,All genders,Indigenous identity,,15.32
+2020,Manitoba,All genders,Non-Indigenous identity,,1.26
+2020,Manitoba,Male,Total,,7.57
+2020,Manitoba,Male,Indigenous identity,,24.83
+2020,Manitoba,Male,Non-Indigenous identity,,2.33
+2020,Manitoba,Female,Total,,1.45
+2020,Manitoba,Female,Indigenous identity,,6.05
+2020,Manitoba,Female,Non-Indigenous identity,,0.18
+2020,Saskatchewan,All genders,Total,47,5.02
+2020,Saskatchewan,All genders,Indigenous identity,,22.74
+2020,Saskatchewan,All genders,Non-Indigenous identity,,1.31
+2020,Saskatchewan,Male,Total,,7.99
+2020,Saskatchewan,Male,Indigenous identity,,37.11
+2020,Saskatchewan,Male,Non-Indigenous identity,,1.99
+2020,Saskatchewan,Female,Total,,2.02
+2020,Saskatchewan,Female,Indigenous identity,,8.77
+2020,Saskatchewan,Female,Non-Indigenous identity,,0.61
+2020,Alberta,All genders,Total,48,3.06
+2020,Alberta,All genders,Indigenous identity,,18.29
+2020,Alberta,All genders,Non-Indigenous identity,,1.94
+2020,Alberta,Male,Total,,5.11
+2020,Alberta,Male,Indigenous identity,,31.87
+2020,Alberta,Male,Non-Indigenous identity,,3.18
+2020,Alberta,Female,Total,,0.93
+2020,Alberta,Female,Indigenous identity,,5.07
+2020,Alberta,Female,Non-Indigenous identity,,0.62
+2020,British Columbia,All genders,Total,59,1.92
+2020,British Columbia,All genders,Indigenous identity,,4.07
+2020,British Columbia,All genders,Non-Indigenous identity,,1.78
+2020,British Columbia,Male,Total,,2.89
+2020,British Columbia,Male,Indigenous identity,,6.38
+2020,British Columbia,Male,Non-Indigenous identity,,2.66
+2020,British Columbia,Female,Total,,0.93
+2020,British Columbia,Female,Indigenous identity,,1.84
+2020,British Columbia,Female,Non-Indigenous identity,,0.87
+2020,Yukon,All genders,Total,60,0
+2020,Yukon,All genders,Indigenous identity,,0
+2020,Yukon,All genders,Non-Indigenous identity,,0
+2020,Yukon,Male,Total,,0
+2020,Yukon,Male,Indigenous identity,,0
+2020,Yukon,Male,Non-Indigenous identity,,0
+2020,Yukon,Female,Total,,0
+2020,Yukon,Female,Indigenous identity,,0
+2020,Yukon,Female,Non-Indigenous identity,,0
+2020,Northwest Territories,All genders,Total,61,13.11
+2020,Northwest Territories,All genders,Indigenous identity,,17.42
+2020,Northwest Territories,All genders,Non-Indigenous identity,,8.77
+2020,Northwest Territories,Male,Total,,12.92
+2020,Northwest Territories,Male,Indigenous identity,,17.45
+2020,Northwest Territories,Male,Non-Indigenous identity,,8.5
+2020,Northwest Territories,Female,Total,,13.31
+2020,Northwest Territories,Female,Indigenous identity,,17.39
+2020,Northwest Territories,Female,Non-Indigenous identity,,9.06
+2020,Nunavut,All genders,Total,62,7.63
+2020,Nunavut,All genders,Indigenous identity,,8.76
+2020,Nunavut,All genders,Non-Indigenous identity,,0
+2020,Nunavut,Male,Total,,10.02
+2020,Nunavut,Male,Indigenous identity,,11.55
+2020,Nunavut,Male,Non-Indigenous identity,,0
+2020,Nunavut,Female,Total,,5.16
+2020,Nunavut,Female,Indigenous identity,,5.91
+2020,Nunavut,Female,Non-Indigenous identity,,0
diff --git a/tests/assets/progress-calculation/data/temp/indicator_16-1-3.csv b/tests/assets/progress-calculation/data/temp/indicator_16-1-3.csv
new file mode 100644
index 00000000..4fa55281
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_16-1-3.csv
@@ -0,0 +1,6 @@
+Year,Value
+1999,111
+2004,106
+2009,118
+2014,76
+2019,83
diff --git a/tests/assets/progress-calculation/data/temp/indicator_16-2-3.csv b/tests/assets/progress-calculation/data/temp/indicator_16-2-3.csv
new file mode 100644
index 00000000..89bfc2a1
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_16-2-3.csv
@@ -0,0 +1,4 @@
+Year,Sex,Value
+2014,,8
+2014,Men,4
+2014,Women,12
diff --git a/tests/assets/progress-calculation/data/temp/indicator_16-3-1.csv b/tests/assets/progress-calculation/data/temp/indicator_16-3-1.csv
new file mode 100644
index 00000000..1035a0be
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_16-3-1.csv
@@ -0,0 +1,6 @@
+Year,Value
+1999,37
+2004,34
+2009,31
+2014,31
+2019,29
diff --git a/tests/assets/progress-calculation/data/temp/indicator_17-1-2.csv b/tests/assets/progress-calculation/data/temp/indicator_17-1-2.csv
new file mode 100644
index 00000000..950106f5
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_17-1-2.csv
@@ -0,0 +1,91 @@
+Year,Geography,Public sector components,GeoCode,Value
+2015,,,,78.16
+2016,,,,78.52
+2017,,,,78.69
+2018,,,,78.27
+2019,,,,78.37
+2020,,,,79.01
+2015,Canada,Consolidated provincial-territorial and local governments,,60.99
+2015,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,56.77
+2015,Prince Edward Island,Consolidated provincial-territorial and local governments,11,52.03
+2015,Nova Scotia,Consolidated provincial-territorial and local governments,12,54.23
+2015,New Brunswick,Consolidated provincial-territorial and local governments,13,51.08
+2015,Quebec,Consolidated provincial-territorial and local governments,24,62.23
+2015,Ontario,Consolidated provincial-territorial and local governments,35,65.97
+2015,Manitoba,Consolidated provincial-territorial and local governments,46,58.53
+2015,Saskatchewan,Consolidated provincial-territorial and local governments,47,55.12
+2015,Alberta,Consolidated provincial-territorial and local governments,48,56.66
+2015,British Columbia,Consolidated provincial-territorial and local governments,59,58.12
+2015,Yukon,Consolidated provincial-territorial and local governments,60,11.68
+2015,Northwest Territories,Consolidated provincial-territorial and local governments,61,14.88
+2015,Nunavut,Consolidated provincial-territorial and local governments,62,5.72
+2016,Canada,Consolidated provincial-territorial and local governments,,60.83
+2016,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,55.85
+2016,Prince Edward Island,Consolidated provincial-territorial and local governments,11,49.76
+2016,Nova Scotia,Consolidated provincial-territorial and local governments,12,53.92
+2016,New Brunswick,Consolidated provincial-territorial and local governments,13,51.02
+2016,Quebec,Consolidated provincial-territorial and local governments,24,61.81
+2016,Ontario,Consolidated provincial-territorial and local governments,35,66.12
+2016,Manitoba,Consolidated provincial-territorial and local governments,46,57.67
+2016,Saskatchewan,Consolidated provincial-territorial and local governments,47,52.9
+2016,Alberta,Consolidated provincial-territorial and local governments,48,54.66
+2016,British Columbia,Consolidated provincial-territorial and local governments,59,59.87
+2016,Yukon,Consolidated provincial-territorial and local governments,60,12.65
+2016,Northwest Territories,Consolidated provincial-territorial and local governments,61,17.01
+2016,Nunavut,Consolidated provincial-territorial and local governments,62,5.64
+2017,Canada,Consolidated provincial-territorial and local governments,,61.12
+2017,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,58.27
+2017,Prince Edward Island,Consolidated provincial-territorial and local governments,11,51.78
+2017,Nova Scotia,Consolidated provincial-territorial and local governments,12,52.17
+2017,New Brunswick,Consolidated provincial-territorial and local governments,13,51.27
+2017,Quebec,Consolidated provincial-territorial and local governments,24,61.2
+2017,Ontario,Consolidated provincial-territorial and local governments,35,67.5
+2017,Manitoba,Consolidated provincial-territorial and local governments,46,58.11
+2017,Saskatchewan,Consolidated provincial-territorial and local governments,47,54.28
+2017,Alberta,Consolidated provincial-territorial and local governments,48,53.54
+2017,British Columbia,Consolidated provincial-territorial and local governments,59,59.7
+2017,Yukon,Consolidated provincial-territorial and local governments,60,12.42
+2017,Northwest Territories,Consolidated provincial-territorial and local governments,61,14.34
+2017,Nunavut,Consolidated provincial-territorial and local governments,62,5.52
+2018,Canada,Consolidated provincial-territorial and local governments,,60.45
+2018,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,54.48
+2018,Prince Edward Island,Consolidated provincial-territorial and local governments,11,50.73
+2018,Nova Scotia,Consolidated provincial-territorial and local governments,12,52.4
+2018,New Brunswick,Consolidated provincial-territorial and local governments,13,50.65
+2018,Quebec,Consolidated provincial-territorial and local governments,24,60.21
+2018,Ontario,Consolidated provincial-territorial and local governments,35,66.42
+2018,Manitoba,Consolidated provincial-territorial and local governments,46,56.82
+2018,Saskatchewan,Consolidated provincial-territorial and local governments,47,54.8
+2018,Alberta,Consolidated provincial-territorial and local governments,48,53.89
+2018,British Columbia,Consolidated provincial-territorial and local governments,59,60.04
+2018,Yukon,Consolidated provincial-territorial and local governments,60,13.39
+2018,Northwest Territories,Consolidated provincial-territorial and local governments,61,14.57
+2018,Nunavut,Consolidated provincial-territorial and local governments,62,6.75
+2019,Canada,Consolidated provincial-territorial and local governments,,60.18
+2019,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,43.36
+2019,Prince Edward Island,Consolidated provincial-territorial and local governments,11,49.09
+2019,Nova Scotia,Consolidated provincial-territorial and local governments,12,52.75
+2019,New Brunswick,Consolidated provincial-territorial and local governments,13,49.83
+2019,Quebec,Consolidated provincial-territorial and local governments,24,60.25
+2019,Ontario,Consolidated provincial-territorial and local governments,35,67.37
+2019,Manitoba,Consolidated provincial-territorial and local governments,46,55.55
+2019,Saskatchewan,Consolidated provincial-territorial and local governments,47,54.72
+2019,Alberta,Consolidated provincial-territorial and local governments,48,50.59
+2019,British Columbia,Consolidated provincial-territorial and local governments,59,60.33
+2019,Yukon,Consolidated provincial-territorial and local governments,60,12.8
+2019,Northwest Territories,Consolidated provincial-territorial and local governments,61,14.23
+2019,Nunavut,Consolidated provincial-territorial and local governments,62,6.68
+2020,Canada,Consolidated provincial-territorial and local governments,,58.26
+2020,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,58.27
+2020,Prince Edward Island,Consolidated provincial-territorial and local governments,11,47.17
+2020,Nova Scotia,Consolidated provincial-territorial and local governments,12,49.95
+2020,New Brunswick,Consolidated provincial-territorial and local governments,13,48.52
+2020,Quebec,Consolidated provincial-territorial and local governments,24,59.03
+2020,Ontario,Consolidated provincial-territorial and local governments,35,64.48
+2020,Manitoba,Consolidated provincial-territorial and local governments,46,52.5
+2020,Saskatchewan,Consolidated provincial-territorial and local governments,47,51.31
+2020,Alberta,Consolidated provincial-territorial and local governments,48,49.84
+2020,British Columbia,Consolidated provincial-territorial and local governments,59,56.24
+2020,Yukon,Consolidated provincial-territorial and local governments,60,12.08
+2020,Northwest Territories,Consolidated provincial-territorial and local governments,61,13.09
+2020,Nunavut,Consolidated provincial-territorial and local governments,62,6.47
diff --git a/tests/assets/progress-calculation/data/temp/indicator_17-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_17-2-1.csv
new file mode 100644
index 00000000..e72e7b1c
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_17-2-1.csv
@@ -0,0 +1,4 @@
+Year,Unit,Value
+2018,"Net official development assistance, total, as a proportion of the OECD Development Assistance Committee donors' gross national income (GNI)",0.277
+2019,"Net official development assistance, total, as a proportion of the OECD Development Assistance Committee donors' gross national income (GNI)",0.275
+2020,"Net official development assistance, total, as a proportion of the OECD Development Assistance Committee donors' gross national income (GNI)",0.31
diff --git a/tests/assets/progress-calculation/data/temp/indicator_17-3-2.csv b/tests/assets/progress-calculation/data/temp/indicator_17-3-2.csv
new file mode 100644
index 00000000..65bf8e28
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_17-3-2.csv
@@ -0,0 +1,2 @@
+Year,Value
+2017,5.2
diff --git a/tests/assets/progress-calculation/data/temp/indicator_17-8-1.csv b/tests/assets/progress-calculation/data/temp/indicator_17-8-1.csv
new file mode 100644
index 00000000..c31e92dd
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_17-8-1.csv
@@ -0,0 +1,111 @@
+Year,Geography,Age group,GeoCode,Value
+2018,,,NA,91.3
+2020,,,NA,92.3
+2018,Canada,15 to 24 years,NA,98.6
+2018,Canada,25 to 44 years,NA,98.2
+2018,Canada,45 to 64 years,NA,93.9
+2018,Canada,65 years and over,NA,71.2
+2018,Newfoundland and Labrador,"Total, 15 years and over",10,86
+2018,Newfoundland and Labrador,15 to 24 years,NA,92.5
+2018,Newfoundland and Labrador,25 to 44 years,NA,97
+2018,Newfoundland and Labrador,45 to 64 years,NA,89.4
+2018,Newfoundland and Labrador,65 years and over,NA,64.7
+2018,Prince Edward Island,"Total, 15 years and over",11,88.5
+2018,Prince Edward Island,15 to 24 years,NA,100
+2018,Prince Edward Island,25 to 44 years,NA,98.7
+2018,Prince Edward Island,45 to 64 years,NA,88.1
+2018,Prince Edward Island,65 years and over,NA,69
+2018,Nova Scotia,"Total, 15 years and over",12,88.5
+2018,Nova Scotia,15 to 24 years,NA,100
+2018,Nova Scotia,25 to 44 years,NA,98.3
+2018,Nova Scotia,45 to 64 years,NA,89.4
+2018,Nova Scotia,65 years and over,NA,68.2
+2018,New Brunswick,"Total, 15 years and over",13,89.2
+2018,New Brunswick,15 to 24 years,NA,100
+2018,New Brunswick,25 to 44 years,NA,98.1
+2018,New Brunswick,45 to 64 years,NA,91.7
+2018,New Brunswick,65 years and over,NA,69.3
+2018,Quebec,"Total, 15 years and over",24,88
+2018,Quebec,15 to 24 years,NA,100
+2018,Quebec,25 to 44 years,NA,97.9
+2018,Quebec,45 to 64 years,NA,91.3
+2018,Quebec,65 years and over,NA,62.1
+2018,Ontario,"Total, 15 years and over",35,92.2
+2018,Ontario,15 to 24 years,NA,97.9
+2018,Ontario,25 to 44 years,NA,98.4
+2018,Ontario,45 to 64 years,NA,95.2
+2018,Ontario,65 years and over,NA,72.8
+2018,Manitoba,"Total, 15 years and over",46,91.2
+2018,Manitoba,15 to 24 years,NA,99.5
+2018,Manitoba,25 to 44 years,NA,97.2
+2018,Manitoba,45 to 64 years,NA,92.8
+2018,Manitoba,65 years and over,NA,70.2
+2018,Saskatchewan,"Total, 15 years and over",47,89.9
+2018,Saskatchewan,15 to 24 years,NA,100
+2018,Saskatchewan,25 to 44 years,NA,97.5
+2018,Saskatchewan,45 to 64 years,NA,91.5
+2018,Saskatchewan,65 years and over,NA,64.3
+2018,Alberta,"Total, 15 years and over",48,94.1
+2018,Alberta,15 to 24 years,NA,100
+2018,Alberta,25 to 44 years,NA,97.3
+2018,Alberta,45 to 64 years,NA,94.8
+2018,Alberta,65 years and over,NA,79.5
+2018,British Columbia,"Total, 15 years and over",59,94
+2018,British Columbia,15 to 24 years,NA,96.7
+2018,British Columbia,25 to 44 years,NA,99.3
+2018,British Columbia,45 to 64 years,NA,96.5
+2018,British Columbia,65 years and over,NA,81.1
+2020,Canada,15 to 24 years,NA,98
+2020,Canada,25 to 44 years,NA,98.2
+2020,Canada,45 to 64 years,NA,94.2
+2020,Canada,65 years and over,NA,76.3
+2020,Newfoundland and Labrador,"Total, 15 years and over",10,89.8
+2020,Newfoundland and Labrador,15 to 24 years,NA,100
+2020,Newfoundland and Labrador,25 to 44 years,NA,99.7
+2020,Newfoundland and Labrador,45 to 64 years,NA,92.9
+2020,Newfoundland and Labrador,65 years and over,NA,70.9
+2020,Prince Edward Island,"Total, 15 years and over",11,91.3
+2020,Prince Edward Island,15 to 24 years,NA,96.3
+2020,Prince Edward Island,25 to 44 years,NA,98.5
+2020,Prince Edward Island,45 to 64 years,NA,94.7
+2020,Prince Edward Island,65 years and over,NA,74.5
+2020,Nova Scotia,"Total, 15 years and over",12,90.8
+2020,Nova Scotia,15 to 24 years,NA,95.1
+2020,Nova Scotia,25 to 44 years,NA,97.4
+2020,Nova Scotia,45 to 64 years,NA,93.6
+2020,Nova Scotia,65 years and over,NA,76.9
+2020,New Brunswick,"Total, 15 years and over",13,90.7
+2020,New Brunswick,15 to 24 years,NA,100
+2020,New Brunswick,25 to 44 years,NA,99
+2020,New Brunswick,45 to 64 years,NA,93.1
+2020,New Brunswick,65 years and over,NA,73.8
+2020,Quebec,"Total, 15 years and over",24,87.1
+2020,Quebec,15 to 24 years,NA,94.6
+2020,Quebec,25 to 44 years,NA,98.5
+2020,Quebec,45 to 64 years,NA,89.3
+2020,Quebec,65 years and over,NA,64.4
+2020,Ontario,"Total, 15 years and over",35,94.1
+2020,Ontario,15 to 24 years,NA,98.8
+2020,Ontario,25 to 44 years,NA,98.2
+2020,Ontario,45 to 64 years,NA,96.1
+2020,Ontario,65 years and over,NA,81
+2020,Manitoba,"Total, 15 years and over",46,91.3
+2020,Manitoba,15 to 24 years,NA,95.3
+2020,Manitoba,25 to 44 years,NA,97.4
+2020,Manitoba,45 to 64 years,NA,91.7
+2020,Manitoba,65 years and over,NA,76.5
+2020,Saskatchewan,"Total, 15 years and over",47,91.4
+2020,Saskatchewan,15 to 24 years,NA,99
+2020,Saskatchewan,25 to 44 years,NA,97.2
+2020,Saskatchewan,45 to 64 years,NA,93.2
+2020,Saskatchewan,65 years and over,NA,72.6
+2020,Alberta,"Total, 15 years and over",48,95.2
+2020,Alberta,15 to 24 years,NA,100
+2020,Alberta,25 to 44 years,NA,97.6
+2020,Alberta,45 to 64 years,NA,96.8
+2020,Alberta,65 years and over,NA,83
+2020,British Columbia,"Total, 15 years and over",59,94.2
+2020,British Columbia,15 to 24 years,NA,99.5
+2020,British Columbia,25 to 44 years,NA,98.9
+2020,British Columbia,45 to 64 years,NA,95.9
+2020,British Columbia,65 years and over,NA,81.8
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-1-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-1-1.csv
new file mode 100644
index 00000000..85452eec
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-1-1.csv
@@ -0,0 +1,6 @@
+Year,Value
+2015,7.060817171907362
+2016,6.264650145392089
+2017,6.625886543619536
+2018,8.555028886589724
+2019,7.526112923948628
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-2-1.csv
new file mode 100644
index 00000000..fc2097f6
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-2-1.csv
@@ -0,0 +1,68 @@
+Year,Geography,GeoCode,Value
+2015,,,5.3
+2015,Newfoundland and Labrador,10,4.91
+2015,Prince Edward Island,11,3.03
+2015,Nova Scotia,12,4.46
+2015,New Brunswick,13,4.82
+2015,Quebec,24,5.62
+2015,Ontario,35,5.03
+2015,Manitoba,46,7.47
+2015,Saskatchewan,47,6.58
+2015,Alberta,48,5.55
+2015,British Columbia,59,3.97
+2015,Yukon,60,9.62
+2015,Northwest Territories,61,5.32
+2015,Nunavut,62,27.46
+2016,,,5.29
+2016,Newfoundland and Labrador,10,4.7
+2016,Prince Edward Island,11,7.28
+2016,Nova Scotia,12,5.7
+2016,New Brunswick,13,5.69
+2016,Quebec,24,5
+2016,Ontario,35,5.32
+2016,Manitoba,46,6.61
+2016,Saskatchewan,47,7.13
+2016,Alberta,48,5.26
+2016,British Columbia,59,4.1
+2016,Yukon,60,7.19
+2016,Northwest Territories,61,7.08
+2016,Nunavut,62,39.56
+2017,,,5.16
+2017,Newfoundland and Labrador,10,4.88
+2017,Prince Edward Island,11,3.05
+2017,Nova Scotia,12,4.43
+2017,New Brunswick,13,3.21
+2017,Quebec,24,4.44
+2017,Ontario,35,5.3
+2017,Manitoba,46,8.17
+2017,Saskatchewan,47,7.37
+2017,Alberta,48,5.71
+2017,British Columbia,59,3.75
+2017,Northwest Territories,61,4.21
+2017,Nunavut,62,22.78
+2018,,,5.36
+2018,Newfoundland and Labrador,10,5.72
+2018,Prince Edward Island,11,5.46
+2018,Nova Scotia,12,4.23
+2018,New Brunswick,13,3.76
+2018,Quebec,24,4.56
+2018,Ontario,35,5.21
+2018,Manitoba,46,7.53
+2018,Saskatchewan,47,6.75
+2018,Alberta,48,6.34
+2018,British Columbia,59,4.62
+2018,Northwest Territories,61,8.16
+2018,Nunavut,62,63.41
+2019,,,5.07
+2019,Newfoundland and Labrador,10,5.04
+2019,Prince Edward Island,11,3.84
+2019,Nova Scotia,12,6
+2019,New Brunswick,13,4.59
+2019,Quebec,24,4.66
+2019,Ontario,35,5.09
+2019,Manitoba,46,6.64
+2019,Saskatchewan,47,7.16
+2019,Alberta,48,5.19
+2019,British Columbia,59,3.92
+2019,Northwest Territories,61,1.59
+2019,Nunavut,62,44.74
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-2-2.csv b/tests/assets/progress-calculation/data/temp/indicator_3-2-2.csv
new file mode 100644
index 00000000..72f3ea8f
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-2-2.csv
@@ -0,0 +1,361 @@
+Year,Age,Sex,Value
+2015,,,4.5
+2016,,,4.5
+2017,,,4.5
+2018,,,4.7
+2019,,,4.4
+2015,Total infant deaths under 1 year,Males,4.8
+2015,Total infant deaths under 1 year,Females,4.3
+2015,Neonatal 0 to 27 days,Both sexes,3.5
+2015,Neonatal 0 to 27 days,Males,3.7
+2015,Neonatal 0 to 27 days,Females,3.4
+2015,Neonatal under 1 day,Both sexes,2.5
+2015,Neonatal under 1 day,Males,2.5
+2015,Neonatal under 1 day,Females,2.4
+2015,Neonatal 1 day,Both sexes,0.1
+2015,Neonatal 1 day,Males,0.1
+2015,Neonatal 1 day,Females,0.1
+2015,Neonatal 2 days,Both sexes,0.1
+2015,Neonatal 2 days,Males,0.1
+2015,Neonatal 2 days,Females,0.1
+2015,Neonatal 3 days,Both sexes,0.1
+2015,Neonatal 3 days,Males,0.1
+2015,Neonatal 3 days,Females,0.1
+2015,Neonatal 4 days,Both sexes,0.1
+2015,Neonatal 4 days,Males,0.1
+2015,Neonatal 4 days,Females,0.1
+2015,Neonatal 5 days,Both sexes,0
+2015,Neonatal 5 days,Males,0.1
+2015,Neonatal 5 days,Females,0
+2015,Neonatal 6 days,Both sexes,0.1
+2015,Neonatal 6 days,Males,0.1
+2015,Neonatal 6 days,Females,0.1
+2015,Neonatal 7 to 13 days,Both sexes,0.2
+2015,Neonatal 7 to 13 days,Males,0.3
+2015,Neonatal 7 to 13 days,Females,0.2
+2015,Neonatal 14 to 20 days,Both sexes,0.1
+2015,Neonatal 14 to 20 days,Males,0.1
+2015,Neonatal 14 to 20 days,Females,0.1
+2015,Neonatal 21 to 27 days,Both sexes,0.1
+2015,Neonatal 21 to 27 days,Males,0.1
+2015,Neonatal 21 to 27 days,Females,0.2
+2015,Post-neonatal 1 to 11 months,Both sexes,1
+2015,Post-neonatal 1 to 11 months,Males,1.1
+2015,Post-neonatal 1 to 11 months,Females,0.9
+2015,Post-neonatal 1 month,Both sexes,0.3
+2015,Post-neonatal 1 month,Males,0.3
+2015,Post-neonatal 1 month,Females,0.3
+2015,Post-neonatal 2 months,Both sexes,0.2
+2015,Post-neonatal 2 months,Males,0.2
+2015,Post-neonatal 2 months,Females,0.1
+2015,Post-neonatal 3 months,Both sexes,0.2
+2015,Post-neonatal 3 months,Males,0.2
+2015,Post-neonatal 3 months,Females,0.1
+2015,Post-neonatal 4 months,Both sexes,0.1
+2015,Post-neonatal 4 months,Males,0.1
+2015,Post-neonatal 4 months,Females,0.1
+2015,Post-neonatal 5 months,Both sexes,0.1
+2015,Post-neonatal 5 months,Males,0.1
+2015,Post-neonatal 5 months,Females,0.1
+2015,Post-neonatal 6 months,Both sexes,0.1
+2015,Post-neonatal 6 months,Males,0.1
+2015,Post-neonatal 6 months,Females,0.1
+2015,Post-neonatal 7 months,Both sexes,0
+2015,Post-neonatal 7 months,Males,0
+2015,Post-neonatal 7 months,Females,0
+2015,Post-neonatal 8 months,Both sexes,0
+2015,Post-neonatal 8 months,Males,0
+2015,Post-neonatal 8 months,Females,0
+2015,Post-neonatal 9 months,Both sexes,0
+2015,Post-neonatal 9 months,Males,0
+2015,Post-neonatal 9 months,Females,0
+2015,Post-neonatal 10 months,Both sexes,0
+2015,Post-neonatal 10 months,Males,0
+2015,Post-neonatal 10 months,Females,0
+2015,Post-neonatal 11 months,Both sexes,0
+2015,Post-neonatal 11 months,Males,0
+2015,Post-neonatal 11 months,Females,0
+2016,Total infant deaths under 1 year,Males,4.6
+2016,Total infant deaths under 1 year,Females,4.4
+2016,Neonatal 0 to 27 days,Both sexes,3.4
+2016,Neonatal 0 to 27 days,Males,3.4
+2016,Neonatal 0 to 27 days,Females,3.3
+2016,Neonatal under 1 day,Both sexes,2.3
+2016,Neonatal under 1 day,Males,2.4
+2016,Neonatal under 1 day,Females,2.3
+2016,Neonatal 1 day,Both sexes,0.1
+2016,Neonatal 1 day,Males,0.1
+2016,Neonatal 1 day,Females,0.1
+2016,Neonatal 2 days,Both sexes,0.1
+2016,Neonatal 2 days,Males,0.1
+2016,Neonatal 2 days,Females,0.1
+2016,Neonatal 3 days,Both sexes,0.1
+2016,Neonatal 3 days,Males,0.1
+2016,Neonatal 3 days,Females,0.1
+2016,Neonatal 4 days,Both sexes,0.1
+2016,Neonatal 4 days,Males,0.1
+2016,Neonatal 4 days,Females,0.1
+2016,Neonatal 5 days,Both sexes,0.1
+2016,Neonatal 5 days,Males,0.1
+2016,Neonatal 5 days,Females,0.1
+2016,Neonatal 6 days,Both sexes,0.1
+2016,Neonatal 6 days,Males,0
+2016,Neonatal 6 days,Females,0.1
+2016,Neonatal 7 to 13 days,Both sexes,0.2
+2016,Neonatal 7 to 13 days,Males,0.2
+2016,Neonatal 7 to 13 days,Females,0.3
+2016,Neonatal 14 to 20 days,Both sexes,0.1
+2016,Neonatal 14 to 20 days,Males,0.1
+2016,Neonatal 14 to 20 days,Females,0.1
+2016,Neonatal 21 to 27 days,Both sexes,0.1
+2016,Neonatal 21 to 27 days,Males,0.1
+2016,Neonatal 21 to 27 days,Females,0.1
+2016,Post-neonatal 1 to 11 months,Both sexes,1.2
+2016,Post-neonatal 1 to 11 months,Males,1.2
+2016,Post-neonatal 1 to 11 months,Females,1.1
+2016,Post-neonatal 1 month,Both sexes,0.4
+2016,Post-neonatal 1 month,Males,0.4
+2016,Post-neonatal 1 month,Females,0.3
+2016,Post-neonatal 2 months,Both sexes,0.2
+2016,Post-neonatal 2 months,Males,0.2
+2016,Post-neonatal 2 months,Females,0.2
+2016,Post-neonatal 3 months,Both sexes,0.2
+2016,Post-neonatal 3 months,Males,0.2
+2016,Post-neonatal 3 months,Females,0.2
+2016,Post-neonatal 4 months,Both sexes,0.1
+2016,Post-neonatal 4 months,Males,0.2
+2016,Post-neonatal 4 months,Females,0.1
+2016,Post-neonatal 5 months,Both sexes,0.1
+2016,Post-neonatal 5 months,Males,0.1
+2016,Post-neonatal 5 months,Females,0.1
+2016,Post-neonatal 6 months,Both sexes,0.1
+2016,Post-neonatal 6 months,Males,0.1
+2016,Post-neonatal 6 months,Females,0
+2016,Post-neonatal 7 months,Both sexes,0
+2016,Post-neonatal 7 months,Males,0
+2016,Post-neonatal 7 months,Females,0
+2016,Post-neonatal 8 months,Both sexes,0.1
+2016,Post-neonatal 8 months,Males,0.1
+2016,Post-neonatal 8 months,Females,0
+2016,Post-neonatal 9 months,Both sexes,0
+2016,Post-neonatal 9 months,Males,0
+2016,Post-neonatal 9 months,Females,0.1
+2016,Post-neonatal 10 months,Both sexes,0
+2016,Post-neonatal 10 months,Males,0
+2016,Post-neonatal 10 months,Females,0
+2016,Post-neonatal 11 months,Both sexes,0
+2016,Post-neonatal 11 months,Males,0
+2016,Post-neonatal 11 months,Females,0
+2017,Total infant deaths under 1 year,Males,4.8
+2017,Total infant deaths under 1 year,Females,4.2
+2017,Neonatal 0 to 27 days,Both sexes,3.5
+2017,Neonatal 0 to 27 days,Males,3.7
+2017,Neonatal 0 to 27 days,Females,3.2
+2017,Neonatal under 1 day,Both sexes,2.4
+2017,Neonatal under 1 day,Males,2.5
+2017,Neonatal under 1 day,Females,2.2
+2017,Neonatal 1 day,Both sexes,0.2
+2017,Neonatal 1 day,Males,0.3
+2017,Neonatal 1 day,Females,0.2
+2017,Neonatal 2 days,Both sexes,0.1
+2017,Neonatal 2 days,Males,0.1
+2017,Neonatal 2 days,Females,0.2
+2017,Neonatal 3 days,Both sexes,0.1
+2017,Neonatal 3 days,Males,0.1
+2017,Neonatal 3 days,Females,0.1
+2017,Neonatal 4 days,Both sexes,0.1
+2017,Neonatal 4 days,Males,0.1
+2017,Neonatal 4 days,Females,0.1
+2017,Neonatal 5 days,Both sexes,0.1
+2017,Neonatal 5 days,Males,0.1
+2017,Neonatal 5 days,Females,0
+2017,Neonatal 6 days,Both sexes,0.1
+2017,Neonatal 6 days,Males,0
+2017,Neonatal 6 days,Females,0.1
+2017,Neonatal 7 to 13 days,Both sexes,0.3
+2017,Neonatal 7 to 13 days,Males,0.3
+2017,Neonatal 7 to 13 days,Females,0.3
+2017,Neonatal 14 to 20 days,Both sexes,0.1
+2017,Neonatal 14 to 20 days,Males,0.1
+2017,Neonatal 14 to 20 days,Females,0.1
+2017,Neonatal 21 to 27 days,Both sexes,0.1
+2017,Neonatal 21 to 27 days,Males,0.1
+2017,Neonatal 21 to 27 days,Females,0.1
+2017,Post-neonatal 1 to 11 months,Both sexes,1
+2017,Post-neonatal 1 to 11 months,Males,1.1
+2017,Post-neonatal 1 to 11 months,Females,0.9
+2017,Post-neonatal 1 month,Both sexes,0.3
+2017,Post-neonatal 1 month,Males,0.3
+2017,Post-neonatal 1 month,Females,0.3
+2017,Post-neonatal 2 months,Both sexes,0.2
+2017,Post-neonatal 2 months,Males,0.2
+2017,Post-neonatal 2 months,Females,0.2
+2017,Post-neonatal 3 months,Both sexes,0.1
+2017,Post-neonatal 3 months,Males,0.1
+2017,Post-neonatal 3 months,Females,0.1
+2017,Post-neonatal 4 months,Both sexes,0.1
+2017,Post-neonatal 4 months,Males,0.1
+2017,Post-neonatal 4 months,Females,0.1
+2017,Post-neonatal 5 months,Both sexes,0.1
+2017,Post-neonatal 5 months,Males,0.1
+2017,Post-neonatal 5 months,Females,0.1
+2017,Post-neonatal 6 months,Both sexes,0.1
+2017,Post-neonatal 6 months,Males,0.1
+2017,Post-neonatal 6 months,Females,0
+2017,Post-neonatal 7 months,Both sexes,0
+2017,Post-neonatal 7 months,Males,0
+2017,Post-neonatal 7 months,Females,0
+2017,Post-neonatal 8 months,Both sexes,0.1
+2017,Post-neonatal 8 months,Males,0.1
+2017,Post-neonatal 8 months,Females,0
+2017,Post-neonatal 9 months,Both sexes,0
+2017,Post-neonatal 9 months,Males,0
+2017,Post-neonatal 9 months,Females,0
+2017,Post-neonatal 10 months,Both sexes,0
+2017,Post-neonatal 10 months,Males,0
+2017,Post-neonatal 10 months,Females,0
+2017,Post-neonatal 11 months,Both sexes,0
+2017,Post-neonatal 11 months,Males,0
+2017,Post-neonatal 11 months,Females,0
+2018,Total infant deaths under 1 year,Males,5
+2018,Total infant deaths under 1 year,Females,4.4
+2018,Neonatal 0 to 27 days,Both sexes,3.5
+2018,Neonatal 0 to 27 days,Males,3.8
+2018,Neonatal 0 to 27 days,Females,3.2
+2018,Neonatal under 1 day,Both sexes,2.4
+2018,Neonatal under 1 day,Males,2.6
+2018,Neonatal under 1 day,Females,2.1
+2018,Neonatal 1 day,Both sexes,0.2
+2018,Neonatal 1 day,Males,0.2
+2018,Neonatal 1 day,Females,0.1
+2018,Neonatal 2 days,Both sexes,0.1
+2018,Neonatal 2 days,Males,0.1
+2018,Neonatal 2 days,Females,0.1
+2018,Neonatal 3 days,Both sexes,0.1
+2018,Neonatal 3 days,Males,0.1
+2018,Neonatal 3 days,Females,0.1
+2018,Neonatal 4 days,Both sexes,0.1
+2018,Neonatal 4 days,Males,0.1
+2018,Neonatal 4 days,Females,0.1
+2018,Neonatal 5 days,Both sexes,0.1
+2018,Neonatal 5 days,Males,0.1
+2018,Neonatal 5 days,Females,0.1
+2018,Neonatal 6 days,Both sexes,0.1
+2018,Neonatal 6 days,Males,0.1
+2018,Neonatal 6 days,Females,0.1
+2018,Neonatal 7 to 13 days,Both sexes,0.2
+2018,Neonatal 7 to 13 days,Males,0.2
+2018,Neonatal 7 to 13 days,Females,0.2
+2018,Neonatal 14 to 20 days,Both sexes,0.2
+2018,Neonatal 14 to 20 days,Males,0.2
+2018,Neonatal 14 to 20 days,Females,0.2
+2018,Neonatal 21 to 27 days,Both sexes,0.1
+2018,Neonatal 21 to 27 days,Males,0.1
+2018,Neonatal 21 to 27 days,Females,0.1
+2018,Post-neonatal 1 to 11 months,Both sexes,1.2
+2018,Post-neonatal 1 to 11 months,Males,1.2
+2018,Post-neonatal 1 to 11 months,Females,1.1
+2018,Post-neonatal 1 month,Both sexes,0.4
+2018,Post-neonatal 1 month,Males,0.4
+2018,Post-neonatal 1 month,Females,0.4
+2018,Post-neonatal 2 months,Both sexes,0.2
+2018,Post-neonatal 2 months,Males,0.2
+2018,Post-neonatal 2 months,Females,0.2
+2018,Post-neonatal 3 months,Both sexes,0.1
+2018,Post-neonatal 3 months,Males,0.2
+2018,Post-neonatal 3 months,Females,0.1
+2018,Post-neonatal 4 months,Both sexes,0.1
+2018,Post-neonatal 4 months,Males,0.1
+2018,Post-neonatal 4 months,Females,0.1
+2018,Post-neonatal 5 months,Both sexes,0.1
+2018,Post-neonatal 5 months,Males,0.1
+2018,Post-neonatal 5 months,Females,0.1
+2018,Post-neonatal 6 months,Both sexes,0.1
+2018,Post-neonatal 6 months,Males,0
+2018,Post-neonatal 6 months,Females,0.1
+2018,Post-neonatal 7 months,Both sexes,0.1
+2018,Post-neonatal 7 months,Males,0.1
+2018,Post-neonatal 7 months,Females,0
+2018,Post-neonatal 8 months,Both sexes,0
+2018,Post-neonatal 8 months,Males,0
+2018,Post-neonatal 8 months,Females,0
+2018,Post-neonatal 9 months,Both sexes,0
+2018,Post-neonatal 9 months,Males,0
+2018,Post-neonatal 9 months,Females,0.1
+2018,Post-neonatal 10 months,Both sexes,0
+2018,Post-neonatal 10 months,Males,0
+2018,Post-neonatal 10 months,Females,0
+2018,Post-neonatal 11 months,Both sexes,0
+2018,Post-neonatal 11 months,Males,0
+2018,Post-neonatal 11 months,Females,0
+2019,Total infant deaths under 1 year,Males,4.9
+2019,Total infant deaths under 1 year,Females,3.9
+2019,Neonatal 0 to 27 days,Both sexes,3.3
+2019,Neonatal 0 to 27 days,Males,3.7
+2019,Neonatal 0 to 27 days,Females,2.9
+2019,Neonatal under 1 day,Both sexes,2.2
+2019,Neonatal under 1 day,Males,2.5
+2019,Neonatal under 1 day,Females,2
+2019,Neonatal 1 day,Both sexes,0.2
+2019,Neonatal 1 day,Males,0.2
+2019,Neonatal 1 day,Females,0.1
+2019,Neonatal 2 days,Both sexes,0.1
+2019,Neonatal 2 days,Males,0.1
+2019,Neonatal 2 days,Females,0.1
+2019,Neonatal 3 days,Both sexes,0.1
+2019,Neonatal 3 days,Males,0.1
+2019,Neonatal 3 days,Females,0.1
+2019,Neonatal 4 days,Both sexes,0.1
+2019,Neonatal 4 days,Males,0.1
+2019,Neonatal 4 days,Females,0
+2019,Neonatal 5 days,Both sexes,0.1
+2019,Neonatal 5 days,Males,0.1
+2019,Neonatal 5 days,Females,0.1
+2019,Neonatal 6 days,Both sexes,0.1
+2019,Neonatal 6 days,Males,0.1
+2019,Neonatal 6 days,Females,0
+2019,Neonatal 7 to 13 days,Both sexes,0.2
+2019,Neonatal 7 to 13 days,Males,0.3
+2019,Neonatal 7 to 13 days,Females,0.2
+2019,Neonatal 14 to 20 days,Both sexes,0.2
+2019,Neonatal 14 to 20 days,Males,0.2
+2019,Neonatal 14 to 20 days,Females,0.1
+2019,Neonatal 21 to 27 days,Both sexes,0.1
+2019,Neonatal 21 to 27 days,Males,0.1
+2019,Neonatal 21 to 27 days,Females,0.1
+2019,Post-neonatal 1 to 11 months,Both sexes,1.1
+2019,Post-neonatal 1 to 11 months,Males,1.1
+2019,Post-neonatal 1 to 11 months,Females,1
+2019,Post-neonatal 1 month,Both sexes,0.3
+2019,Post-neonatal 1 month,Males,0.4
+2019,Post-neonatal 1 month,Females,0.3
+2019,Post-neonatal 2 months,Both sexes,0.2
+2019,Post-neonatal 2 months,Males,0.2
+2019,Post-neonatal 2 months,Females,0.2
+2019,Post-neonatal 3 months,Both sexes,0.1
+2019,Post-neonatal 3 months,Males,0.1
+2019,Post-neonatal 3 months,Females,0.1
+2019,Post-neonatal 4 months,Both sexes,0.1
+2019,Post-neonatal 4 months,Males,0.1
+2019,Post-neonatal 4 months,Females,0.1
+2019,Post-neonatal 5 months,Both sexes,0.1
+2019,Post-neonatal 5 months,Males,0.1
+2019,Post-neonatal 5 months,Females,0
+2019,Post-neonatal 6 months,Both sexes,0.1
+2019,Post-neonatal 6 months,Males,0.1
+2019,Post-neonatal 6 months,Females,0.1
+2019,Post-neonatal 7 months,Both sexes,0
+2019,Post-neonatal 7 months,Males,0.1
+2019,Post-neonatal 7 months,Females,0
+2019,Post-neonatal 8 months,Both sexes,0
+2019,Post-neonatal 8 months,Males,0.1
+2019,Post-neonatal 8 months,Females,0
+2019,Post-neonatal 9 months,Both sexes,0
+2019,Post-neonatal 9 months,Males,0
+2019,Post-neonatal 9 months,Females,0
+2019,Post-neonatal 10 months,Both sexes,0
+2019,Post-neonatal 10 months,Males,0
+2019,Post-neonatal 10 months,Females,0
+2019,Post-neonatal 11 months,Both sexes,0
+2019,Post-neonatal 11 months,Males,0
+2019,Post-neonatal 11 months,Females,0
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-3-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-3-1.csv
new file mode 100644
index 00000000..11313b67
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-3-1.csv
@@ -0,0 +1,76 @@
+Year,Sex,Value
+1995,,9.96
+1996,,9.16
+1997,,8.06
+1998,,7.3
+1999,,6.89
+2000,,6.4
+2001,,6.75
+2002,,7.37
+2003,,7.34
+2004,,7.29
+2005,,7.13
+2006,,7.19
+2007,,6.88
+2008,,7.39
+2009,,6.57
+2010,,6.32
+2011,,6.18
+2012,,5.53
+2013,,5.5
+2014,,5.41
+2015,,5.44
+2016,,5.98
+2017,,5.88
+2018,,6.19
+2019,,5.64
+1995,Male,15.89
+1996,Male,14.19
+1997,Male,12.54
+1998,Male,11.19
+1999,Male,10.39
+2000,Male,9.71
+2001,Male,10.02
+2002,Male,11.03
+2003,Male,10.98
+2004,Male,10.78
+2005,Male,10.68
+2006,Male,10.52
+2007,Male,10.34
+2008,Male,11.08
+2009,Male,9.83
+2010,Male,9.69
+2011,Male,9.47
+2012,Male,8.56
+2013,Male,8.61
+2014,Male,8.24
+2015,Male,8.3
+2016,Male,9.17
+2017,Male,9.01
+2018,Male,8.94
+2019,Male,7.91
+1995,Female,3.61
+1996,Female,3.74
+1997,Female,3.21
+1998,Female,3.14
+1999,Female,3.3
+2000,Female,3.02
+2001,Female,3.4
+2002,Female,3.68
+2003,Female,3.66
+2004,Female,3.82
+2005,Female,3.57
+2006,Female,3.87
+2007,Female,3.41
+2008,Female,3.71
+2009,Female,3.32
+2010,Female,2.93
+2011,Female,2.85
+2012,Female,2.51
+2013,Female,2.37
+2014,Female,2.57
+2015,Female,2.6
+2016,Female,2.79
+2017,Female,2.77
+2018,Female,3.46
+2019,Female,3.38
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-3-2.csv b/tests/assets/progress-calculation/data/temp/indicator_3-3-2.csv
new file mode 100644
index 00000000..a971fa32
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-3-2.csv
@@ -0,0 +1,31 @@
+Year,Sex,Value
+2010,,4.66
+2011,,4.72
+2012,,4.9
+2013,,4.71
+2014,,4.56
+2015,,4.6
+2016,,4.88
+2017,,5.01
+2018,,4.85
+2019,,5.09
+2010,Female,4.2
+2011,Female,4.27
+2012,Female,4.03
+2013,Female,4.23
+2014,Female,3.95
+2015,Female,4.3
+2016,Female,4.44
+2017,Female,4.41
+2018,Female,4.45
+2019,Female,4.46
+2010,Male,5.13
+2011,Male,5.18
+2012,Male,5.78
+2013,Male,5.19
+2014,Male,5.17
+2015,Male,4.91
+2016,Male,5.33
+2017,Male,5.62
+2018,Male,5.24
+2019,Male,5.71
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-3-3.csv b/tests/assets/progress-calculation/data/temp/indicator_3-3-3.csv
new file mode 100644
index 00000000..8b1d0098
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-3-3.csv
@@ -0,0 +1,31 @@
+Year,Sex,Value
+2010,,1.51
+2011,,1.51
+2012,,1.38
+2013,,1.4
+2014,,1.27
+2015,,1.55
+2016,,1.69
+2017,,1.65
+2018,,1.62
+2019,,1.82
+2010,Male,2.09
+2011,Male,2.03
+2012,Male,1.91
+2013,Male,1.87
+2014,Male,1.67
+2015,Male,1.94
+2016,Male,2.07
+2017,Male,2.08
+2018,Male,2.07
+2019,Male,2.35
+2010,Female,0.93
+2011,Female,0.96
+2012,Female,0.86
+2013,Female,0.93
+2014,Female,0.86
+2015,Female,1.16
+2016,Female,1.32
+2017,Female,1.22
+2018,Female,1.15
+2019,Female,1.28
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-3-4.csv b/tests/assets/progress-calculation/data/temp/indicator_3-3-4.csv
new file mode 100644
index 00000000..cef2b697
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-3-4.csv
@@ -0,0 +1,31 @@
+Year,Sex,Value
+2010,,9.73
+2011,,16.37
+2012,,16.35
+2013,,16.26
+2014,,15.16
+2015,,14.03
+2016,,14.41
+2017,,13.98
+2018,,13.47
+2019,,12.73
+2010,Female,8.32
+2011,Female,14.24
+2012,Female,14.12
+2013,Female,14.25
+2014,Female,13.84
+2015,Female,11.83
+2016,Female,12.19
+2017,Female,11.82
+2018,Female,11.78
+2019,Female,11
+2010,Male,11.12
+2011,Male,18.47
+2012,Male,18.59
+2013,Male,18.29
+2014,Male,16.44
+2015,Male,16.17
+2016,Male,16.62
+2017,Male,16.12
+2018,Male,15.07
+2019,Male,14.22
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-3-5.csv b/tests/assets/progress-calculation/data/temp/indicator_3-3-5.csv
new file mode 100644
index 00000000..f4d70fc1
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-3-5.csv
@@ -0,0 +1,21 @@
+Year,Disease,Value
+2010,Leprosy,0.01
+2011,Leprosy,0.03
+2012,Leprosy,0.03
+2013,Leprosy,0.01
+2014,Leprosy,0.02
+2015,Leprosy,0.03
+2016,Leprosy,0.02
+2017,Leprosy,0.003
+2018,Leprosy,0.03
+2019,Leprosy,0.003
+2010,Rabies,0
+2011,Rabies,0
+2012,Rabies,0.003
+2013,Rabies,0
+2014,Rabies,0
+2015,Rabies,0
+2016,Rabies,0
+2017,Rabies,0
+2018,Rabies,0
+2019,Rabies,0.003
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-4-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-4-1.csv
new file mode 100644
index 00000000..9b114785
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-4-1.csv
@@ -0,0 +1,736 @@
+Year,Geography,Age at time of death,Sex,Causes of death,Value
+2015,Canada,30 to 34 years,Both sexes,Malignant neoplasms,16
+2015,Canada,30 to 34 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.1
+2015,Canada,30 to 34 years,Both sexes,Diabetes mellitus,1.2
+2015,Canada,30 to 34 years,Both sexes,Diseases of heart,5.1
+2015,Canada,30 to 34 years,Both sexes,Influenza and pneumonia,0.8
+2015,Canada,30 to 34 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2015,Canada,30 to 34 years,Both sexes,Chronic lower respiratory diseases,0.1
+2015,Canada,30 to 34 years,Males,Malignant neoplasms,11.1
+2015,Canada,30 to 34 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.1
+2015,Canada,30 to 34 years,Males,Diabetes mellitus,1.1
+2015,Canada,30 to 34 years,Males,Diseases of heart,5.2
+2015,Canada,30 to 34 years,Males,Influenza and pneumonia,0.6
+2015,Canada,30 to 34 years,Males,Acute bronchitis and bronchiolitis,0
+2015,Canada,30 to 34 years,Males,Chronic lower respiratory diseases,0
+2015,Canada,30 to 34 years,Females,Malignant neoplasms,25.6
+2015,Canada,30 to 34 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.2
+2015,Canada,30 to 34 years,Females,Diabetes mellitus,1.4
+2015,Canada,30 to 34 years,Females,Diseases of heart,4.9
+2015,Canada,30 to 34 years,Females,Influenza and pneumonia,1.2
+2015,Canada,30 to 34 years,Females,Acute bronchitis and bronchiolitis,0
+2015,Canada,30 to 34 years,Females,Chronic lower respiratory diseases,0.3
+2015,Canada,35 to 44 years,Both sexes,Malignant neoplasms,23.5
+2015,Canada,35 to 44 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2015,Canada,35 to 44 years,Both sexes,Diabetes mellitus,2.2
+2015,Canada,35 to 44 years,Both sexes,Diseases of heart,9.7
+2015,Canada,35 to 44 years,Both sexes,Influenza and pneumonia,1.2
+2015,Canada,35 to 44 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2015,Canada,35 to 44 years,Both sexes,Chronic lower respiratory diseases,0.6
+2015,Canada,35 to 44 years,Males,Malignant neoplasms,15.7
+2015,Canada,35 to 44 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2015,Canada,35 to 44 years,Males,Diabetes mellitus,2.5
+2015,Canada,35 to 44 years,Males,Diseases of heart,11.3
+2015,Canada,35 to 44 years,Males,Influenza and pneumonia,1.1
+2015,Canada,35 to 44 years,Males,Acute bronchitis and bronchiolitis,0
+2015,Canada,35 to 44 years,Males,Chronic lower respiratory diseases,0.3
+2015,Canada,35 to 44 years,Females,Malignant neoplasms,36.4
+2015,Canada,35 to 44 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2015,Canada,35 to 44 years,Females,Diabetes mellitus,1.7
+2015,Canada,35 to 44 years,Females,Diseases of heart,7
+2015,Canada,35 to 44 years,Females,Influenza and pneumonia,1.3
+2015,Canada,35 to 44 years,Females,Acute bronchitis and bronchiolitis,0
+2015,Canada,35 to 44 years,Females,Chronic lower respiratory diseases,1.1
+2015,Canada,45 to 54 years,Both sexes,Malignant neoplasms,35.8
+2015,Canada,45 to 54 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2015,Canada,45 to 54 years,Both sexes,Diabetes mellitus,2.6
+2015,Canada,45 to 54 years,Both sexes,Diseases of heart,14.8
+2015,Canada,45 to 54 years,Both sexes,Influenza and pneumonia,1.2
+2015,Canada,45 to 54 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2015,Canada,45 to 54 years,Both sexes,Chronic lower respiratory diseases,1.6
+2015,Canada,45 to 54 years,Males,Malignant neoplasms,27.4
+2015,Canada,45 to 54 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2015,Canada,45 to 54 years,Males,Diabetes mellitus,2.9
+2015,Canada,45 to 54 years,Males,Diseases of heart,18.8
+2015,Canada,45 to 54 years,Males,Influenza and pneumonia,1
+2015,Canada,45 to 54 years,Males,Acute bronchitis and bronchiolitis,0
+2015,Canada,45 to 54 years,Males,Chronic lower respiratory diseases,1.4
+2015,Canada,45 to 54 years,Females,Malignant neoplasms,48.5
+2015,Canada,45 to 54 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2015,Canada,45 to 54 years,Females,Diabetes mellitus,2.1
+2015,Canada,45 to 54 years,Females,Diseases of heart,8.7
+2015,Canada,45 to 54 years,Females,Influenza and pneumonia,1.4
+2015,Canada,45 to 54 years,Females,Acute bronchitis and bronchiolitis,0
+2015,Canada,45 to 54 years,Females,Chronic lower respiratory diseases,2
+2015,Canada,55 to 64 years,Both sexes,Malignant neoplasms,45.4
+2015,Canada,55 to 64 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2015,Canada,55 to 64 years,Both sexes,Diabetes mellitus,2.8
+2015,Canada,55 to 64 years,Both sexes,Diseases of heart,16.8
+2015,Canada,55 to 64 years,Both sexes,Influenza and pneumonia,1.2
+2015,Canada,55 to 64 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2015,Canada,55 to 64 years,Both sexes,Chronic lower respiratory diseases,3.3
+2015,Canada,55 to 64 years,Males,Malignant neoplasms,39.6
+2015,Canada,55 to 64 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2015,Canada,55 to 64 years,Males,Diabetes mellitus,3.1
+2015,Canada,55 to 64 years,Males,Diseases of heart,20.6
+2015,Canada,55 to 64 years,Males,Influenza and pneumonia,1
+2015,Canada,55 to 64 years,Males,Acute bronchitis and bronchiolitis,0
+2015,Canada,55 to 64 years,Males,Chronic lower respiratory diseases,3.1
+2015,Canada,55 to 64 years,Females,Malignant neoplasms,54.3
+2015,Canada,55 to 64 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2015,Canada,55 to 64 years,Females,Diabetes mellitus,2.4
+2015,Canada,55 to 64 years,Females,Diseases of heart,11
+2015,Canada,55 to 64 years,Females,Influenza and pneumonia,1.4
+2015,Canada,55 to 64 years,Females,Acute bronchitis and bronchiolitis,0
+2015,Canada,55 to 64 years,Females,Chronic lower respiratory diseases,3.6
+2015,Canada,65 to 74 years,Both sexes,Malignant neoplasms,44.3
+2015,Canada,65 to 74 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2015,Canada,65 to 74 years,Both sexes,Diabetes mellitus,3.4
+2015,Canada,65 to 74 years,Both sexes,Diseases of heart,17.4
+2015,Canada,65 to 74 years,Both sexes,Influenza and pneumonia,1.5
+2015,Canada,65 to 74 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2015,Canada,65 to 74 years,Both sexes,Chronic lower respiratory diseases,5.6
+2015,Canada,65 to 74 years,Males,Malignant neoplasms,41.8
+2015,Canada,65 to 74 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2015,Canada,65 to 74 years,Males,Diabetes mellitus,3.7
+2015,Canada,65 to 74 years,Males,Diseases of heart,20.1
+2015,Canada,65 to 74 years,Males,Influenza and pneumonia,1.5
+2015,Canada,65 to 74 years,Males,Acute bronchitis and bronchiolitis,0
+2015,Canada,65 to 74 years,Males,Chronic lower respiratory diseases,5
+2015,Canada,65 to 74 years,Females,Malignant neoplasms,47.8
+2015,Canada,65 to 74 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2015,Canada,65 to 74 years,Females,Diabetes mellitus,2.8
+2015,Canada,65 to 74 years,Females,Diseases of heart,13.6
+2015,Canada,65 to 74 years,Females,Influenza and pneumonia,1.5
+2015,Canada,65 to 74 years,Females,Acute bronchitis and bronchiolitis,0
+2015,Canada,65 to 74 years,Females,Chronic lower respiratory diseases,6.5
+2015,Canada,75 to 84 years,Both sexes,Malignant neoplasms,32.1
+2015,Canada,75 to 84 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
+2015,Canada,75 to 84 years,Both sexes,Diabetes mellitus,3.1
+2015,Canada,75 to 84 years,Both sexes,Diseases of heart,19.2
+2015,Canada,75 to 84 years,Both sexes,Influenza and pneumonia,2.6
+2015,Canada,75 to 84 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2015,Canada,75 to 84 years,Both sexes,Chronic lower respiratory diseases,6.2
+2015,Canada,75 to 84 years,Males,Malignant neoplasms,32.9
+2015,Canada,75 to 84 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.9
+2015,Canada,75 to 84 years,Males,Diabetes mellitus,3.1
+2015,Canada,75 to 84 years,Males,Diseases of heart,20.5
+2015,Canada,75 to 84 years,Males,Influenza and pneumonia,2.5
+2015,Canada,75 to 84 years,Males,Acute bronchitis and bronchiolitis,0
+2015,Canada,75 to 84 years,Males,Chronic lower respiratory diseases,5.8
+2015,Canada,75 to 84 years,Females,Malignant neoplasms,31.2
+2015,Canada,75 to 84 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
+2015,Canada,75 to 84 years,Females,Diabetes mellitus,2.9
+2015,Canada,75 to 84 years,Females,Diseases of heart,17.8
+2015,Canada,75 to 84 years,Females,Influenza and pneumonia,2.6
+2015,Canada,75 to 84 years,Females,Acute bronchitis and bronchiolitis,0
+2015,Canada,75 to 84 years,Females,Chronic lower respiratory diseases,6.6
+2015,Canada,85 and over,Both sexes,Malignant neoplasms,15.8
+2015,Canada,85 and over,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2015,Canada,85 and over,Both sexes,Diabetes mellitus,2.3
+2015,Canada,85 and over,Both sexes,Diseases of heart,23.9
+2015,Canada,85 and over,Both sexes,Influenza and pneumonia,4.8
+2015,Canada,85 and over,Both sexes,Acute bronchitis and bronchiolitis,0
+2015,Canada,85 and over,Both sexes,Chronic lower respiratory diseases,4.8
+2015,Canada,85 and over,Males,Malignant neoplasms,19.7
+2015,Canada,85 and over,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2015,Canada,85 and over,Males,Diabetes mellitus,2.5
+2015,Canada,85 and over,Males,Diseases of heart,24
+2015,Canada,85 and over,Males,Influenza and pneumonia,4.7
+2015,Canada,85 and over,Males,Acute bronchitis and bronchiolitis,0
+2015,Canada,85 and over,Males,Chronic lower respiratory diseases,5.7
+2015,Canada,85 and over,Females,Malignant neoplasms,13.4
+2015,Canada,85 and over,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2015,Canada,85 and over,Females,Diabetes mellitus,2.2
+2015,Canada,85 and over,Females,Diseases of heart,23.9
+2015,Canada,85 and over,Females,Influenza and pneumonia,4.8
+2015,Canada,85 and over,Females,Acute bronchitis and bronchiolitis,0
+2015,Canada,85 and over,Females,Chronic lower respiratory diseases,4.2
+2016,Canada,30 to 34 years,Both sexes,Malignant neoplasms,11.9
+2016,Canada,30 to 34 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2016,Canada,30 to 34 years,Both sexes,Diabetes mellitus,1.4
+2016,Canada,30 to 34 years,Both sexes,Diseases of heart,5
+2016,Canada,30 to 34 years,Both sexes,Influenza and pneumonia,0.7
+2016,Canada,30 to 34 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2016,Canada,30 to 34 years,Both sexes,Chronic lower respiratory diseases,0.5
+2016,Canada,30 to 34 years,Males,Malignant neoplasms,7.4
+2016,Canada,30 to 34 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2016,Canada,30 to 34 years,Males,Diabetes mellitus,1.6
+2016,Canada,30 to 34 years,Males,Diseases of heart,5.3
+2016,Canada,30 to 34 years,Males,Influenza and pneumonia,0.5
+2016,Canada,30 to 34 years,Males,Acute bronchitis and bronchiolitis,0
+2016,Canada,30 to 34 years,Males,Chronic lower respiratory diseases,0.4
+2016,Canada,30 to 34 years,Females,Malignant neoplasms,21.4
+2016,Canada,30 to 34 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.2
+2016,Canada,30 to 34 years,Females,Diabetes mellitus,1.2
+2016,Canada,30 to 34 years,Females,Diseases of heart,4.5
+2016,Canada,30 to 34 years,Females,Influenza and pneumonia,1.2
+2016,Canada,30 to 34 years,Females,Acute bronchitis and bronchiolitis,0
+2016,Canada,30 to 34 years,Females,Chronic lower respiratory diseases,0.7
+2016,Canada,35 to 44 years,Both sexes,Malignant neoplasms,23.1
+2016,Canada,35 to 44 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2016,Canada,35 to 44 years,Both sexes,Diabetes mellitus,1.8
+2016,Canada,35 to 44 years,Both sexes,Diseases of heart,9.1
+2016,Canada,35 to 44 years,Both sexes,Influenza and pneumonia,1.4
+2016,Canada,35 to 44 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2016,Canada,35 to 44 years,Both sexes,Chronic lower respiratory diseases,0.4
+2016,Canada,35 to 44 years,Males,Malignant neoplasms,15.5
+2016,Canada,35 to 44 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2016,Canada,35 to 44 years,Males,Diabetes mellitus,1.8
+2016,Canada,35 to 44 years,Males,Diseases of heart,10.4
+2016,Canada,35 to 44 years,Males,Influenza and pneumonia,1.1
+2016,Canada,35 to 44 years,Males,Acute bronchitis and bronchiolitis,0
+2016,Canada,35 to 44 years,Males,Chronic lower respiratory diseases,0.2
+2016,Canada,35 to 44 years,Females,Malignant neoplasms,35.5
+2016,Canada,35 to 44 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2016,Canada,35 to 44 years,Females,Diabetes mellitus,1.9
+2016,Canada,35 to 44 years,Females,Diseases of heart,6.9
+2016,Canada,35 to 44 years,Females,Influenza and pneumonia,1.9
+2016,Canada,35 to 44 years,Females,Acute bronchitis and bronchiolitis,0
+2016,Canada,35 to 44 years,Females,Chronic lower respiratory diseases,0.7
+2016,Canada,45 to 54 years,Both sexes,Malignant neoplasms,34.5
+2016,Canada,45 to 54 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2016,Canada,45 to 54 years,Both sexes,Diabetes mellitus,2.5
+2016,Canada,45 to 54 years,Both sexes,Diseases of heart,14.7
+2016,Canada,45 to 54 years,Both sexes,Influenza and pneumonia,1.4
+2016,Canada,45 to 54 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2016,Canada,45 to 54 years,Both sexes,Chronic lower respiratory diseases,1.3
+2016,Canada,45 to 54 years,Males,Malignant neoplasms,26
+2016,Canada,45 to 54 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2016,Canada,45 to 54 years,Males,Diabetes mellitus,2.8
+2016,Canada,45 to 54 years,Males,Diseases of heart,18.6
+2016,Canada,45 to 54 years,Males,Influenza and pneumonia,1.4
+2016,Canada,45 to 54 years,Males,Acute bronchitis and bronchiolitis,0
+2016,Canada,45 to 54 years,Males,Chronic lower respiratory diseases,1
+2016,Canada,45 to 54 years,Females,Malignant neoplasms,47.1
+2016,Canada,45 to 54 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2016,Canada,45 to 54 years,Females,Diabetes mellitus,2
+2016,Canada,45 to 54 years,Females,Diseases of heart,8.9
+2016,Canada,45 to 54 years,Females,Influenza and pneumonia,1.5
+2016,Canada,45 to 54 years,Females,Acute bronchitis and bronchiolitis,0
+2016,Canada,45 to 54 years,Females,Chronic lower respiratory diseases,1.6
+2016,Canada,55 to 64 years,Both sexes,Malignant neoplasms,44.1
+2016,Canada,55 to 64 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2016,Canada,55 to 64 years,Both sexes,Diabetes mellitus,2.6
+2016,Canada,55 to 64 years,Both sexes,Diseases of heart,16.8
+2016,Canada,55 to 64 years,Both sexes,Influenza and pneumonia,1.4
+2016,Canada,55 to 64 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2016,Canada,55 to 64 years,Both sexes,Chronic lower respiratory diseases,3.2
+2016,Canada,55 to 64 years,Males,Malignant neoplasms,38.5
+2016,Canada,55 to 64 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2016,Canada,55 to 64 years,Males,Diabetes mellitus,2.9
+2016,Canada,55 to 64 years,Males,Diseases of heart,20.8
+2016,Canada,55 to 64 years,Males,Influenza and pneumonia,1.4
+2016,Canada,55 to 64 years,Males,Acute bronchitis and bronchiolitis,0
+2016,Canada,55 to 64 years,Males,Chronic lower respiratory diseases,3
+2016,Canada,55 to 64 years,Females,Malignant neoplasms,52.8
+2016,Canada,55 to 64 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2016,Canada,55 to 64 years,Females,Diabetes mellitus,2.3
+2016,Canada,55 to 64 years,Females,Diseases of heart,10.7
+2016,Canada,55 to 64 years,Females,Influenza and pneumonia,1.4
+2016,Canada,55 to 64 years,Females,Acute bronchitis and bronchiolitis,0
+2016,Canada,55 to 64 years,Females,Chronic lower respiratory diseases,3.7
+2016,Canada,65 to 74 years,Both sexes,Malignant neoplasms,44.5
+2016,Canada,65 to 74 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2016,Canada,65 to 74 years,Both sexes,Diabetes mellitus,3.1
+2016,Canada,65 to 74 years,Both sexes,Diseases of heart,17.2
+2016,Canada,65 to 74 years,Both sexes,Influenza and pneumonia,1.4
+2016,Canada,65 to 74 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2016,Canada,65 to 74 years,Both sexes,Chronic lower respiratory diseases,5.5
+2016,Canada,65 to 74 years,Males,Malignant neoplasms,41.7
+2016,Canada,65 to 74 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2016,Canada,65 to 74 years,Males,Diabetes mellitus,3.3
+2016,Canada,65 to 74 years,Males,Diseases of heart,19.7
+2016,Canada,65 to 74 years,Males,Influenza and pneumonia,1.4
+2016,Canada,65 to 74 years,Males,Acute bronchitis and bronchiolitis,0
+2016,Canada,65 to 74 years,Males,Chronic lower respiratory diseases,5
+2016,Canada,65 to 74 years,Females,Malignant neoplasms,48.3
+2016,Canada,65 to 74 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2016,Canada,65 to 74 years,Females,Diabetes mellitus,2.7
+2016,Canada,65 to 74 years,Females,Diseases of heart,13.6
+2016,Canada,65 to 74 years,Females,Influenza and pneumonia,1.4
+2016,Canada,65 to 74 years,Females,Acute bronchitis and bronchiolitis,0
+2016,Canada,65 to 74 years,Females,Chronic lower respiratory diseases,6.2
+2016,Canada,75 to 84 years,Both sexes,Malignant neoplasms,33.3
+2016,Canada,75 to 84 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
+2016,Canada,75 to 84 years,Both sexes,Diabetes mellitus,2.9
+2016,Canada,75 to 84 years,Both sexes,Diseases of heart,19.2
+2016,Canada,75 to 84 years,Both sexes,Influenza and pneumonia,2
+2016,Canada,75 to 84 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2016,Canada,75 to 84 years,Both sexes,Chronic lower respiratory diseases,6.1
+2016,Canada,75 to 84 years,Males,Malignant neoplasms,34
+2016,Canada,75 to 84 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
+2016,Canada,75 to 84 years,Males,Diabetes mellitus,2.9
+2016,Canada,75 to 84 years,Males,Diseases of heart,20.6
+2016,Canada,75 to 84 years,Males,Influenza and pneumonia,2
+2016,Canada,75 to 84 years,Males,Acute bronchitis and bronchiolitis,0
+2016,Canada,75 to 84 years,Males,Chronic lower respiratory diseases,5.7
+2016,Canada,75 to 84 years,Females,Malignant neoplasms,32.4
+2016,Canada,75 to 84 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
+2016,Canada,75 to 84 years,Females,Diabetes mellitus,2.8
+2016,Canada,75 to 84 years,Females,Diseases of heart,17.6
+2016,Canada,75 to 84 years,Females,Influenza and pneumonia,2
+2016,Canada,75 to 84 years,Females,Acute bronchitis and bronchiolitis,0
+2016,Canada,75 to 84 years,Females,Chronic lower respiratory diseases,6.5
+2016,Canada,85 and over,Both sexes,Malignant neoplasms,16.8
+2016,Canada,85 and over,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2016,Canada,85 and over,Both sexes,Diabetes mellitus,2.3
+2016,Canada,85 and over,Both sexes,Diseases of heart,23.5
+2016,Canada,85 and over,Both sexes,Influenza and pneumonia,3.6
+2016,Canada,85 and over,Both sexes,Acute bronchitis and bronchiolitis,0
+2016,Canada,85 and over,Both sexes,Chronic lower respiratory diseases,4.5
+2016,Canada,85 and over,Males,Malignant neoplasms,20.6
+2016,Canada,85 and over,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
+2016,Canada,85 and over,Males,Diabetes mellitus,2.3
+2016,Canada,85 and over,Males,Diseases of heart,23.5
+2016,Canada,85 and over,Males,Influenza and pneumonia,3.7
+2016,Canada,85 and over,Males,Acute bronchitis and bronchiolitis,0
+2016,Canada,85 and over,Males,Chronic lower respiratory diseases,5.4
+2016,Canada,85 and over,Females,Malignant neoplasms,14.3
+2016,Canada,85 and over,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2016,Canada,85 and over,Females,Diabetes mellitus,2.2
+2016,Canada,85 and over,Females,Diseases of heart,23.4
+2016,Canada,85 and over,Females,Influenza and pneumonia,3.5
+2016,Canada,85 and over,Females,Acute bronchitis and bronchiolitis,0
+2016,Canada,85 and over,Females,Chronic lower respiratory diseases,4
+2017,Canada,30 to 34 years,Both sexes,Malignant neoplasms,10.7
+2017,Canada,30 to 34 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.2
+2017,Canada,30 to 34 years,Both sexes,Diabetes mellitus,1.6
+2017,Canada,30 to 34 years,Both sexes,Diseases of heart,4.8
+2017,Canada,30 to 34 years,Both sexes,Influenza and pneumonia,0.6
+2017,Canada,30 to 34 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2017,Canada,30 to 34 years,Both sexes,Chronic lower respiratory diseases,0.4
+2017,Canada,30 to 34 years,Males,Malignant neoplasms,7.4
+2017,Canada,30 to 34 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.1
+2017,Canada,30 to 34 years,Males,Diabetes mellitus,1.3
+2017,Canada,30 to 34 years,Males,Diseases of heart,4.6
+2017,Canada,30 to 34 years,Males,Influenza and pneumonia,0.5
+2017,Canada,30 to 34 years,Males,Acute bronchitis and bronchiolitis,0
+2017,Canada,30 to 34 years,Males,Chronic lower respiratory diseases,0.3
+2017,Canada,30 to 34 years,Females,Malignant neoplasms,18.2
+2017,Canada,30 to 34 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2017,Canada,30 to 34 years,Females,Diabetes mellitus,2.4
+2017,Canada,30 to 34 years,Females,Diseases of heart,5.2
+2017,Canada,30 to 34 years,Females,Influenza and pneumonia,0.9
+2017,Canada,30 to 34 years,Females,Acute bronchitis and bronchiolitis,0
+2017,Canada,30 to 34 years,Females,Chronic lower respiratory diseases,0.8
+2017,Canada,35 to 44 years,Both sexes,Malignant neoplasms,21.5
+2017,Canada,35 to 44 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2017,Canada,35 to 44 years,Both sexes,Diabetes mellitus,1.8
+2017,Canada,35 to 44 years,Both sexes,Diseases of heart,8.9
+2017,Canada,35 to 44 years,Both sexes,Influenza and pneumonia,0.8
+2017,Canada,35 to 44 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2017,Canada,35 to 44 years,Both sexes,Chronic lower respiratory diseases,0.3
+2017,Canada,35 to 44 years,Males,Malignant neoplasms,13.9
+2017,Canada,35 to 44 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2017,Canada,35 to 44 years,Males,Diabetes mellitus,1.8
+2017,Canada,35 to 44 years,Males,Diseases of heart,10.1
+2017,Canada,35 to 44 years,Males,Influenza and pneumonia,0.7
+2017,Canada,35 to 44 years,Males,Acute bronchitis and bronchiolitis,0
+2017,Canada,35 to 44 years,Males,Chronic lower respiratory diseases,0.3
+2017,Canada,35 to 44 years,Females,Malignant neoplasms,35.4
+2017,Canada,35 to 44 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2017,Canada,35 to 44 years,Females,Diabetes mellitus,1.9
+2017,Canada,35 to 44 years,Females,Diseases of heart,6.6
+2017,Canada,35 to 44 years,Females,Influenza and pneumonia,1
+2017,Canada,35 to 44 years,Females,Acute bronchitis and bronchiolitis,0
+2017,Canada,35 to 44 years,Females,Chronic lower respiratory diseases,0.3
+2017,Canada,45 to 54 years,Both sexes,Malignant neoplasms,34.7
+2017,Canada,45 to 54 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2017,Canada,45 to 54 years,Both sexes,Diabetes mellitus,2.5
+2017,Canada,45 to 54 years,Both sexes,Diseases of heart,14
+2017,Canada,45 to 54 years,Both sexes,Influenza and pneumonia,1.2
+2017,Canada,45 to 54 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2017,Canada,45 to 54 years,Both sexes,Chronic lower respiratory diseases,1.6
+2017,Canada,45 to 54 years,Males,Malignant neoplasms,27.1
+2017,Canada,45 to 54 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2017,Canada,45 to 54 years,Males,Diabetes mellitus,2.7
+2017,Canada,45 to 54 years,Males,Diseases of heart,17.9
+2017,Canada,45 to 54 years,Males,Influenza and pneumonia,1.1
+2017,Canada,45 to 54 years,Males,Acute bronchitis and bronchiolitis,0
+2017,Canada,45 to 54 years,Males,Chronic lower respiratory diseases,1.4
+2017,Canada,45 to 54 years,Females,Malignant neoplasms,46.5
+2017,Canada,45 to 54 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2017,Canada,45 to 54 years,Females,Diabetes mellitus,2.2
+2017,Canada,45 to 54 years,Females,Diseases of heart,8.1
+2017,Canada,45 to 54 years,Females,Influenza and pneumonia,1.3
+2017,Canada,45 to 54 years,Females,Acute bronchitis and bronchiolitis,0
+2017,Canada,45 to 54 years,Females,Chronic lower respiratory diseases,1.8
+2017,Canada,55 to 64 years,Both sexes,Malignant neoplasms,44.3
+2017,Canada,55 to 64 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2017,Canada,55 to 64 years,Both sexes,Diabetes mellitus,2.8
+2017,Canada,55 to 64 years,Both sexes,Diseases of heart,16.8
+2017,Canada,55 to 64 years,Both sexes,Influenza and pneumonia,1.2
+2017,Canada,55 to 64 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2017,Canada,55 to 64 years,Both sexes,Chronic lower respiratory diseases,3.3
+2017,Canada,55 to 64 years,Males,Malignant neoplasms,38.9
+2017,Canada,55 to 64 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2017,Canada,55 to 64 years,Males,Diabetes mellitus,3.1
+2017,Canada,55 to 64 years,Males,Diseases of heart,20.8
+2017,Canada,55 to 64 years,Males,Influenza and pneumonia,1.1
+2017,Canada,55 to 64 years,Males,Acute bronchitis and bronchiolitis,0
+2017,Canada,55 to 64 years,Males,Chronic lower respiratory diseases,2.9
+2017,Canada,55 to 64 years,Females,Malignant neoplasms,52.4
+2017,Canada,55 to 64 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2017,Canada,55 to 64 years,Females,Diabetes mellitus,2.2
+2017,Canada,55 to 64 years,Females,Diseases of heart,10.9
+2017,Canada,55 to 64 years,Females,Influenza and pneumonia,1.4
+2017,Canada,55 to 64 years,Females,Acute bronchitis and bronchiolitis,0
+2017,Canada,55 to 64 years,Females,Chronic lower respiratory diseases,4
+2017,Canada,65 to 74 years,Both sexes,Malignant neoplasms,43.6
+2017,Canada,65 to 74 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2017,Canada,65 to 74 years,Both sexes,Diabetes mellitus,3.1
+2017,Canada,65 to 74 years,Both sexes,Diseases of heart,17.4
+2017,Canada,65 to 74 years,Both sexes,Influenza and pneumonia,1.4
+2017,Canada,65 to 74 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2017,Canada,65 to 74 years,Both sexes,Chronic lower respiratory diseases,5.7
+2017,Canada,65 to 74 years,Males,Malignant neoplasms,41
+2017,Canada,65 to 74 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2017,Canada,65 to 74 years,Males,Diabetes mellitus,3.3
+2017,Canada,65 to 74 years,Males,Diseases of heart,20.2
+2017,Canada,65 to 74 years,Males,Influenza and pneumonia,1.4
+2017,Canada,65 to 74 years,Males,Acute bronchitis and bronchiolitis,0
+2017,Canada,65 to 74 years,Males,Chronic lower respiratory diseases,5.1
+2017,Canada,65 to 74 years,Females,Malignant neoplasms,47.3
+2017,Canada,65 to 74 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2017,Canada,65 to 74 years,Females,Diabetes mellitus,2.7
+2017,Canada,65 to 74 years,Females,Diseases of heart,13.4
+2017,Canada,65 to 74 years,Females,Influenza and pneumonia,1.4
+2017,Canada,65 to 74 years,Females,Acute bronchitis and bronchiolitis,0
+2017,Canada,65 to 74 years,Females,Chronic lower respiratory diseases,6.6
+2017,Canada,75 to 84 years,Both sexes,Malignant neoplasms,32.7
+2017,Canada,75 to 84 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
+2017,Canada,75 to 84 years,Both sexes,Diabetes mellitus,2.8
+2017,Canada,75 to 84 years,Both sexes,Diseases of heart,18.9
+2017,Canada,75 to 84 years,Both sexes,Influenza and pneumonia,2.3
+2017,Canada,75 to 84 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2017,Canada,75 to 84 years,Both sexes,Chronic lower respiratory diseases,6
+2017,Canada,75 to 84 years,Males,Malignant neoplasms,33.4
+2017,Canada,75 to 84 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
+2017,Canada,75 to 84 years,Males,Diabetes mellitus,3.1
+2017,Canada,75 to 84 years,Males,Diseases of heart,20.4
+2017,Canada,75 to 84 years,Males,Influenza and pneumonia,2.1
+2017,Canada,75 to 84 years,Males,Acute bronchitis and bronchiolitis,0
+2017,Canada,75 to 84 years,Males,Chronic lower respiratory diseases,5.5
+2017,Canada,75 to 84 years,Females,Malignant neoplasms,31.9
+2017,Canada,75 to 84 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2017,Canada,75 to 84 years,Females,Diabetes mellitus,2.5
+2017,Canada,75 to 84 years,Females,Diseases of heart,17.2
+2017,Canada,75 to 84 years,Females,Influenza and pneumonia,2.6
+2017,Canada,75 to 84 years,Females,Acute bronchitis and bronchiolitis,0
+2017,Canada,75 to 84 years,Females,Chronic lower respiratory diseases,6.6
+2017,Canada,85 and over,Both sexes,Malignant neoplasms,16.1
+2017,Canada,85 and over,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2017,Canada,85 and over,Both sexes,Diabetes mellitus,2.1
+2017,Canada,85 and over,Both sexes,Diseases of heart,23.3
+2017,Canada,85 and over,Both sexes,Influenza and pneumonia,4.3
+2017,Canada,85 and over,Both sexes,Acute bronchitis and bronchiolitis,0
+2017,Canada,85 and over,Both sexes,Chronic lower respiratory diseases,4.5
+2017,Canada,85 and over,Males,Malignant neoplasms,19.7
+2017,Canada,85 and over,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
+2017,Canada,85 and over,Males,Diabetes mellitus,2.3
+2017,Canada,85 and over,Males,Diseases of heart,23.6
+2017,Canada,85 and over,Males,Influenza and pneumonia,4.3
+2017,Canada,85 and over,Males,Acute bronchitis and bronchiolitis,0
+2017,Canada,85 and over,Males,Chronic lower respiratory diseases,5.2
+2017,Canada,85 and over,Females,Malignant neoplasms,13.8
+2017,Canada,85 and over,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2017,Canada,85 and over,Females,Diabetes mellitus,1.9
+2017,Canada,85 and over,Females,Diseases of heart,23.1
+2017,Canada,85 and over,Females,Influenza and pneumonia,4.3
+2017,Canada,85 and over,Females,Acute bronchitis and bronchiolitis,0
+2017,Canada,85 and over,Females,Chronic lower respiratory diseases,4.1
+2018,Canada,30 to 34 years,Both sexes,Malignant neoplasms,10.4
+2018,Canada,30 to 34 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2018,Canada,30 to 34 years,Both sexes,Diabetes mellitus,1.2
+2018,Canada,30 to 34 years,Both sexes,Diseases of heart,4.1
+2018,Canada,30 to 34 years,Both sexes,Influenza and pneumonia,0.9
+2018,Canada,30 to 34 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2018,Canada,30 to 34 years,Both sexes,Chronic lower respiratory diseases,0.3
+2018,Canada,30 to 34 years,Males,Malignant neoplasms,6.2
+2018,Canada,30 to 34 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2018,Canada,30 to 34 years,Males,Diabetes mellitus,0.9
+2018,Canada,30 to 34 years,Males,Diseases of heart,4.3
+2018,Canada,30 to 34 years,Males,Influenza and pneumonia,0.5
+2018,Canada,30 to 34 years,Males,Acute bronchitis and bronchiolitis,0
+2018,Canada,30 to 34 years,Males,Chronic lower respiratory diseases,0.4
+2018,Canada,30 to 34 years,Females,Malignant neoplasms,19.2
+2018,Canada,30 to 34 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2018,Canada,30 to 34 years,Females,Diabetes mellitus,1.7
+2018,Canada,30 to 34 years,Females,Diseases of heart,3.6
+2018,Canada,30 to 34 years,Females,Influenza and pneumonia,1.7
+2018,Canada,30 to 34 years,Females,Acute bronchitis and bronchiolitis,0
+2018,Canada,30 to 34 years,Females,Chronic lower respiratory diseases,0.3
+2018,Canada,35 to 44 years,Both sexes,Malignant neoplasms,19.5
+2018,Canada,35 to 44 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2018,Canada,35 to 44 years,Both sexes,Diabetes mellitus,1.9
+2018,Canada,35 to 44 years,Both sexes,Diseases of heart,7.7
+2018,Canada,35 to 44 years,Both sexes,Influenza and pneumonia,1.1
+2018,Canada,35 to 44 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2018,Canada,35 to 44 years,Both sexes,Chronic lower respiratory diseases,0.4
+2018,Canada,35 to 44 years,Males,Malignant neoplasms,13
+2018,Canada,35 to 44 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2018,Canada,35 to 44 years,Males,Diabetes mellitus,1.7
+2018,Canada,35 to 44 years,Males,Diseases of heart,8.5
+2018,Canada,35 to 44 years,Males,Influenza and pneumonia,1
+2018,Canada,35 to 44 years,Males,Acute bronchitis and bronchiolitis,0
+2018,Canada,35 to 44 years,Males,Chronic lower respiratory diseases,0.4
+2018,Canada,35 to 44 years,Females,Malignant neoplasms,31.2
+2018,Canada,35 to 44 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2018,Canada,35 to 44 years,Females,Diabetes mellitus,2.2
+2018,Canada,35 to 44 years,Females,Diseases of heart,6.4
+2018,Canada,35 to 44 years,Females,Influenza and pneumonia,1.4
+2018,Canada,35 to 44 years,Females,Acute bronchitis and bronchiolitis,0
+2018,Canada,35 to 44 years,Females,Chronic lower respiratory diseases,0.4
+2018,Canada,45 to 54 years,Both sexes,Malignant neoplasms,31.8
+2018,Canada,45 to 54 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2018,Canada,45 to 54 years,Both sexes,Diabetes mellitus,2.7
+2018,Canada,45 to 54 years,Both sexes,Diseases of heart,13.2
+2018,Canada,45 to 54 years,Both sexes,Influenza and pneumonia,1.5
+2018,Canada,45 to 54 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2018,Canada,45 to 54 years,Both sexes,Chronic lower respiratory diseases,1.4
+2018,Canada,45 to 54 years,Males,Malignant neoplasms,24.2
+2018,Canada,45 to 54 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2018,Canada,45 to 54 years,Males,Diabetes mellitus,3
+2018,Canada,45 to 54 years,Males,Diseases of heart,16.6
+2018,Canada,45 to 54 years,Males,Influenza and pneumonia,1.3
+2018,Canada,45 to 54 years,Males,Acute bronchitis and bronchiolitis,0
+2018,Canada,45 to 54 years,Males,Chronic lower respiratory diseases,1
+2018,Canada,45 to 54 years,Females,Malignant neoplasms,44.2
+2018,Canada,45 to 54 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2018,Canada,45 to 54 years,Females,Diabetes mellitus,2.3
+2018,Canada,45 to 54 years,Females,Diseases of heart,7.7
+2018,Canada,45 to 54 years,Females,Influenza and pneumonia,1.7
+2018,Canada,45 to 54 years,Females,Acute bronchitis and bronchiolitis,0
+2018,Canada,45 to 54 years,Females,Chronic lower respiratory diseases,2
+2018,Canada,55 to 64 years,Both sexes,Malignant neoplasms,42.8
+2018,Canada,55 to 64 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2018,Canada,55 to 64 years,Both sexes,Diabetes mellitus,2.6
+2018,Canada,55 to 64 years,Both sexes,Diseases of heart,15.9
+2018,Canada,55 to 64 years,Both sexes,Influenza and pneumonia,1.5
+2018,Canada,55 to 64 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2018,Canada,55 to 64 years,Both sexes,Chronic lower respiratory diseases,3.5
+2018,Canada,55 to 64 years,Males,Malignant neoplasms,37.3
+2018,Canada,55 to 64 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2018,Canada,55 to 64 years,Males,Diabetes mellitus,2.8
+2018,Canada,55 to 64 years,Males,Diseases of heart,19.5
+2018,Canada,55 to 64 years,Males,Influenza and pneumonia,1.5
+2018,Canada,55 to 64 years,Males,Acute bronchitis and bronchiolitis,0
+2018,Canada,55 to 64 years,Males,Chronic lower respiratory diseases,3.1
+2018,Canada,55 to 64 years,Females,Malignant neoplasms,51.3
+2018,Canada,55 to 64 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2018,Canada,55 to 64 years,Females,Diabetes mellitus,2.4
+2018,Canada,55 to 64 years,Females,Diseases of heart,10.5
+2018,Canada,55 to 64 years,Females,Influenza and pneumonia,1.5
+2018,Canada,55 to 64 years,Females,Acute bronchitis and bronchiolitis,0
+2018,Canada,55 to 64 years,Females,Chronic lower respiratory diseases,4.1
+2018,Canada,65 to 74 years,Both sexes,Malignant neoplasms,42.7
+2018,Canada,65 to 74 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2018,Canada,65 to 74 years,Both sexes,Diabetes mellitus,3.1
+2018,Canada,65 to 74 years,Both sexes,Diseases of heart,17.1
+2018,Canada,65 to 74 years,Both sexes,Influenza and pneumonia,1.7
+2018,Canada,65 to 74 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2018,Canada,65 to 74 years,Both sexes,Chronic lower respiratory diseases,5.7
+2018,Canada,65 to 74 years,Males,Malignant neoplasms,40.4
+2018,Canada,65 to 74 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
+2018,Canada,65 to 74 years,Males,Diabetes mellitus,3.4
+2018,Canada,65 to 74 years,Males,Diseases of heart,19.8
+2018,Canada,65 to 74 years,Males,Influenza and pneumonia,1.7
+2018,Canada,65 to 74 years,Males,Acute bronchitis and bronchiolitis,0
+2018,Canada,65 to 74 years,Males,Chronic lower respiratory diseases,5.1
+2018,Canada,65 to 74 years,Females,Malignant neoplasms,46
+2018,Canada,65 to 74 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2018,Canada,65 to 74 years,Females,Diabetes mellitus,2.7
+2018,Canada,65 to 74 years,Females,Diseases of heart,13.3
+2018,Canada,65 to 74 years,Females,Influenza and pneumonia,1.6
+2018,Canada,65 to 74 years,Females,Acute bronchitis and bronchiolitis,0
+2018,Canada,65 to 74 years,Females,Chronic lower respiratory diseases,6.6
+2018,Canada,75 to 84 years,Both sexes,Malignant neoplasms,32.2
+2018,Canada,75 to 84 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
+2018,Canada,75 to 84 years,Both sexes,Diabetes mellitus,2.6
+2018,Canada,75 to 84 years,Both sexes,Diseases of heart,18.3
+2018,Canada,75 to 84 years,Both sexes,Influenza and pneumonia,2.6
+2018,Canada,75 to 84 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2018,Canada,75 to 84 years,Both sexes,Chronic lower respiratory diseases,6.1
+2018,Canada,75 to 84 years,Males,Malignant neoplasms,32.8
+2018,Canada,75 to 84 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
+2018,Canada,75 to 84 years,Males,Diabetes mellitus,2.7
+2018,Canada,75 to 84 years,Males,Diseases of heart,19.8
+2018,Canada,75 to 84 years,Males,Influenza and pneumonia,2.6
+2018,Canada,75 to 84 years,Males,Acute bronchitis and bronchiolitis,0
+2018,Canada,75 to 84 years,Males,Chronic lower respiratory diseases,5.7
+2018,Canada,75 to 84 years,Females,Malignant neoplasms,31.6
+2018,Canada,75 to 84 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
+2018,Canada,75 to 84 years,Females,Diabetes mellitus,2.5
+2018,Canada,75 to 84 years,Females,Diseases of heart,16.5
+2018,Canada,75 to 84 years,Females,Influenza and pneumonia,2.6
+2018,Canada,75 to 84 years,Females,Acute bronchitis and bronchiolitis,0
+2018,Canada,75 to 84 years,Females,Chronic lower respiratory diseases,6.6
+2018,Canada,85 and over,Both sexes,Malignant neoplasms,15.8
+2018,Canada,85 and over,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2018,Canada,85 and over,Both sexes,Diabetes mellitus,2
+2018,Canada,85 and over,Both sexes,Diseases of heart,23
+2018,Canada,85 and over,Both sexes,Influenza and pneumonia,4.7
+2018,Canada,85 and over,Both sexes,Acute bronchitis and bronchiolitis,0
+2018,Canada,85 and over,Both sexes,Chronic lower respiratory diseases,4.3
+2018,Canada,85 and over,Males,Malignant neoplasms,19.5
+2018,Canada,85 and over,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
+2018,Canada,85 and over,Males,Diabetes mellitus,2.1
+2018,Canada,85 and over,Males,Diseases of heart,23.7
+2018,Canada,85 and over,Males,Influenza and pneumonia,4.7
+2018,Canada,85 and over,Males,Acute bronchitis and bronchiolitis,0
+2018,Canada,85 and over,Males,Chronic lower respiratory diseases,5
+2018,Canada,85 and over,Females,Malignant neoplasms,13.3
+2018,Canada,85 and over,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2018,Canada,85 and over,Females,Diabetes mellitus,1.9
+2018,Canada,85 and over,Females,Diseases of heart,22.5
+2018,Canada,85 and over,Females,Influenza and pneumonia,4.8
+2018,Canada,85 and over,Females,Acute bronchitis and bronchiolitis,0
+2018,Canada,85 and over,Females,Chronic lower respiratory diseases,3.8
+2019,Canada,30 to 34 years,Both sexes,Malignant neoplasms,12.5
+2019,Canada,30 to 34 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.2
+2019,Canada,30 to 34 years,Both sexes,Diabetes mellitus,1.6
+2019,Canada,30 to 34 years,Both sexes,Diseases of heart,3.8
+2019,Canada,30 to 34 years,Both sexes,Influenza and pneumonia,0.9
+2019,Canada,30 to 34 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2019,Canada,30 to 34 years,Both sexes,Chronic lower respiratory diseases,0.3
+2019,Canada,30 to 34 years,Males,Malignant neoplasms,9.2
+2019,Canada,30 to 34 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.1
+2019,Canada,30 to 34 years,Males,Diabetes mellitus,1.7
+2019,Canada,30 to 34 years,Males,Diseases of heart,3.5
+2019,Canada,30 to 34 years,Males,Influenza and pneumonia,0.7
+2019,Canada,30 to 34 years,Males,Acute bronchitis and bronchiolitis,0
+2019,Canada,30 to 34 years,Males,Chronic lower respiratory diseases,0.3
+2019,Canada,30 to 34 years,Females,Malignant neoplasms,19.4
+2019,Canada,30 to 34 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2019,Canada,30 to 34 years,Females,Diabetes mellitus,1.5
+2019,Canada,30 to 34 years,Females,Diseases of heart,4.4
+2019,Canada,30 to 34 years,Females,Influenza and pneumonia,1.4
+2019,Canada,30 to 34 years,Females,Acute bronchitis and bronchiolitis,0
+2019,Canada,30 to 34 years,Females,Chronic lower respiratory diseases,0.5
+2019,Canada,35 to 44 years,Both sexes,Malignant neoplasms,20.4
+2019,Canada,35 to 44 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2019,Canada,35 to 44 years,Both sexes,Diabetes mellitus,2.2
+2019,Canada,35 to 44 years,Both sexes,Diseases of heart,8.2
+2019,Canada,35 to 44 years,Both sexes,Influenza and pneumonia,1.3
+2019,Canada,35 to 44 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2019,Canada,35 to 44 years,Both sexes,Chronic lower respiratory diseases,0.3
+2019,Canada,35 to 44 years,Males,Malignant neoplasms,13.7
+2019,Canada,35 to 44 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2019,Canada,35 to 44 years,Males,Diabetes mellitus,2.1
+2019,Canada,35 to 44 years,Males,Diseases of heart,9.5
+2019,Canada,35 to 44 years,Males,Influenza and pneumonia,1.3
+2019,Canada,35 to 44 years,Males,Acute bronchitis and bronchiolitis,0
+2019,Canada,35 to 44 years,Males,Chronic lower respiratory diseases,0.1
+2019,Canada,35 to 44 years,Females,Malignant neoplasms,32.1
+2019,Canada,35 to 44 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2019,Canada,35 to 44 years,Females,Diabetes mellitus,2.2
+2019,Canada,35 to 44 years,Females,Diseases of heart,5.9
+2019,Canada,35 to 44 years,Females,Influenza and pneumonia,1.3
+2019,Canada,35 to 44 years,Females,Acute bronchitis and bronchiolitis,0
+2019,Canada,35 to 44 years,Females,Chronic lower respiratory diseases,0.6
+2019,Canada,45 to 54 years,Both sexes,Malignant neoplasms,32.5
+2019,Canada,45 to 54 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2019,Canada,45 to 54 years,Both sexes,Diabetes mellitus,2.6
+2019,Canada,45 to 54 years,Both sexes,Diseases of heart,13.7
+2019,Canada,45 to 54 years,Both sexes,Influenza and pneumonia,1.4
+2019,Canada,45 to 54 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2019,Canada,45 to 54 years,Both sexes,Chronic lower respiratory diseases,1.3
+2019,Canada,45 to 54 years,Males,Malignant neoplasms,25.4
+2019,Canada,45 to 54 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2019,Canada,45 to 54 years,Males,Diabetes mellitus,2.9
+2019,Canada,45 to 54 years,Males,Diseases of heart,17
+2019,Canada,45 to 54 years,Males,Influenza and pneumonia,1.4
+2019,Canada,45 to 54 years,Males,Acute bronchitis and bronchiolitis,0
+2019,Canada,45 to 54 years,Males,Chronic lower respiratory diseases,1.1
+2019,Canada,45 to 54 years,Females,Malignant neoplasms,43.5
+2019,Canada,45 to 54 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
+2019,Canada,45 to 54 years,Females,Diabetes mellitus,2.2
+2019,Canada,45 to 54 years,Females,Diseases of heart,8.4
+2019,Canada,45 to 54 years,Females,Influenza and pneumonia,1.4
+2019,Canada,45 to 54 years,Females,Acute bronchitis and bronchiolitis,0
+2019,Canada,45 to 54 years,Females,Chronic lower respiratory diseases,1.5
+2019,Canada,55 to 64 years,Both sexes,Malignant neoplasms,42.5
+2019,Canada,55 to 64 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2019,Canada,55 to 64 years,Both sexes,Diabetes mellitus,2.9
+2019,Canada,55 to 64 years,Both sexes,Diseases of heart,16
+2019,Canada,55 to 64 years,Both sexes,Influenza and pneumonia,1.5
+2019,Canada,55 to 64 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2019,Canada,55 to 64 years,Both sexes,Chronic lower respiratory diseases,3.6
+2019,Canada,55 to 64 years,Males,Malignant neoplasms,37.1
+2019,Canada,55 to 64 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
+2019,Canada,55 to 64 years,Males,Diabetes mellitus,3.1
+2019,Canada,55 to 64 years,Males,Diseases of heart,19.5
+2019,Canada,55 to 64 years,Males,Influenza and pneumonia,1.4
+2019,Canada,55 to 64 years,Males,Acute bronchitis and bronchiolitis,0
+2019,Canada,55 to 64 years,Males,Chronic lower respiratory diseases,3.2
+2019,Canada,55 to 64 years,Females,Malignant neoplasms,50.7
+2019,Canada,55 to 64 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
+2019,Canada,55 to 64 years,Females,Diabetes mellitus,2.5
+2019,Canada,55 to 64 years,Females,Diseases of heart,10.5
+2019,Canada,55 to 64 years,Females,Influenza and pneumonia,1.6
+2019,Canada,55 to 64 years,Females,Acute bronchitis and bronchiolitis,0
+2019,Canada,55 to 64 years,Females,Chronic lower respiratory diseases,4.2
+2019,Canada,65 to 74 years,Both sexes,Malignant neoplasms,42.2
+2019,Canada,65 to 74 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2019,Canada,65 to 74 years,Both sexes,Diabetes mellitus,3
+2019,Canada,65 to 74 years,Both sexes,Diseases of heart,16.8
+2019,Canada,65 to 74 years,Both sexes,Influenza and pneumonia,1.6
+2019,Canada,65 to 74 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2019,Canada,65 to 74 years,Both sexes,Chronic lower respiratory diseases,5.5
+2019,Canada,65 to 74 years,Males,Malignant neoplasms,40.2
+2019,Canada,65 to 74 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
+2019,Canada,65 to 74 years,Males,Diabetes mellitus,3.2
+2019,Canada,65 to 74 years,Males,Diseases of heart,19.2
+2019,Canada,65 to 74 years,Males,Influenza and pneumonia,1.5
+2019,Canada,65 to 74 years,Males,Acute bronchitis and bronchiolitis,0
+2019,Canada,65 to 74 years,Males,Chronic lower respiratory diseases,4.9
+2019,Canada,65 to 74 years,Females,Malignant neoplasms,45.1
+2019,Canada,65 to 74 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2019,Canada,65 to 74 years,Females,Diabetes mellitus,2.8
+2019,Canada,65 to 74 years,Females,Diseases of heart,13.3
+2019,Canada,65 to 74 years,Females,Influenza and pneumonia,1.6
+2019,Canada,65 to 74 years,Females,Acute bronchitis and bronchiolitis,0
+2019,Canada,65 to 74 years,Females,Chronic lower respiratory diseases,6.2
+2019,Canada,75 to 84 years,Both sexes,Malignant neoplasms,32.2
+2019,Canada,75 to 84 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
+2019,Canada,75 to 84 years,Both sexes,Diabetes mellitus,2.7
+2019,Canada,75 to 84 years,Both sexes,Diseases of heart,18.2
+2019,Canada,75 to 84 years,Both sexes,Influenza and pneumonia,2.1
+2019,Canada,75 to 84 years,Both sexes,Acute bronchitis and bronchiolitis,0
+2019,Canada,75 to 84 years,Both sexes,Chronic lower respiratory diseases,6
+2019,Canada,75 to 84 years,Males,Malignant neoplasms,32.8
+2019,Canada,75 to 84 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.9
+2019,Canada,75 to 84 years,Males,Diabetes mellitus,2.8
+2019,Canada,75 to 84 years,Males,Diseases of heart,19.7
+2019,Canada,75 to 84 years,Males,Influenza and pneumonia,2.1
+2019,Canada,75 to 84 years,Males,Acute bronchitis and bronchiolitis,0
+2019,Canada,75 to 84 years,Males,Chronic lower respiratory diseases,5.5
+2019,Canada,75 to 84 years,Females,Malignant neoplasms,31.6
+2019,Canada,75 to 84 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2019,Canada,75 to 84 years,Females,Diabetes mellitus,2.5
+2019,Canada,75 to 84 years,Females,Diseases of heart,16.4
+2019,Canada,75 to 84 years,Females,Influenza and pneumonia,2.1
+2019,Canada,75 to 84 years,Females,Acute bronchitis and bronchiolitis,0
+2019,Canada,75 to 84 years,Females,Chronic lower respiratory diseases,6.7
+2019,Canada,85 and over,Both sexes,Malignant neoplasms,16.2
+2019,Canada,85 and over,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
+2019,Canada,85 and over,Both sexes,Diabetes mellitus,2
+2019,Canada,85 and over,Both sexes,Diseases of heart,22.5
+2019,Canada,85 and over,Both sexes,Influenza and pneumonia,3.6
+2019,Canada,85 and over,Both sexes,Acute bronchitis and bronchiolitis,0
+2019,Canada,85 and over,Both sexes,Chronic lower respiratory diseases,4.2
+2019,Canada,85 and over,Males,Malignant neoplasms,20.1
+2019,Canada,85 and over,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
+2019,Canada,85 and over,Males,Diabetes mellitus,2.2
+2019,Canada,85 and over,Males,Diseases of heart,22.7
+2019,Canada,85 and over,Males,Influenza and pneumonia,3.6
+2019,Canada,85 and over,Males,Acute bronchitis and bronchiolitis,0
+2019,Canada,85 and over,Males,Chronic lower respiratory diseases,4.8
+2019,Canada,85 and over,Females,Malignant neoplasms,13.6
+2019,Canada,85 and over,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
+2019,Canada,85 and over,Females,Diabetes mellitus,1.9
+2019,Canada,85 and over,Females,Diseases of heart,22.4
+2019,Canada,85 and over,Females,Influenza and pneumonia,3.6
+2019,Canada,85 and over,Females,Acute bronchitis and bronchiolitis,0
+2019,Canada,85 and over,Females,Chronic lower respiratory diseases,3.8
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-4-2.csv b/tests/assets/progress-calculation/data/temp/indicator_3-4-2.csv
new file mode 100644
index 00000000..4ed66702
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-4-2.csv
@@ -0,0 +1,202 @@
+Year,Geography,Sex,GeoCode,Value
+2015,,,,12.3
+2016,,,,11
+2017,,,,11.3
+2018,,,,10.3
+2019,,,,10.7
+2015,Canada,Males,,18.4
+2015,Canada,Females,,6.3
+2015,Alberta,Both sexes,48,15.8
+2015,Newfoundland and Labrador,Males,,19.2
+2015,Newfoundland and Labrador,Females,,4.8
+2016,Alberta,Both sexes,48,13.9
+2015,Prince Edward Island,Males,,7
+2015,Prince Edward Island,Females,,4
+2017,Alberta,Both sexes,48,14.7
+2015,Nova Scotia,Males,,22.5
+2015,Nova Scotia,Females,,4.6
+2018,Alberta,Both sexes,48,13.2
+2015,New Brunswick,Males,,26.6
+2015,New Brunswick,Females,,7.1
+2019,Alberta,Both sexes,48,13
+2015,Quebec,Males,,20.7
+2015,Quebec,Females,,7.2
+2015,British Columbia,Both sexes,59,11.6
+2015,Ontario,Males,,14.3
+2015,Ontario,Females,,5.4
+2016,British Columbia,Both sexes,59,10.1
+2015,Manitoba,Males,,18.5
+2015,Manitoba,Females,,9.2
+2017,British Columbia,Both sexes,59,9.9
+2015,Saskatchewan,Males,,22.6
+2015,Saskatchewan,Females,,5.3
+2018,British Columbia,Both sexes,59,8.2
+2015,Alberta,Males,,22.9
+2015,Alberta,Females,,8.4
+2019,British Columbia,Both sexes,59,8.9
+2015,British Columbia,Males,,18.1
+2015,British Columbia,Females,,5.2
+2015,Manitoba,Both sexes,46,13.8
+2015,Yukon,Males,,26.4
+2015,Yukon,Females,,0
+2016,Manitoba,Both sexes,46,15.2
+2015,Northwest Territories,Males,,39.9
+2015,Northwest Territories,Females,,0
+2017,Manitoba,Both sexes,46,15.5
+2015,Nunavut,Males,,132
+2015,Nunavut,Females,,22.6
+2016,Canada,Males,,16.3
+2016,Canada,Females,,5.7
+2018,Manitoba,Both sexes,46,13.8
+2016,Newfoundland and Labrador,Males,,21
+2016,Newfoundland and Labrador,Females,,6.7
+2019,Manitoba,Both sexes,46,15.1
+2016,Prince Edward Island,Males,,12.3
+2016,Prince Edward Island,Females,,1.3
+2015,New Brunswick,Both sexes,13,16.7
+2016,Nova Scotia,Males,,20.9
+2016,Nova Scotia,Females,,5.8
+2016,New Brunswick,Both sexes,13,15.8
+2016,New Brunswick,Males,,25.4
+2016,New Brunswick,Females,,6.5
+2017,New Brunswick,Both sexes,13,12.6
+2016,Quebec,Males,,14.4
+2016,Quebec,Females,,4.4
+2018,New Brunswick,Both sexes,13,14.7
+2016,Ontario,Males,,14.4
+2016,Ontario,Females,,5.3
+2019,New Brunswick,Both sexes,13,10
+2016,Manitoba,Males,,21.5
+2016,Manitoba,Females,,8.9
+2015,Newfoundland and Labrador,Both sexes,10,11.9
+2016,Saskatchewan,Males,,21.9
+2016,Saskatchewan,Females,,9.3
+2016,Newfoundland and Labrador,Both sexes,10,13.8
+2016,Alberta,Males,,20.3
+2016,Alberta,Females,,7.4
+2017,Newfoundland and Labrador,Both sexes,10,17.4
+2016,British Columbia,Males,,15.2
+2016,British Columbia,Females,,5.1
+2018,Newfoundland and Labrador,Both sexes,10,13.7
+2016,Yukon,Males,,25.8
+2016,Yukon,Females,,10.7
+2019,Newfoundland and Labrador,Both sexes,10,11.5
+2016,Northwest Territories,Males,,35
+2016,Northwest Territories,Females,,18.4
+2015,Northwest Territories,Both sexes,61,20.4
+2016,Nunavut,Males,,93.5
+2016,Nunavut,Females,,39.1
+2017,Canada,Males,,17.1
+2017,Canada,Females,,5.7
+2016,Northwest Territories,Both sexes,61,26.9
+2017,Newfoundland and Labrador,Males,,26.9
+2017,Newfoundland and Labrador,Females,,8.2
+2017,Northwest Territories,Both sexes,61,13.5
+2017,Prince Edward Island,Males,,14.8
+2017,Prince Edward Island,Females,,6.4
+2018,Northwest Territories,Both sexes,61,24.7
+2017,Nova Scotia,Males,,22
+2017,Nova Scotia,Females,,7.2
+2019,Northwest Territories,Both sexes,61,15.5
+2017,New Brunswick,Males,,20.5
+2017,New Brunswick,Females,,4.9
+2015,Nova Scotia,Both sexes,12,13.4
+2017,Quebec,Males,,15.9
+2017,Quebec,Females,,5.1
+2016,Nova Scotia,Both sexes,12,13.2
+2017,Ontario,Males,,14.8
+2017,Ontario,Females,,5.3
+2017,Nova Scotia,Both sexes,12,14.5
+2017,Manitoba,Males,,20.5
+2017,Manitoba,Females,,10.4
+2018,Nova Scotia,Both sexes,12,12.8
+2017,Saskatchewan,Males,,22.2
+2017,Saskatchewan,Females,,8
+2019,Nova Scotia,Both sexes,12,12.7
+2017,Alberta,Males,,23
+2017,Alberta,Females,,6.3
+2015,Nunavut,Both sexes,62,79.2
+2017,British Columbia,Males,,15.1
+2017,British Columbia,Females,,4.7
+2016,Nunavut,Both sexes,62,67.2
+2017,Northwest Territories,Males,,26.3
+2017,Northwest Territories,Females,,0
+2017,Nunavut,Both sexes,62,50
+2017,Nunavut,Males,,81.3
+2017,Nunavut,Females,,16.4
+2018,Canada,Males,,15.7
+2018,Canada,Females,,5
+2018,Nunavut,Both sexes,62,54.7
+2018,Newfoundland and Labrador,Males,,23.1
+2018,Newfoundland and Labrador,Females,,4.5
+2019,Nunavut,Both sexes,62,82.9
+2018,Prince Edward Island,Males,,8
+2018,Prince Edward Island,Females,,1.3
+2015,Ontario,Both sexes,35,9.8
+2018,Nova Scotia,Males,,20.9
+2018,Nova Scotia,Females,,5.1
+2016,Ontario,Both sexes,35,9.8
+2018,New Brunswick,Males,,24.1
+2018,New Brunswick,Females,,5.4
+2017,Ontario,Both sexes,35,10
+2018,Quebec,Males,,14.3
+2018,Quebec,Females,,4.9
+2018,Ontario,Both sexes,35,8.9
+2018,Ontario,Males,,13.5
+2018,Ontario,Females,,4.4
+2019,Ontario,Both sexes,35,9.1
+2018,Manitoba,Males,,20.1
+2018,Manitoba,Females,,7.4
+2015,Prince Edward Island,Both sexes,11,5.4
+2018,Saskatchewan,Males,,29.2
+2018,Saskatchewan,Females,,9.2
+2016,Prince Edward Island,Both sexes,11,6.7
+2018,Alberta,Males,,19.5
+2018,Alberta,Females,,6.7
+2017,Prince Edward Island,Both sexes,11,10.5
+2018,British Columbia,Males,,12.6
+2018,British Columbia,Females,,3.8
+2018,Prince Edward Island,Both sexes,11,4.6
+2018,Northwest Territories,Males,,39.3
+2018,Northwest Territories,Females,,9.2
+2019,Prince Edward Island,Both sexes,11,10.8
+2018,Nunavut,Males,,101.3
+2018,Nunavut,Females,,5.4
+2019,Canada,Males,,16.4
+2019,Canada,Females,,5
+2015,Quebec,Both sexes,24,13.9
+2019,Newfoundland and Labrador,Males,,17
+2019,Newfoundland and Labrador,Females,,6
+2016,Quebec,Both sexes,24,9.4
+2019,Prince Edward Island,Males,,18.1
+2019,Prince Edward Island,Females,,3.8
+2017,Quebec,Both sexes,24,10.5
+2019,Nova Scotia,Males,,21.1
+2019,Nova Scotia,Females,,4.6
+2018,Quebec,Both sexes,24,9.6
+2019,New Brunswick,Males,,14.8
+2019,New Brunswick,Females,,5.4
+2019,Quebec,Both sexes,24,11.5
+2019,Quebec,Males,,17.7
+2019,Quebec,Females,,5.3
+2015,Saskatchewan,Both sexes,47,14.1
+2019,Ontario,Males,,13.8
+2019,Ontario,Females,,4.5
+2016,Saskatchewan,Both sexes,47,15.7
+2019,Manitoba,Males,,22.5
+2019,Manitoba,Females,,7.7
+2017,Saskatchewan,Both sexes,47,15.1
+2019,Saskatchewan,Males,,22.7
+2019,Saskatchewan,Females,,5.5
+2018,Saskatchewan,Both sexes,47,19.3
+2019,Alberta,Males,,19.6
+2019,Alberta,Females,,6.3
+2019,Saskatchewan,Both sexes,47,14.2
+2019,British Columbia,Males,,13.9
+2019,British Columbia,Females,,4
+2015,Yukon,Both sexes,60,13.4
+2019,Northwest Territories,Males,,17.3
+2019,Northwest Territories,Females,,13.7
+2016,Yukon,Both sexes,60,18.4
+2019,Nunavut,Males,,121.2
+2019,Nunavut,Females,,42.5
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-5-2.csv b/tests/assets/progress-calculation/data/temp/indicator_3-5-2.csv
new file mode 100644
index 00000000..1ec175cd
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-5-2.csv
@@ -0,0 +1,91 @@
+Year,Geography,Value
+2014/2015,,8
+2015/2016,,8.1
+2016/2017,,8.2
+2017/2018,,8.2
+2018/2019,,8
+2019/2020,,8.1
+2014/2015,Canada,8
+2014/2015,Newfoundland and Labrador,9.4
+2014/2015,Prince Edward Island,7.9
+2014/2015,Nova Scotia,7.7
+2014/2015,New Brunswick,6.6
+2014/2015,Quebec,8.3
+2014/2015,Ontario,7.3
+2014/2015,Manitoba,7.7
+2014/2015,Saskatchewan,8.3
+2014/2015,Alberta,9.4
+2014/2015,British Columbia,8.7
+2014/2015,Yukon,12.8
+2014/2015,Northwest Territories,11.9
+2014/2015,Nunavut,1.9
+2015/2016,Canada,8.1
+2015/2016,Newfoundland and Labrador,9.3
+2015/2016,Prince Edward Island,8.1
+2015/2016,Nova Scotia,7.8
+2015/2016,New Brunswick,6.8
+2015/2016,Quebec,8.3
+2015/2016,Ontario,7.5
+2015/2016,Manitoba,7.8
+2015/2016,Saskatchewan,8.5
+2015/2016,Alberta,9.3
+2015/2016,British Columbia,8.9
+2015/2016,Yukon,13.2
+2015/2016,Northwest Territories,11.8
+2015/2016,Nunavut,1.8
+2016/2017,Canada,8.2
+2016/2017,Newfoundland and Labrador,9.2
+2016/2017,Prince Edward Island,8.2
+2016/2017,Nova Scotia,7.7
+2016/2017,New Brunswick,7
+2016/2017,Quebec,8.4
+2016/2017,Ontario,7.7
+2016/2017,Manitoba,7.8
+2016/2017,Saskatchewan,8.3
+2016/2017,Alberta,8.9
+2016/2017,British Columbia,8.8
+2016/2017,Yukon,13.3
+2016/2017,Northwest Territories,11.5
+2016/2017,Nunavut,1.7
+2017/2018,Canada,8.2
+2017/2018,Newfoundland and Labrador,9.1
+2017/2018,Prince Edward Island,8.1
+2017/2018,Nova Scotia,7.8
+2017/2018,New Brunswick,6.9
+2017/2018,Quebec,8.5
+2017/2018,Ontario,7.7
+2017/2018,Manitoba,7.7
+2017/2018,Saskatchewan,8
+2017/2018,Alberta,8.8
+2017/2018,British Columbia,8.9
+2017/2018,Yukon,13.1
+2017/2018,Northwest Territories,12.1
+2017/2018,Nunavut,2.8
+2018/2019,Canada,8
+2018/2019,Newfoundland and Labrador,8.8
+2018/2019,Prince Edward Island,8
+2018/2019,Nova Scotia,7.7
+2018/2019,New Brunswick,6.8
+2018/2019,Quebec,8.4
+2018/2019,Ontario,7.5
+2018/2019,Manitoba,7.5
+2018/2019,Saskatchewan,7.8
+2018/2019,Alberta,8.6
+2018/2019,British Columbia,8.8
+2018/2019,Yukon,13
+2018/2019,Northwest Territories,11.9
+2018/2019,Nunavut,3.6
+2019/2020,Canada,8.1
+2019/2020,Newfoundland and Labrador,8.8
+2019/2020,Prince Edward Island,8
+2019/2020,Nova Scotia,7.8
+2019/2020,New Brunswick,6.9
+2019/2020,Quebec,8.5
+2019/2020,Ontario,7.6
+2019/2020,Manitoba,7.5
+2019/2020,Saskatchewan,7.4
+2019/2020,Alberta,8.6
+2019/2020,British Columbia,8.8
+2019/2020,Yukon,13
+2019/2020,Northwest Territories,11.7
+2019/2020,Nunavut,3.8
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-6-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-6-1.csv
new file mode 100644
index 00000000..05742df3
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-6-1.csv
@@ -0,0 +1,991 @@
+Year,Age,Sex,Cause of death,Value
+2015,,,,6.4
+2016,,,,5.9
+2017,,,,5.4
+2018,,,,5
+2019,,,,4.8
+2015,All ages,Both sexes,Motor vehicle accidents,5.8
+2015,All ages,Both sexes,Other land transport accidents,0.2
+2015,All ages,Males,Transport accidents,9.5
+2015,All ages,Males,Motor vehicle accidents,8.4
+2015,All ages,Males,Other land transport accidents,0.3
+2015,All ages,Females,Transport accidents,3.4
+2015,All ages,Females,Motor vehicle accidents,3.2
+2015,All ages,Females,Other land transport accidents,0.1
+2015,Under 1 year,Both sexes,Transport accidents,1.6
+2015,Under 1 year,Both sexes,Motor vehicle accidents,1.6
+2015,Under 1 year,Both sexes,Other land transport accidents,0
+2015,Under 1 year,Males,Transport accidents,1
+2015,Under 1 year,Males,Motor vehicle accidents,1
+2015,Under 1 year,Males,Other land transport accidents,0
+2015,Under 1 year,Females,Transport accidents,2.1
+2015,Under 1 year,Females,Motor vehicle accidents,2.1
+2015,Under 1 year,Females,Other land transport accidents,0
+2015,1 to 4 years,Both sexes,Transport accidents,1.6
+2015,1 to 4 years,Both sexes,Motor vehicle accidents,1.6
+2015,1 to 4 years,Both sexes,Other land transport accidents,0.1
+2015,1 to 4 years,Males,Transport accidents,1.8
+2015,1 to 4 years,Males,Motor vehicle accidents,1.8
+2015,1 to 4 years,Males,Other land transport accidents,0
+2015,1 to 4 years,Females,Transport accidents,1.5
+2015,1 to 4 years,Females,Motor vehicle accidents,1.3
+2015,1 to 4 years,Females,Other land transport accidents,0.1
+2015,5 to 9 years,Both sexes,Transport accidents,0.9
+2015,5 to 9 years,Both sexes,Motor vehicle accidents,0.8
+2015,5 to 9 years,Both sexes,Other land transport accidents,0.1
+2015,5 to 9 years,Males,Transport accidents,1.5
+2015,5 to 9 years,Males,Motor vehicle accidents,1.3
+2015,5 to 9 years,Males,Other land transport accidents,0.2
+2015,5 to 9 years,Females,Transport accidents,0.3
+2015,5 to 9 years,Females,Motor vehicle accidents,0.3
+2015,5 to 9 years,Females,Other land transport accidents,0
+2015,10 to 14 years,Both sexes,Transport accidents,1.1
+2015,10 to 14 years,Both sexes,Motor vehicle accidents,1.1
+2015,10 to 14 years,Both sexes,Other land transport accidents,0.1
+2015,10 to 14 years,Males,Transport accidents,1
+2015,10 to 14 years,Males,Motor vehicle accidents,1
+2015,10 to 14 years,Males,Other land transport accidents,0
+2015,10 to 14 years,Females,Transport accidents,1.2
+2015,10 to 14 years,Females,Motor vehicle accidents,1.1
+2015,10 to 14 years,Females,Other land transport accidents,0.1
+2015,15 to 19 years,Both sexes,Transport accidents,7.3
+2015,15 to 19 years,Both sexes,Motor vehicle accidents,7.2
+2015,15 to 19 years,Both sexes,Other land transport accidents,0.1
+2015,15 to 19 years,Males,Transport accidents,9.8
+2015,15 to 19 years,Males,Motor vehicle accidents,9.8
+2015,15 to 19 years,Males,Other land transport accidents,0
+2015,15 to 19 years,Females,Transport accidents,4.6
+2015,15 to 19 years,Females,Motor vehicle accidents,4.4
+2015,15 to 19 years,Females,Other land transport accidents,0.2
+2015,20 to 24 years,Both sexes,Transport accidents,9.7
+2015,20 to 24 years,Both sexes,Motor vehicle accidents,8.9
+2015,20 to 24 years,Both sexes,Other land transport accidents,0.4
+2015,20 to 24 years,Males,Transport accidents,14.3
+2015,20 to 24 years,Males,Motor vehicle accidents,13.2
+2015,20 to 24 years,Males,Other land transport accidents,0.4
+2015,20 to 24 years,Females,Transport accidents,4.8
+2015,20 to 24 years,Females,Motor vehicle accidents,4.4
+2015,20 to 24 years,Females,Other land transport accidents,0.3
+2015,25 to 29 years,Both sexes,Transport accidents,7.7
+2015,25 to 29 years,Both sexes,Motor vehicle accidents,7.1
+2015,25 to 29 years,Both sexes,Other land transport accidents,0.1
+2015,25 to 29 years,Males,Transport accidents,12.4
+2015,25 to 29 years,Males,Motor vehicle accidents,11.4
+2015,25 to 29 years,Males,Other land transport accidents,0.2
+2015,25 to 29 years,Females,Transport accidents,2.9
+2015,25 to 29 years,Females,Motor vehicle accidents,2.9
+2015,25 to 29 years,Females,Other land transport accidents,0
+2015,30 to 34 years,Both sexes,Transport accidents,6
+2015,30 to 34 years,Both sexes,Motor vehicle accidents,5.4
+2015,30 to 34 years,Both sexes,Other land transport accidents,0.3
+2015,30 to 34 years,Males,Transport accidents,9.6
+2015,30 to 34 years,Males,Motor vehicle accidents,8.3
+2015,30 to 34 years,Males,Other land transport accidents,0.6
+2015,30 to 34 years,Females,Transport accidents,2.6
+2015,30 to 34 years,Females,Motor vehicle accidents,2.5
+2015,30 to 34 years,Females,Other land transport accidents,0.1
+2015,35 to 39 years,Both sexes,Transport accidents,4.4
+2015,35 to 39 years,Both sexes,Motor vehicle accidents,4.1
+2015,35 to 39 years,Both sexes,Other land transport accidents,0.2
+2015,35 to 39 years,Males,Transport accidents,6.5
+2015,35 to 39 years,Males,Motor vehicle accidents,5.8
+2015,35 to 39 years,Males,Other land transport accidents,0.3
+2015,35 to 39 years,Females,Transport accidents,2.3
+2015,35 to 39 years,Females,Motor vehicle accidents,2.3
+2015,35 to 39 years,Females,Other land transport accidents,0
+2015,40 to 44 years,Both sexes,Transport accidents,5.9
+2015,40 to 44 years,Both sexes,Motor vehicle accidents,5.2
+2015,40 to 44 years,Both sexes,Other land transport accidents,0.2
+2015,40 to 44 years,Males,Transport accidents,9.2
+2015,40 to 44 years,Males,Motor vehicle accidents,8
+2015,40 to 44 years,Males,Other land transport accidents,0.3
+2015,40 to 44 years,Females,Transport accidents,2.6
+2015,40 to 44 years,Females,Motor vehicle accidents,2.5
+2015,40 to 44 years,Females,Other land transport accidents,0.1
+2015,45 to 49 years,Both sexes,Transport accidents,6.4
+2015,45 to 49 years,Both sexes,Motor vehicle accidents,5.7
+2015,45 to 49 years,Both sexes,Other land transport accidents,0.1
+2015,45 to 49 years,Males,Transport accidents,9.2
+2015,45 to 49 years,Males,Motor vehicle accidents,7.9
+2015,45 to 49 years,Males,Other land transport accidents,0.2
+2015,45 to 49 years,Females,Transport accidents,3.6
+2015,45 to 49 years,Females,Motor vehicle accidents,3.5
+2015,45 to 49 years,Females,Other land transport accidents,0
+2015,50 to 54 years,Both sexes,Transport accidents,6.7
+2015,50 to 54 years,Both sexes,Motor vehicle accidents,5.7
+2015,50 to 54 years,Both sexes,Other land transport accidents,0.1
+2015,50 to 54 years,Males,Transport accidents,10.8
+2015,50 to 54 years,Males,Motor vehicle accidents,9.1
+2015,50 to 54 years,Males,Other land transport accidents,0.1
+2015,50 to 54 years,Females,Transport accidents,2.5
+2015,50 to 54 years,Females,Motor vehicle accidents,2.3
+2015,50 to 54 years,Females,Other land transport accidents,0.1
+2015,55 to 59 years,Both sexes,Transport accidents,8.1
+2015,55 to 59 years,Both sexes,Motor vehicle accidents,6.7
+2015,55 to 59 years,Both sexes,Other land transport accidents,0.2
+2015,55 to 59 years,Males,Transport accidents,13.4
+2015,55 to 59 years,Males,Motor vehicle accidents,11
+2015,55 to 59 years,Males,Other land transport accidents,0.4
+2015,55 to 59 years,Females,Transport accidents,2.8
+2015,55 to 59 years,Females,Motor vehicle accidents,2.5
+2015,55 to 59 years,Females,Other land transport accidents,0.1
+2015,60 to 64 years,Both sexes,Transport accidents,6.8
+2015,60 to 64 years,Both sexes,Motor vehicle accidents,5.7
+2015,60 to 64 years,Both sexes,Other land transport accidents,0.4
+2015,60 to 64 years,Males,Transport accidents,10.7
+2015,60 to 64 years,Males,Motor vehicle accidents,8.7
+2015,60 to 64 years,Males,Other land transport accidents,0.5
+2015,60 to 64 years,Females,Transport accidents,3.1
+2015,60 to 64 years,Females,Motor vehicle accidents,2.7
+2015,60 to 64 years,Females,Other land transport accidents,0.2
+2015,65 to 69 years,Both sexes,Transport accidents,6.6
+2015,65 to 69 years,Both sexes,Motor vehicle accidents,5.4
+2015,65 to 69 years,Both sexes,Other land transport accidents,0.2
+2015,65 to 69 years,Males,Transport accidents,8.6
+2015,65 to 69 years,Males,Motor vehicle accidents,7
+2015,65 to 69 years,Males,Other land transport accidents,0.1
+2015,65 to 69 years,Females,Transport accidents,4.7
+2015,65 to 69 years,Females,Motor vehicle accidents,4
+2015,65 to 69 years,Females,Other land transport accidents,0.2
+2015,70 to 74 years,Both sexes,Transport accidents,8.1
+2015,70 to 74 years,Both sexes,Motor vehicle accidents,7.1
+2015,70 to 74 years,Both sexes,Other land transport accidents,0.2
+2015,70 to 74 years,Males,Transport accidents,11.5
+2015,70 to 74 years,Males,Motor vehicle accidents,9.7
+2015,70 to 74 years,Males,Other land transport accidents,0.5
+2015,70 to 74 years,Females,Transport accidents,5
+2015,70 to 74 years,Females,Motor vehicle accidents,4.7
+2015,70 to 74 years,Females,Other land transport accidents,0
+2015,75 to 79 years,Both sexes,Transport accidents,10.5
+2015,75 to 79 years,Both sexes,Motor vehicle accidents,9.9
+2015,75 to 79 years,Both sexes,Other land transport accidents,0.2
+2015,75 to 79 years,Males,Transport accidents,15.3
+2015,75 to 79 years,Males,Motor vehicle accidents,14.2
+2015,75 to 79 years,Males,Other land transport accidents,0.2
+2015,75 to 79 years,Females,Transport accidents,6.4
+2015,75 to 79 years,Females,Motor vehicle accidents,6.3
+2015,75 to 79 years,Females,Other land transport accidents,0.2
+2015,80 to 84 years,Both sexes,Transport accidents,14.5
+2015,80 to 84 years,Both sexes,Motor vehicle accidents,13.3
+2015,80 to 84 years,Both sexes,Other land transport accidents,0.4
+2015,80 to 84 years,Males,Transport accidents,20
+2015,80 to 84 years,Males,Motor vehicle accidents,18.1
+2015,80 to 84 years,Males,Other land transport accidents,0.6
+2015,80 to 84 years,Females,Transport accidents,10.3
+2015,80 to 84 years,Females,Motor vehicle accidents,9.6
+2015,80 to 84 years,Females,Other land transport accidents,0.2
+2015,85 to 89 years,Both sexes,Transport accidents,14.4
+2015,85 to 89 years,Both sexes,Motor vehicle accidents,13.4
+2015,85 to 89 years,Both sexes,Other land transport accidents,0.4
+2015,85 to 89 years,Males,Transport accidents,23.3
+2015,85 to 89 years,Males,Motor vehicle accidents,20.5
+2015,85 to 89 years,Males,Other land transport accidents,1.1
+2015,85 to 89 years,Females,Transport accidents,9.1
+2015,85 to 89 years,Females,Motor vehicle accidents,9.1
+2015,85 to 89 years,Females,Other land transport accidents,0
+2015,90 years and over,Both sexes,Transport accidents,14
+2015,90 years and over,Both sexes,Motor vehicle accidents,13.6
+2015,90 years and over,Both sexes,Other land transport accidents,0
+2015,90 years and over,Males,Transport accidents,24
+2015,90 years and over,Males,Motor vehicle accidents,24
+2015,90 years and over,Males,Other land transport accidents,0
+2015,90 years and over,Females,Transport accidents,10
+2015,90 years and over,Females,Motor vehicle accidents,9.5
+2015,90 years and over,Females,Other land transport accidents,0
+2015,Not stated,Both sexes,Transport accidents,0
+2015,Not stated,Both sexes,Motor vehicle accidents,0
+2015,Not stated,Both sexes,Other land transport accidents,0
+2015,Not stated,Males,Transport accidents,0
+2015,Not stated,Males,Motor vehicle accidents,0
+2015,Not stated,Males,Other land transport accidents,0
+2015,Not stated,Females,Transport accidents,0
+2015,Not stated,Females,Motor vehicle accidents,0
+2015,Not stated,Females,Other land transport accidents,0
+2016,All ages,Both sexes,Motor vehicle accidents,5.4
+2016,All ages,Both sexes,Other land transport accidents,0.1
+2016,All ages,Males,Transport accidents,8.4
+2016,All ages,Males,Motor vehicle accidents,7.6
+2016,All ages,Males,Other land transport accidents,0.2
+2016,All ages,Females,Transport accidents,3.5
+2016,All ages,Females,Motor vehicle accidents,3.2
+2016,All ages,Females,Other land transport accidents,0.1
+2016,Under 1 year,Both sexes,Transport accidents,0.5
+2016,Under 1 year,Both sexes,Motor vehicle accidents,0.5
+2016,Under 1 year,Both sexes,Other land transport accidents,0
+2016,Under 1 year,Males,Transport accidents,0.5
+2016,Under 1 year,Males,Motor vehicle accidents,0.5
+2016,Under 1 year,Males,Other land transport accidents,0
+2016,Under 1 year,Females,Transport accidents,0.5
+2016,Under 1 year,Females,Motor vehicle accidents,0.5
+2016,Under 1 year,Females,Other land transport accidents,0
+2016,1 to 4 years,Both sexes,Transport accidents,1.3
+2016,1 to 4 years,Both sexes,Motor vehicle accidents,1.2
+2016,1 to 4 years,Both sexes,Other land transport accidents,0.1
+2016,1 to 4 years,Males,Transport accidents,1.6
+2016,1 to 4 years,Males,Motor vehicle accidents,1.5
+2016,1 to 4 years,Males,Other land transport accidents,0.1
+2016,1 to 4 years,Females,Transport accidents,0.9
+2016,1 to 4 years,Females,Motor vehicle accidents,0.9
+2016,1 to 4 years,Females,Other land transport accidents,0
+2016,5 to 9 years,Both sexes,Transport accidents,1
+2016,5 to 9 years,Both sexes,Motor vehicle accidents,0.9
+2016,5 to 9 years,Both sexes,Other land transport accidents,0
+2016,5 to 9 years,Males,Transport accidents,1
+2016,5 to 9 years,Males,Motor vehicle accidents,1
+2016,5 to 9 years,Males,Other land transport accidents,0
+2016,5 to 9 years,Females,Transport accidents,0.9
+2016,5 to 9 years,Females,Motor vehicle accidents,0.8
+2016,5 to 9 years,Females,Other land transport accidents,0
+2016,10 to 14 years,Both sexes,Transport accidents,1.4
+2016,10 to 14 years,Both sexes,Motor vehicle accidents,1.4
+2016,10 to 14 years,Both sexes,Other land transport accidents,0.1
+2016,10 to 14 years,Males,Transport accidents,1.8
+2016,10 to 14 years,Males,Motor vehicle accidents,1.7
+2016,10 to 14 years,Males,Other land transport accidents,0.1
+2016,10 to 14 years,Females,Transport accidents,1.1
+2016,10 to 14 years,Females,Motor vehicle accidents,1.1
+2016,10 to 14 years,Females,Other land transport accidents,0
+2016,15 to 19 years,Both sexes,Transport accidents,6.5
+2016,15 to 19 years,Both sexes,Motor vehicle accidents,6
+2016,15 to 19 years,Both sexes,Other land transport accidents,0.3
+2016,15 to 19 years,Males,Transport accidents,8.1
+2016,15 to 19 years,Males,Motor vehicle accidents,7.3
+2016,15 to 19 years,Males,Other land transport accidents,0.5
+2016,15 to 19 years,Females,Transport accidents,4.8
+2016,15 to 19 years,Females,Motor vehicle accidents,4.7
+2016,15 to 19 years,Females,Other land transport accidents,0.1
+2016,20 to 24 years,Both sexes,Transport accidents,8.3
+2016,20 to 24 years,Both sexes,Motor vehicle accidents,7.7
+2016,20 to 24 years,Both sexes,Other land transport accidents,0.1
+2016,20 to 24 years,Males,Transport accidents,12.5
+2016,20 to 24 years,Males,Motor vehicle accidents,11.5
+2016,20 to 24 years,Males,Other land transport accidents,0.2
+2016,20 to 24 years,Females,Transport accidents,3.9
+2016,20 to 24 years,Females,Motor vehicle accidents,3.7
+2016,20 to 24 years,Females,Other land transport accidents,0.1
+2016,25 to 29 years,Both sexes,Transport accidents,7.9
+2016,25 to 29 years,Both sexes,Motor vehicle accidents,7.5
+2016,25 to 29 years,Both sexes,Other land transport accidents,0.2
+2016,25 to 29 years,Males,Transport accidents,11.5
+2016,25 to 29 years,Males,Motor vehicle accidents,11
+2016,25 to 29 years,Males,Other land transport accidents,0.3
+2016,25 to 29 years,Females,Transport accidents,4.2
+2016,25 to 29 years,Females,Motor vehicle accidents,4
+2016,25 to 29 years,Females,Other land transport accidents,0
+2016,30 to 34 years,Both sexes,Transport accidents,5.8
+2016,30 to 34 years,Both sexes,Motor vehicle accidents,5.5
+2016,30 to 34 years,Both sexes,Other land transport accidents,0
+2016,30 to 34 years,Males,Transport accidents,8.5
+2016,30 to 34 years,Males,Motor vehicle accidents,8.1
+2016,30 to 34 years,Males,Other land transport accidents,0
+2016,30 to 34 years,Females,Transport accidents,3.2
+2016,30 to 34 years,Females,Motor vehicle accidents,3
+2016,30 to 34 years,Females,Other land transport accidents,0.1
+2016,35 to 39 years,Both sexes,Transport accidents,5
+2016,35 to 39 years,Both sexes,Motor vehicle accidents,4.6
+2016,35 to 39 years,Both sexes,Other land transport accidents,0.1
+2016,35 to 39 years,Males,Transport accidents,7.2
+2016,35 to 39 years,Males,Motor vehicle accidents,6.6
+2016,35 to 39 years,Males,Other land transport accidents,0.2
+2016,35 to 39 years,Females,Transport accidents,2.8
+2016,35 to 39 years,Females,Motor vehicle accidents,2.7
+2016,35 to 39 years,Females,Other land transport accidents,0.1
+2016,40 to 44 years,Both sexes,Transport accidents,5.5
+2016,40 to 44 years,Both sexes,Motor vehicle accidents,5
+2016,40 to 44 years,Both sexes,Other land transport accidents,0.1
+2016,40 to 44 years,Males,Transport accidents,8.7
+2016,40 to 44 years,Males,Motor vehicle accidents,8
+2016,40 to 44 years,Males,Other land transport accidents,0.2
+2016,40 to 44 years,Females,Transport accidents,2.2
+2016,40 to 44 years,Females,Motor vehicle accidents,2
+2016,40 to 44 years,Females,Other land transport accidents,0.1
+2016,45 to 49 years,Both sexes,Transport accidents,5.1
+2016,45 to 49 years,Both sexes,Motor vehicle accidents,4.5
+2016,45 to 49 years,Both sexes,Other land transport accidents,0.1
+2016,45 to 49 years,Males,Transport accidents,8.1
+2016,45 to 49 years,Males,Motor vehicle accidents,7.1
+2016,45 to 49 years,Males,Other land transport accidents,0.2
+2016,45 to 49 years,Females,Transport accidents,2.1
+2016,45 to 49 years,Females,Motor vehicle accidents,1.9
+2016,45 to 49 years,Females,Other land transport accidents,0
+2016,50 to 54 years,Both sexes,Transport accidents,5.7
+2016,50 to 54 years,Both sexes,Motor vehicle accidents,5.2
+2016,50 to 54 years,Both sexes,Other land transport accidents,0.1
+2016,50 to 54 years,Males,Transport accidents,8.4
+2016,50 to 54 years,Males,Motor vehicle accidents,7.4
+2016,50 to 54 years,Males,Other land transport accidents,0.3
+2016,50 to 54 years,Females,Transport accidents,3
+2016,50 to 54 years,Females,Motor vehicle accidents,2.9
+2016,50 to 54 years,Females,Other land transport accidents,0
+2016,55 to 59 years,Both sexes,Transport accidents,6.6
+2016,55 to 59 years,Both sexes,Motor vehicle accidents,5.5
+2016,55 to 59 years,Both sexes,Other land transport accidents,0.2
+2016,55 to 59 years,Males,Transport accidents,10
+2016,55 to 59 years,Males,Motor vehicle accidents,8.2
+2016,55 to 59 years,Males,Other land transport accidents,0.3
+2016,55 to 59 years,Females,Transport accidents,3.2
+2016,55 to 59 years,Females,Motor vehicle accidents,2.8
+2016,55 to 59 years,Females,Other land transport accidents,0
+2016,60 to 64 years,Both sexes,Transport accidents,6.7
+2016,60 to 64 years,Both sexes,Motor vehicle accidents,5.8
+2016,60 to 64 years,Both sexes,Other land transport accidents,0.1
+2016,60 to 64 years,Males,Transport accidents,10.7
+2016,60 to 64 years,Males,Motor vehicle accidents,9.1
+2016,60 to 64 years,Males,Other land transport accidents,0.1
+2016,60 to 64 years,Females,Transport accidents,2.8
+2016,60 to 64 years,Females,Motor vehicle accidents,2.6
+2016,60 to 64 years,Females,Other land transport accidents,0.1
+2016,65 to 69 years,Both sexes,Transport accidents,6.6
+2016,65 to 69 years,Both sexes,Motor vehicle accidents,5.7
+2016,65 to 69 years,Both sexes,Other land transport accidents,0.3
+2016,65 to 69 years,Males,Transport accidents,8.5
+2016,65 to 69 years,Males,Motor vehicle accidents,7.3
+2016,65 to 69 years,Males,Other land transport accidents,0.4
+2016,65 to 69 years,Females,Transport accidents,4.7
+2016,65 to 69 years,Females,Motor vehicle accidents,4.2
+2016,65 to 69 years,Females,Other land transport accidents,0.1
+2016,70 to 74 years,Both sexes,Transport accidents,7.6
+2016,70 to 74 years,Both sexes,Motor vehicle accidents,6.9
+2016,70 to 74 years,Both sexes,Other land transport accidents,0.1
+2016,70 to 74 years,Males,Transport accidents,10.2
+2016,70 to 74 years,Males,Motor vehicle accidents,9.2
+2016,70 to 74 years,Males,Other land transport accidents,0
+2016,70 to 74 years,Females,Transport accidents,5.2
+2016,70 to 74 years,Females,Motor vehicle accidents,4.8
+2016,70 to 74 years,Females,Other land transport accidents,0.3
+2016,75 to 79 years,Both sexes,Transport accidents,8.9
+2016,75 to 79 years,Both sexes,Motor vehicle accidents,7.5
+2016,75 to 79 years,Both sexes,Other land transport accidents,0.6
+2016,75 to 79 years,Males,Transport accidents,11.4
+2016,75 to 79 years,Males,Motor vehicle accidents,9.7
+2016,75 to 79 years,Males,Other land transport accidents,0.8
+2016,75 to 79 years,Females,Transport accidents,6.8
+2016,75 to 79 years,Females,Motor vehicle accidents,5.7
+2016,75 to 79 years,Females,Other land transport accidents,0.4
+2016,80 to 84 years,Both sexes,Transport accidents,12.9
+2016,80 to 84 years,Both sexes,Motor vehicle accidents,12.1
+2016,80 to 84 years,Both sexes,Other land transport accidents,0.1
+2016,80 to 84 years,Males,Transport accidents,15.4
+2016,80 to 84 years,Males,Motor vehicle accidents,14.1
+2016,80 to 84 years,Males,Other land transport accidents,0
+2016,80 to 84 years,Females,Transport accidents,11
+2016,80 to 84 years,Females,Motor vehicle accidents,10.5
+2016,80 to 84 years,Females,Other land transport accidents,0.2
+2016,85 to 89 years,Both sexes,Transport accidents,13.4
+2016,85 to 89 years,Both sexes,Motor vehicle accidents,13.2
+2016,85 to 89 years,Both sexes,Other land transport accidents,0
+2016,85 to 89 years,Males,Transport accidents,19.1
+2016,85 to 89 years,Males,Motor vehicle accidents,18.6
+2016,85 to 89 years,Males,Other land transport accidents,0
+2016,85 to 89 years,Females,Transport accidents,9.9
+2016,85 to 89 years,Females,Motor vehicle accidents,9.9
+2016,85 to 89 years,Females,Other land transport accidents,0
+2016,90 years and over,Both sexes,Transport accidents,13.3
+2016,90 years and over,Both sexes,Motor vehicle accidents,13
+2016,90 years and over,Both sexes,Other land transport accidents,0
+2016,90 years and over,Males,Transport accidents,27.2
+2016,90 years and over,Males,Motor vehicle accidents,27.2
+2016,90 years and over,Males,Other land transport accidents,0
+2016,90 years and over,Females,Transport accidents,7.7
+2016,90 years and over,Females,Motor vehicle accidents,7.2
+2016,90 years and over,Females,Other land transport accidents,0
+2016,Not stated,Both sexes,Transport accidents,0
+2016,Not stated,Both sexes,Motor vehicle accidents,0
+2016,Not stated,Both sexes,Other land transport accidents,0
+2016,Not stated,Males,Transport accidents,0
+2016,Not stated,Males,Motor vehicle accidents,0
+2016,Not stated,Males,Other land transport accidents,0
+2016,Not stated,Females,Transport accidents,0
+2016,Not stated,Females,Motor vehicle accidents,0
+2016,Not stated,Females,Other land transport accidents,0
+2017,All ages,Both sexes,Motor vehicle accidents,4.8
+2017,All ages,Both sexes,Other land transport accidents,0.2
+2017,All ages,Males,Transport accidents,7.8
+2017,All ages,Males,Motor vehicle accidents,6.8
+2017,All ages,Males,Other land transport accidents,0.3
+2017,All ages,Females,Transport accidents,3
+2017,All ages,Females,Motor vehicle accidents,2.8
+2017,All ages,Females,Other land transport accidents,0.1
+2017,Under 1 year,Both sexes,Transport accidents,0.3
+2017,Under 1 year,Both sexes,Motor vehicle accidents,0.3
+2017,Under 1 year,Both sexes,Other land transport accidents,0
+2017,Under 1 year,Males,Transport accidents,0.5
+2017,Under 1 year,Males,Motor vehicle accidents,0.5
+2017,Under 1 year,Males,Other land transport accidents,0
+2017,Under 1 year,Females,Transport accidents,0
+2017,Under 1 year,Females,Motor vehicle accidents,0
+2017,Under 1 year,Females,Other land transport accidents,0
+2017,1 to 4 years,Both sexes,Transport accidents,1.8
+2017,1 to 4 years,Both sexes,Motor vehicle accidents,1.8
+2017,1 to 4 years,Both sexes,Other land transport accidents,0
+2017,1 to 4 years,Males,Transport accidents,2
+2017,1 to 4 years,Males,Motor vehicle accidents,2
+2017,1 to 4 years,Males,Other land transport accidents,0
+2017,1 to 4 years,Females,Transport accidents,1.6
+2017,1 to 4 years,Females,Motor vehicle accidents,1.6
+2017,1 to 4 years,Females,Other land transport accidents,0
+2017,5 to 9 years,Both sexes,Transport accidents,1.3
+2017,5 to 9 years,Both sexes,Motor vehicle accidents,1.2
+2017,5 to 9 years,Both sexes,Other land transport accidents,0
+2017,5 to 9 years,Males,Transport accidents,1.4
+2017,5 to 9 years,Males,Motor vehicle accidents,1.2
+2017,5 to 9 years,Males,Other land transport accidents,0.1
+2017,5 to 9 years,Females,Transport accidents,1.2
+2017,5 to 9 years,Females,Motor vehicle accidents,1.2
+2017,5 to 9 years,Females,Other land transport accidents,0
+2017,10 to 14 years,Both sexes,Transport accidents,1.1
+2017,10 to 14 years,Both sexes,Motor vehicle accidents,1
+2017,10 to 14 years,Both sexes,Other land transport accidents,0.1
+2017,10 to 14 years,Males,Transport accidents,1.3
+2017,10 to 14 years,Males,Motor vehicle accidents,1.1
+2017,10 to 14 years,Males,Other land transport accidents,0
+2017,10 to 14 years,Females,Transport accidents,1
+2017,10 to 14 years,Females,Motor vehicle accidents,0.9
+2017,10 to 14 years,Females,Other land transport accidents,0.1
+2017,15 to 19 years,Both sexes,Transport accidents,5.7
+2017,15 to 19 years,Both sexes,Motor vehicle accidents,5.4
+2017,15 to 19 years,Both sexes,Other land transport accidents,0.1
+2017,15 to 19 years,Males,Transport accidents,7.6
+2017,15 to 19 years,Males,Motor vehicle accidents,6.8
+2017,15 to 19 years,Males,Other land transport accidents,0.3
+2017,15 to 19 years,Females,Transport accidents,3.8
+2017,15 to 19 years,Females,Motor vehicle accidents,3.8
+2017,15 to 19 years,Females,Other land transport accidents,0
+2017,20 to 24 years,Both sexes,Transport accidents,7
+2017,20 to 24 years,Both sexes,Motor vehicle accidents,6.6
+2017,20 to 24 years,Both sexes,Other land transport accidents,0.2
+2017,20 to 24 years,Males,Transport accidents,10
+2017,20 to 24 years,Males,Motor vehicle accidents,9.3
+2017,20 to 24 years,Males,Other land transport accidents,0.4
+2017,20 to 24 years,Females,Transport accidents,3.8
+2017,20 to 24 years,Females,Motor vehicle accidents,3.8
+2017,20 to 24 years,Females,Other land transport accidents,0.1
+2017,25 to 29 years,Both sexes,Transport accidents,6.6
+2017,25 to 29 years,Both sexes,Motor vehicle accidents,5.8
+2017,25 to 29 years,Both sexes,Other land transport accidents,0.2
+2017,25 to 29 years,Males,Transport accidents,10.1
+2017,25 to 29 years,Males,Motor vehicle accidents,8.7
+2017,25 to 29 years,Males,Other land transport accidents,0.3
+2017,25 to 29 years,Females,Transport accidents,3.1
+2017,25 to 29 years,Females,Motor vehicle accidents,2.9
+2017,25 to 29 years,Females,Other land transport accidents,0.1
+2017,30 to 34 years,Both sexes,Transport accidents,6.1
+2017,30 to 34 years,Both sexes,Motor vehicle accidents,5.8
+2017,30 to 34 years,Both sexes,Other land transport accidents,0.1
+2017,30 to 34 years,Males,Transport accidents,10
+2017,30 to 34 years,Males,Motor vehicle accidents,9.5
+2017,30 to 34 years,Males,Other land transport accidents,0.2
+2017,30 to 34 years,Females,Transport accidents,2.2
+2017,30 to 34 years,Females,Motor vehicle accidents,2.1
+2017,30 to 34 years,Females,Other land transport accidents,0.1
+2017,35 to 39 years,Both sexes,Transport accidents,6.3
+2017,35 to 39 years,Both sexes,Motor vehicle accidents,5.7
+2017,35 to 39 years,Both sexes,Other land transport accidents,0.2
+2017,35 to 39 years,Males,Transport accidents,9.5
+2017,35 to 39 years,Males,Motor vehicle accidents,8.5
+2017,35 to 39 years,Males,Other land transport accidents,0.2
+2017,35 to 39 years,Females,Transport accidents,3
+2017,35 to 39 years,Females,Motor vehicle accidents,2.9
+2017,35 to 39 years,Females,Other land transport accidents,0.1
+2017,40 to 44 years,Both sexes,Transport accidents,5.2
+2017,40 to 44 years,Both sexes,Motor vehicle accidents,4.6
+2017,40 to 44 years,Both sexes,Other land transport accidents,0.2
+2017,40 to 44 years,Males,Transport accidents,8.1
+2017,40 to 44 years,Males,Motor vehicle accidents,7
+2017,40 to 44 years,Males,Other land transport accidents,0.3
+2017,40 to 44 years,Females,Transport accidents,2.4
+2017,40 to 44 years,Females,Motor vehicle accidents,2.3
+2017,40 to 44 years,Females,Other land transport accidents,0.1
+2017,45 to 49 years,Both sexes,Transport accidents,4.7
+2017,45 to 49 years,Both sexes,Motor vehicle accidents,4.1
+2017,45 to 49 years,Both sexes,Other land transport accidents,0.2
+2017,45 to 49 years,Males,Transport accidents,6.7
+2017,45 to 49 years,Males,Motor vehicle accidents,6
+2017,45 to 49 years,Males,Other land transport accidents,0.1
+2017,45 to 49 years,Females,Transport accidents,2.7
+2017,45 to 49 years,Females,Motor vehicle accidents,2.2
+2017,45 to 49 years,Females,Other land transport accidents,0.3
+2017,50 to 54 years,Both sexes,Transport accidents,5.5
+2017,50 to 54 years,Both sexes,Motor vehicle accidents,4.9
+2017,50 to 54 years,Both sexes,Other land transport accidents,0.1
+2017,50 to 54 years,Males,Transport accidents,8.2
+2017,50 to 54 years,Males,Motor vehicle accidents,7
+2017,50 to 54 years,Males,Other land transport accidents,0.2
+2017,50 to 54 years,Females,Transport accidents,2.8
+2017,50 to 54 years,Females,Motor vehicle accidents,2.7
+2017,50 to 54 years,Females,Other land transport accidents,0
+2017,55 to 59 years,Both sexes,Transport accidents,5.7
+2017,55 to 59 years,Both sexes,Motor vehicle accidents,5.1
+2017,55 to 59 years,Both sexes,Other land transport accidents,0.2
+2017,55 to 59 years,Males,Transport accidents,8.1
+2017,55 to 59 years,Males,Motor vehicle accidents,7.3
+2017,55 to 59 years,Males,Other land transport accidents,0.1
+2017,55 to 59 years,Females,Transport accidents,3.4
+2017,55 to 59 years,Females,Motor vehicle accidents,2.9
+2017,55 to 59 years,Females,Other land transport accidents,0.2
+2017,60 to 64 years,Both sexes,Transport accidents,6.6
+2017,60 to 64 years,Both sexes,Motor vehicle accidents,5.4
+2017,60 to 64 years,Both sexes,Other land transport accidents,0.2
+2017,60 to 64 years,Males,Transport accidents,9.4
+2017,60 to 64 years,Males,Motor vehicle accidents,7.3
+2017,60 to 64 years,Males,Other land transport accidents,0.3
+2017,60 to 64 years,Females,Transport accidents,3.9
+2017,60 to 64 years,Females,Motor vehicle accidents,3.6
+2017,60 to 64 years,Females,Other land transport accidents,0.1
+2017,65 to 69 years,Both sexes,Transport accidents,5.3
+2017,65 to 69 years,Both sexes,Motor vehicle accidents,4.5
+2017,65 to 69 years,Both sexes,Other land transport accidents,0.3
+2017,65 to 69 years,Males,Transport accidents,8.1
+2017,65 to 69 years,Males,Motor vehicle accidents,6.6
+2017,65 to 69 years,Males,Other land transport accidents,0.5
+2017,65 to 69 years,Females,Transport accidents,2.5
+2017,65 to 69 years,Females,Motor vehicle accidents,2.4
+2017,65 to 69 years,Females,Other land transport accidents,0.1
+2017,70 to 74 years,Both sexes,Transport accidents,5.8
+2017,70 to 74 years,Both sexes,Motor vehicle accidents,5
+2017,70 to 74 years,Both sexes,Other land transport accidents,0.4
+2017,70 to 74 years,Males,Transport accidents,8.5
+2017,70 to 74 years,Males,Motor vehicle accidents,7.3
+2017,70 to 74 years,Males,Other land transport accidents,0.5
+2017,70 to 74 years,Females,Transport accidents,3.2
+2017,70 to 74 years,Females,Motor vehicle accidents,2.9
+2017,70 to 74 years,Females,Other land transport accidents,0.2
+2017,75 to 79 years,Both sexes,Transport accidents,7.3
+2017,75 to 79 years,Both sexes,Motor vehicle accidents,7
+2017,75 to 79 years,Both sexes,Other land transport accidents,0.2
+2017,75 to 79 years,Males,Transport accidents,10.5
+2017,75 to 79 years,Males,Motor vehicle accidents,9.7
+2017,75 to 79 years,Males,Other land transport accidents,0.4
+2017,75 to 79 years,Females,Transport accidents,4.6
+2017,75 to 79 years,Females,Motor vehicle accidents,4.6
+2017,75 to 79 years,Females,Other land transport accidents,0
+2017,80 to 84 years,Both sexes,Transport accidents,9.4
+2017,80 to 84 years,Both sexes,Motor vehicle accidents,8.3
+2017,80 to 84 years,Both sexes,Other land transport accidents,0.7
+2017,80 to 84 years,Males,Transport accidents,12.1
+2017,80 to 84 years,Males,Motor vehicle accidents,10.6
+2017,80 to 84 years,Males,Other land transport accidents,0.9
+2017,80 to 84 years,Females,Transport accidents,7.4
+2017,80 to 84 years,Females,Motor vehicle accidents,6.5
+2017,80 to 84 years,Females,Other land transport accidents,0.5
+2017,85 to 89 years,Both sexes,Transport accidents,10.5
+2017,85 to 89 years,Both sexes,Motor vehicle accidents,9.7
+2017,85 to 89 years,Both sexes,Other land transport accidents,0.4
+2017,85 to 89 years,Males,Transport accidents,14.8
+2017,85 to 89 years,Males,Motor vehicle accidents,12.8
+2017,85 to 89 years,Males,Other land transport accidents,1
+2017,85 to 89 years,Females,Transport accidents,7.8
+2017,85 to 89 years,Females,Motor vehicle accidents,7.8
+2017,85 to 89 years,Females,Other land transport accidents,0
+2017,90 years and over,Both sexes,Transport accidents,8.8
+2017,90 years and over,Both sexes,Motor vehicle accidents,8.2
+2017,90 years and over,Both sexes,Other land transport accidents,0.3
+2017,90 years and over,Males,Transport accidents,19
+2017,90 years and over,Males,Motor vehicle accidents,16.7
+2017,90 years and over,Males,Other land transport accidents,1.1
+2017,90 years and over,Females,Transport accidents,4.6
+2017,90 years and over,Females,Motor vehicle accidents,4.6
+2017,90 years and over,Females,Other land transport accidents,0
+2017,Not stated,Both sexes,Transport accidents,0
+2017,Not stated,Both sexes,Motor vehicle accidents,0
+2017,Not stated,Both sexes,Other land transport accidents,0
+2017,Not stated,Males,Transport accidents,0
+2017,Not stated,Males,Motor vehicle accidents,0
+2017,Not stated,Males,Other land transport accidents,0
+2017,Not stated,Females,Transport accidents,0
+2017,Not stated,Females,Motor vehicle accidents,0
+2017,Not stated,Females,Other land transport accidents,0
+2018,All ages,Both sexes,Motor vehicle accidents,4.5
+2018,All ages,Both sexes,Other land transport accidents,0.2
+2018,All ages,Males,Transport accidents,7.1
+2018,All ages,Males,Motor vehicle accidents,6.4
+2018,All ages,Males,Other land transport accidents,0.3
+2018,All ages,Females,Transport accidents,2.9
+2018,All ages,Females,Motor vehicle accidents,2.7
+2018,All ages,Females,Other land transport accidents,0.1
+2018,Under 1 year,Both sexes,Transport accidents,0.3
+2018,Under 1 year,Both sexes,Motor vehicle accidents,0.3
+2018,Under 1 year,Both sexes,Other land transport accidents,0
+2018,Under 1 year,Males,Transport accidents,0
+2018,Under 1 year,Males,Motor vehicle accidents,0
+2018,Under 1 year,Males,Other land transport accidents,0
+2018,Under 1 year,Females,Transport accidents,0.5
+2018,Under 1 year,Females,Motor vehicle accidents,0.5
+2018,Under 1 year,Females,Other land transport accidents,0
+2018,1 to 4 years,Both sexes,Transport accidents,1.2
+2018,1 to 4 years,Both sexes,Motor vehicle accidents,1.1
+2018,1 to 4 years,Both sexes,Other land transport accidents,0.1
+2018,1 to 4 years,Males,Transport accidents,1.2
+2018,1 to 4 years,Males,Motor vehicle accidents,1.1
+2018,1 to 4 years,Males,Other land transport accidents,0.1
+2018,1 to 4 years,Females,Transport accidents,1
+2018,1 to 4 years,Females,Motor vehicle accidents,1
+2018,1 to 4 years,Females,Other land transport accidents,0
+2018,5 to 9 years,Both sexes,Transport accidents,1
+2018,5 to 9 years,Both sexes,Motor vehicle accidents,0.9
+2018,5 to 9 years,Both sexes,Other land transport accidents,0
+2018,5 to 9 years,Males,Transport accidents,1.1
+2018,5 to 9 years,Males,Motor vehicle accidents,0.9
+2018,5 to 9 years,Males,Other land transport accidents,0.1
+2018,5 to 9 years,Females,Transport accidents,1
+2018,5 to 9 years,Females,Motor vehicle accidents,1
+2018,5 to 9 years,Females,Other land transport accidents,0
+2018,10 to 14 years,Both sexes,Transport accidents,1.1
+2018,10 to 14 years,Both sexes,Motor vehicle accidents,1
+2018,10 to 14 years,Both sexes,Other land transport accidents,0.1
+2018,10 to 14 years,Males,Transport accidents,1.4
+2018,10 to 14 years,Males,Motor vehicle accidents,1.2
+2018,10 to 14 years,Males,Other land transport accidents,0.1
+2018,10 to 14 years,Females,Transport accidents,0.8
+2018,10 to 14 years,Females,Motor vehicle accidents,0.8
+2018,10 to 14 years,Females,Other land transport accidents,0
+2018,15 to 19 years,Both sexes,Transport accidents,5.4
+2018,15 to 19 years,Both sexes,Motor vehicle accidents,5.2
+2018,15 to 19 years,Both sexes,Other land transport accidents,0.2
+2018,15 to 19 years,Males,Transport accidents,6.7
+2018,15 to 19 years,Males,Motor vehicle accidents,6.3
+2018,15 to 19 years,Males,Other land transport accidents,0.3
+2018,15 to 19 years,Females,Transport accidents,4.1
+2018,15 to 19 years,Females,Motor vehicle accidents,4
+2018,15 to 19 years,Females,Other land transport accidents,0.1
+2018,20 to 24 years,Both sexes,Transport accidents,6.8
+2018,20 to 24 years,Both sexes,Motor vehicle accidents,6.3
+2018,20 to 24 years,Both sexes,Other land transport accidents,0.2
+2018,20 to 24 years,Males,Transport accidents,9.7
+2018,20 to 24 years,Males,Motor vehicle accidents,8.8
+2018,20 to 24 years,Males,Other land transport accidents,0.4
+2018,20 to 24 years,Females,Transport accidents,3.6
+2018,20 to 24 years,Females,Motor vehicle accidents,3.5
+2018,20 to 24 years,Females,Other land transport accidents,0.1
+2018,25 to 29 years,Both sexes,Transport accidents,6
+2018,25 to 29 years,Both sexes,Motor vehicle accidents,5.7
+2018,25 to 29 years,Both sexes,Other land transport accidents,0.1
+2018,25 to 29 years,Males,Transport accidents,9
+2018,25 to 29 years,Males,Motor vehicle accidents,8.6
+2018,25 to 29 years,Males,Other land transport accidents,0.2
+2018,25 to 29 years,Females,Transport accidents,2.8
+2018,25 to 29 years,Females,Motor vehicle accidents,2.6
+2018,25 to 29 years,Females,Other land transport accidents,0
+2018,30 to 34 years,Both sexes,Transport accidents,4.7
+2018,30 to 34 years,Both sexes,Motor vehicle accidents,4.4
+2018,30 to 34 years,Both sexes,Other land transport accidents,0.2
+2018,30 to 34 years,Males,Transport accidents,7.2
+2018,30 to 34 years,Males,Motor vehicle accidents,6.8
+2018,30 to 34 years,Males,Other land transport accidents,0.3
+2018,30 to 34 years,Females,Transport accidents,2.1
+2018,30 to 34 years,Females,Motor vehicle accidents,2
+2018,30 to 34 years,Females,Other land transport accidents,0
+2018,35 to 39 years,Both sexes,Transport accidents,4.8
+2018,35 to 39 years,Both sexes,Motor vehicle accidents,4.5
+2018,35 to 39 years,Both sexes,Other land transport accidents,0.1
+2018,35 to 39 years,Males,Transport accidents,7.8
+2018,35 to 39 years,Males,Motor vehicle accidents,7.1
+2018,35 to 39 years,Males,Other land transport accidents,0.2
+2018,35 to 39 years,Females,Transport accidents,1.9
+2018,35 to 39 years,Females,Motor vehicle accidents,1.9
+2018,35 to 39 years,Females,Other land transport accidents,0
+2018,40 to 44 years,Both sexes,Transport accidents,4.7
+2018,40 to 44 years,Both sexes,Motor vehicle accidents,4.2
+2018,40 to 44 years,Both sexes,Other land transport accidents,0
+2018,40 to 44 years,Males,Transport accidents,7
+2018,40 to 44 years,Males,Motor vehicle accidents,6
+2018,40 to 44 years,Males,Other land transport accidents,0.1
+2018,40 to 44 years,Females,Transport accidents,2.4
+2018,40 to 44 years,Females,Motor vehicle accidents,2.3
+2018,40 to 44 years,Females,Other land transport accidents,0
+2018,45 to 49 years,Both sexes,Transport accidents,4.4
+2018,45 to 49 years,Both sexes,Motor vehicle accidents,4.2
+2018,45 to 49 years,Both sexes,Other land transport accidents,0.1
+2018,45 to 49 years,Males,Transport accidents,6.5
+2018,45 to 49 years,Males,Motor vehicle accidents,6.2
+2018,45 to 49 years,Males,Other land transport accidents,0.1
+2018,45 to 49 years,Females,Transport accidents,2.3
+2018,45 to 49 years,Females,Motor vehicle accidents,2.2
+2018,45 to 49 years,Females,Other land transport accidents,0.1
+2018,50 to 54 years,Both sexes,Transport accidents,5.6
+2018,50 to 54 years,Both sexes,Motor vehicle accidents,4.8
+2018,50 to 54 years,Both sexes,Other land transport accidents,0.2
+2018,50 to 54 years,Males,Transport accidents,8.1
+2018,50 to 54 years,Males,Motor vehicle accidents,7.1
+2018,50 to 54 years,Males,Other land transport accidents,0.3
+2018,50 to 54 years,Females,Transport accidents,3
+2018,50 to 54 years,Females,Motor vehicle accidents,2.6
+2018,50 to 54 years,Females,Other land transport accidents,0.1
+2018,55 to 59 years,Both sexes,Transport accidents,4.9
+2018,55 to 59 years,Both sexes,Motor vehicle accidents,4
+2018,55 to 59 years,Both sexes,Other land transport accidents,0.3
+2018,55 to 59 years,Males,Transport accidents,7.5
+2018,55 to 59 years,Males,Motor vehicle accidents,5.8
+2018,55 to 59 years,Males,Other land transport accidents,0.7
+2018,55 to 59 years,Females,Transport accidents,2.4
+2018,55 to 59 years,Females,Motor vehicle accidents,2.3
+2018,55 to 59 years,Females,Other land transport accidents,0
+2018,60 to 64 years,Both sexes,Transport accidents,6
+2018,60 to 64 years,Both sexes,Motor vehicle accidents,5.1
+2018,60 to 64 years,Both sexes,Other land transport accidents,0.3
+2018,60 to 64 years,Males,Transport accidents,8.9
+2018,60 to 64 years,Males,Motor vehicle accidents,7.8
+2018,60 to 64 years,Males,Other land transport accidents,0.5
+2018,60 to 64 years,Females,Transport accidents,3.2
+2018,60 to 64 years,Females,Motor vehicle accidents,2.6
+2018,60 to 64 years,Females,Other land transport accidents,0.2
+2018,65 to 69 years,Both sexes,Transport accidents,4.9
+2018,65 to 69 years,Both sexes,Motor vehicle accidents,4.2
+2018,65 to 69 years,Both sexes,Other land transport accidents,0.2
+2018,65 to 69 years,Males,Transport accidents,6.2
+2018,65 to 69 years,Males,Motor vehicle accidents,5.2
+2018,65 to 69 years,Males,Other land transport accidents,0.3
+2018,65 to 69 years,Females,Transport accidents,3.6
+2018,65 to 69 years,Females,Motor vehicle accidents,3.3
+2018,65 to 69 years,Females,Other land transport accidents,0.2
+2018,70 to 74 years,Both sexes,Transport accidents,5.8
+2018,70 to 74 years,Both sexes,Motor vehicle accidents,5
+2018,70 to 74 years,Both sexes,Other land transport accidents,0.3
+2018,70 to 74 years,Males,Transport accidents,8
+2018,70 to 74 years,Males,Motor vehicle accidents,6.7
+2018,70 to 74 years,Males,Other land transport accidents,0.6
+2018,70 to 74 years,Females,Transport accidents,3.8
+2018,70 to 74 years,Females,Motor vehicle accidents,3.5
+2018,70 to 74 years,Females,Other land transport accidents,0
+2018,75 to 79 years,Both sexes,Transport accidents,9.6
+2018,75 to 79 years,Both sexes,Motor vehicle accidents,8.1
+2018,75 to 79 years,Both sexes,Other land transport accidents,0.4
+2018,75 to 79 years,Males,Transport accidents,13.2
+2018,75 to 79 years,Males,Motor vehicle accidents,11.6
+2018,75 to 79 years,Males,Other land transport accidents,0.4
+2018,75 to 79 years,Females,Transport accidents,6.4
+2018,75 to 79 years,Females,Motor vehicle accidents,5.1
+2018,75 to 79 years,Females,Other land transport accidents,0.3
+2018,80 to 84 years,Both sexes,Transport accidents,9.8
+2018,80 to 84 years,Both sexes,Motor vehicle accidents,9.4
+2018,80 to 84 years,Both sexes,Other land transport accidents,0.3
+2018,80 to 84 years,Males,Transport accidents,14.5
+2018,80 to 84 years,Males,Motor vehicle accidents,14
+2018,80 to 84 years,Males,Other land transport accidents,0.6
+2018,80 to 84 years,Females,Transport accidents,6.1
+2018,80 to 84 years,Females,Motor vehicle accidents,5.8
+2018,80 to 84 years,Females,Other land transport accidents,0
+2018,85 to 89 years,Both sexes,Transport accidents,13.3
+2018,85 to 89 years,Both sexes,Motor vehicle accidents,12.3
+2018,85 to 89 years,Both sexes,Other land transport accidents,0.6
+2018,85 to 89 years,Males,Transport accidents,21
+2018,85 to 89 years,Males,Motor vehicle accidents,20.5
+2018,85 to 89 years,Males,Other land transport accidents,0
+2018,85 to 89 years,Females,Transport accidents,8.2
+2018,85 to 89 years,Females,Motor vehicle accidents,6.9
+2018,85 to 89 years,Females,Other land transport accidents,1
+2018,90 years and over,Both sexes,Transport accidents,10.4
+2018,90 years and over,Both sexes,Motor vehicle accidents,9.8
+2018,90 years and over,Both sexes,Other land transport accidents,0.6
+2018,90 years and over,Males,Transport accidents,20.9
+2018,90 years and over,Males,Motor vehicle accidents,18.8
+2018,90 years and over,Males,Other land transport accidents,2.1
+2018,90 years and over,Females,Transport accidents,5.9
+2018,90 years and over,Females,Motor vehicle accidents,5.9
+2018,90 years and over,Females,Other land transport accidents,0
+2018,Not stated,Both sexes,Transport accidents,0
+2018,Not stated,Both sexes,Motor vehicle accidents,0
+2018,Not stated,Both sexes,Other land transport accidents,0
+2018,Not stated,Males,Transport accidents,0
+2018,Not stated,Males,Motor vehicle accidents,0
+2018,Not stated,Males,Other land transport accidents,0
+2018,Not stated,Females,Transport accidents,0
+2018,Not stated,Females,Motor vehicle accidents,0
+2018,Not stated,Females,Other land transport accidents,0
+2019,All ages,Both sexes,Motor vehicle accidents,4.3
+2019,All ages,Both sexes,Other land transport accidents,0.2
+2019,All ages,Males,Transport accidents,6.8
+2019,All ages,Males,Motor vehicle accidents,5.9
+2019,All ages,Males,Other land transport accidents,0.3
+2019,All ages,Females,Transport accidents,2.9
+2019,All ages,Females,Motor vehicle accidents,2.7
+2019,All ages,Females,Other land transport accidents,0.1
+2019,Under 1 year,Both sexes,Transport accidents,0.5
+2019,Under 1 year,Both sexes,Motor vehicle accidents,0.5
+2019,Under 1 year,Both sexes,Other land transport accidents,0
+2019,Under 1 year,Males,Transport accidents,0
+2019,Under 1 year,Males,Motor vehicle accidents,0
+2019,Under 1 year,Males,Other land transport accidents,0
+2019,Under 1 year,Females,Transport accidents,1.1
+2019,Under 1 year,Females,Motor vehicle accidents,1.1
+2019,Under 1 year,Females,Other land transport accidents,0
+2019,1 to 4 years,Both sexes,Transport accidents,1.3
+2019,1 to 4 years,Both sexes,Motor vehicle accidents,1.3
+2019,1 to 4 years,Both sexes,Other land transport accidents,0
+2019,1 to 4 years,Males,Transport accidents,1.4
+2019,1 to 4 years,Males,Motor vehicle accidents,1.4
+2019,1 to 4 years,Males,Other land transport accidents,0
+2019,1 to 4 years,Females,Transport accidents,1.2
+2019,1 to 4 years,Females,Motor vehicle accidents,1.2
+2019,1 to 4 years,Females,Other land transport accidents,0
+2019,5 to 9 years,Both sexes,Transport accidents,0.4
+2019,5 to 9 years,Both sexes,Motor vehicle accidents,0.4
+2019,5 to 9 years,Both sexes,Other land transport accidents,0
+2019,5 to 9 years,Males,Transport accidents,0.3
+2019,5 to 9 years,Males,Motor vehicle accidents,0.3
+2019,5 to 9 years,Males,Other land transport accidents,0
+2019,5 to 9 years,Females,Transport accidents,0.5
+2019,5 to 9 years,Females,Motor vehicle accidents,0.5
+2019,5 to 9 years,Females,Other land transport accidents,0
+2019,10 to 14 years,Both sexes,Transport accidents,0.9
+2019,10 to 14 years,Both sexes,Motor vehicle accidents,0.7
+2019,10 to 14 years,Both sexes,Other land transport accidents,0
+2019,10 to 14 years,Males,Transport accidents,1.2
+2019,10 to 14 years,Males,Motor vehicle accidents,1
+2019,10 to 14 years,Males,Other land transport accidents,0.1
+2019,10 to 14 years,Females,Transport accidents,0.6
+2019,10 to 14 years,Females,Motor vehicle accidents,0.5
+2019,10 to 14 years,Females,Other land transport accidents,0
+2019,15 to 19 years,Both sexes,Transport accidents,5.4
+2019,15 to 19 years,Both sexes,Motor vehicle accidents,5.2
+2019,15 to 19 years,Both sexes,Other land transport accidents,0.1
+2019,15 to 19 years,Males,Transport accidents,7.1
+2019,15 to 19 years,Males,Motor vehicle accidents,6.7
+2019,15 to 19 years,Males,Other land transport accidents,0.3
+2019,15 to 19 years,Females,Transport accidents,3.7
+2019,15 to 19 years,Females,Motor vehicle accidents,3.6
+2019,15 to 19 years,Females,Other land transport accidents,0
+2019,20 to 24 years,Both sexes,Transport accidents,6.8
+2019,20 to 24 years,Both sexes,Motor vehicle accidents,6.2
+2019,20 to 24 years,Both sexes,Other land transport accidents,0.2
+2019,20 to 24 years,Males,Transport accidents,9.4
+2019,20 to 24 years,Males,Motor vehicle accidents,8.8
+2019,20 to 24 years,Males,Other land transport accidents,0.2
+2019,20 to 24 years,Females,Transport accidents,4
+2019,20 to 24 years,Females,Motor vehicle accidents,3.4
+2019,20 to 24 years,Females,Other land transport accidents,0.3
+2019,25 to 29 years,Both sexes,Transport accidents,4.8
+2019,25 to 29 years,Both sexes,Motor vehicle accidents,4.1
+2019,25 to 29 years,Both sexes,Other land transport accidents,0.3
+2019,25 to 29 years,Males,Transport accidents,6.9
+2019,25 to 29 years,Males,Motor vehicle accidents,5.7
+2019,25 to 29 years,Males,Other land transport accidents,0.7
+2019,25 to 29 years,Females,Transport accidents,2.5
+2019,25 to 29 years,Females,Motor vehicle accidents,2.4
+2019,25 to 29 years,Females,Other land transport accidents,0
+2019,30 to 34 years,Both sexes,Transport accidents,5
+2019,30 to 34 years,Both sexes,Motor vehicle accidents,4.6
+2019,30 to 34 years,Both sexes,Other land transport accidents,0.2
+2019,30 to 34 years,Males,Transport accidents,7.2
+2019,30 to 34 years,Males,Motor vehicle accidents,6.6
+2019,30 to 34 years,Males,Other land transport accidents,0.2
+2019,30 to 34 years,Females,Transport accidents,2.6
+2019,30 to 34 years,Females,Motor vehicle accidents,2.6
+2019,30 to 34 years,Females,Other land transport accidents,0.1
+2019,35 to 39 years,Both sexes,Transport accidents,3.6
+2019,35 to 39 years,Both sexes,Motor vehicle accidents,3.3
+2019,35 to 39 years,Both sexes,Other land transport accidents,0.2
+2019,35 to 39 years,Males,Transport accidents,5.4
+2019,35 to 39 years,Males,Motor vehicle accidents,4.9
+2019,35 to 39 years,Males,Other land transport accidents,0.3
+2019,35 to 39 years,Females,Transport accidents,1.9
+2019,35 to 39 years,Females,Motor vehicle accidents,1.8
+2019,35 to 39 years,Females,Other land transport accidents,0.1
+2019,40 to 44 years,Both sexes,Transport accidents,4.4
+2019,40 to 44 years,Both sexes,Motor vehicle accidents,3.8
+2019,40 to 44 years,Both sexes,Other land transport accidents,0.1
+2019,40 to 44 years,Males,Transport accidents,6.9
+2019,40 to 44 years,Males,Motor vehicle accidents,5.8
+2019,40 to 44 years,Males,Other land transport accidents,0.3
+2019,40 to 44 years,Females,Transport accidents,2
+2019,40 to 44 years,Females,Motor vehicle accidents,1.8
+2019,40 to 44 years,Females,Other land transport accidents,0
+2019,45 to 49 years,Both sexes,Transport accidents,4.6
+2019,45 to 49 years,Both sexes,Motor vehicle accidents,3.9
+2019,45 to 49 years,Both sexes,Other land transport accidents,0
+2019,45 to 49 years,Males,Transport accidents,6.9
+2019,45 to 49 years,Males,Motor vehicle accidents,5.8
+2019,45 to 49 years,Males,Other land transport accidents,0
+2019,45 to 49 years,Females,Transport accidents,2.4
+2019,45 to 49 years,Females,Motor vehicle accidents,2
+2019,45 to 49 years,Females,Other land transport accidents,0
+2019,50 to 54 years,Both sexes,Transport accidents,4.8
+2019,50 to 54 years,Both sexes,Motor vehicle accidents,4.2
+2019,50 to 54 years,Both sexes,Other land transport accidents,0.2
+2019,50 to 54 years,Males,Transport accidents,6.8
+2019,50 to 54 years,Males,Motor vehicle accidents,5.9
+2019,50 to 54 years,Males,Other land transport accidents,0.3
+2019,50 to 54 years,Females,Transport accidents,2.8
+2019,50 to 54 years,Females,Motor vehicle accidents,2.5
+2019,50 to 54 years,Females,Other land transport accidents,0.2
+2019,55 to 59 years,Both sexes,Transport accidents,5.3
+2019,55 to 59 years,Both sexes,Motor vehicle accidents,4.6
+2019,55 to 59 years,Both sexes,Other land transport accidents,0.1
+2019,55 to 59 years,Males,Transport accidents,8.6
+2019,55 to 59 years,Males,Motor vehicle accidents,7.3
+2019,55 to 59 years,Males,Other land transport accidents,0.3
+2019,55 to 59 years,Females,Transport accidents,2
+2019,55 to 59 years,Females,Motor vehicle accidents,2
+2019,55 to 59 years,Females,Other land transport accidents,0
+2019,60 to 64 years,Both sexes,Transport accidents,5.3
+2019,60 to 64 years,Both sexes,Motor vehicle accidents,4.5
+2019,60 to 64 years,Both sexes,Other land transport accidents,0.3
+2019,60 to 64 years,Males,Transport accidents,7.4
+2019,60 to 64 years,Males,Motor vehicle accidents,6.2
+2019,60 to 64 years,Males,Other land transport accidents,0.3
+2019,60 to 64 years,Females,Transport accidents,3.2
+2019,60 to 64 years,Females,Motor vehicle accidents,2.9
+2019,60 to 64 years,Females,Other land transport accidents,0.2
+2019,65 to 69 years,Both sexes,Transport accidents,6.3
+2019,65 to 69 years,Both sexes,Motor vehicle accidents,5.4
+2019,65 to 69 years,Both sexes,Other land transport accidents,0.3
+2019,65 to 69 years,Males,Transport accidents,9.1
+2019,65 to 69 years,Males,Motor vehicle accidents,7.5
+2019,65 to 69 years,Males,Other land transport accidents,0.5
+2019,65 to 69 years,Females,Transport accidents,3.7
+2019,65 to 69 years,Females,Motor vehicle accidents,3.4
+2019,65 to 69 years,Females,Other land transport accidents,0.1
+2019,70 to 74 years,Both sexes,Transport accidents,7.2
+2019,70 to 74 years,Both sexes,Motor vehicle accidents,6
+2019,70 to 74 years,Both sexes,Other land transport accidents,0.3
+2019,70 to 74 years,Males,Transport accidents,9.3
+2019,70 to 74 years,Males,Motor vehicle accidents,7.2
+2019,70 to 74 years,Males,Other land transport accidents,0.4
+2019,70 to 74 years,Females,Transport accidents,5.3
+2019,70 to 74 years,Females,Motor vehicle accidents,4.9
+2019,70 to 74 years,Females,Other land transport accidents,0.2
+2019,75 to 79 years,Both sexes,Transport accidents,9.1
+2019,75 to 79 years,Both sexes,Motor vehicle accidents,8.2
+2019,75 to 79 years,Both sexes,Other land transport accidents,0.3
+2019,75 to 79 years,Males,Transport accidents,13.1
+2019,75 to 79 years,Males,Motor vehicle accidents,11.2
+2019,75 to 79 years,Males,Other land transport accidents,0.7
+2019,75 to 79 years,Females,Transport accidents,5.6
+2019,75 to 79 years,Females,Motor vehicle accidents,5.6
+2019,75 to 79 years,Females,Other land transport accidents,0
+2019,80 to 84 years,Both sexes,Transport accidents,9
+2019,80 to 84 years,Both sexes,Motor vehicle accidents,8.4
+2019,80 to 84 years,Both sexes,Other land transport accidents,0.4
+2019,80 to 84 years,Males,Transport accidents,11.8
+2019,80 to 84 years,Males,Motor vehicle accidents,10.4
+2019,80 to 84 years,Males,Other land transport accidents,0.9
+2019,80 to 84 years,Females,Transport accidents,6.8
+2019,80 to 84 years,Females,Motor vehicle accidents,6.8
+2019,80 to 84 years,Females,Other land transport accidents,0
+2019,85 to 89 years,Both sexes,Transport accidents,9.8
+2019,85 to 89 years,Both sexes,Motor vehicle accidents,9.2
+2019,85 to 89 years,Both sexes,Other land transport accidents,0.4
+2019,85 to 89 years,Males,Transport accidents,12.7
+2019,85 to 89 years,Males,Motor vehicle accidents,12.2
+2019,85 to 89 years,Males,Other land transport accidents,0.5
+2019,85 to 89 years,Females,Transport accidents,7.8
+2019,85 to 89 years,Females,Motor vehicle accidents,7.2
+2019,85 to 89 years,Females,Other land transport accidents,0.3
+2019,90 years and over,Both sexes,Transport accidents,11.1
+2019,90 years and over,Both sexes,Motor vehicle accidents,10.5
+2019,90 years and over,Both sexes,Other land transport accidents,0
+2019,90 years and over,Males,Transport accidents,22.1
+2019,90 years and over,Males,Motor vehicle accidents,20.1
+2019,90 years and over,Males,Other land transport accidents,0
+2019,90 years and over,Females,Transport accidents,6.2
+2019,90 years and over,Females,Motor vehicle accidents,6.2
+2019,90 years and over,Females,Other land transport accidents,0
+2019,Not stated,Both sexes,Transport accidents,0
+2019,Not stated,Both sexes,Motor vehicle accidents,0
+2019,Not stated,Both sexes,Other land transport accidents,0
+2019,Not stated,Males,Transport accidents,0
+2019,Not stated,Males,Motor vehicle accidents,0
+2019,Not stated,Males,Other land transport accidents,0
+2019,Not stated,Females,Transport accidents,0
+2019,Not stated,Females,Motor vehicle accidents,0
+2019,Not stated,Females,Other land transport accidents,0
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-7-2.csv b/tests/assets/progress-calculation/data/temp/indicator_3-7-2.csv
new file mode 100644
index 00000000..49b8af0b
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-7-2.csv
@@ -0,0 +1,87 @@
+Year,Geography,Value
+2015,,9.4
+2016,,8.4
+2017,,7.8
+2018,,6.7
+2019,,6.2
+2020,,5.5
+2015,Canada,9.4
+2015,Newfoundland and Labrador,11.2
+2015,Prince Edward Island,10.2
+2015,Nova Scotia,12.9
+2015,New Brunswick,15.2
+2015,Quebec,7.2
+2015,Ontario,7.1
+2015,Manitoba,22
+2015,Saskatchewan,25.1
+2015,Alberta,12.8
+2015,British Columbia,6.2
+2015,Yukon,10
+2015,Northwest Territories,32.1
+2015,Nunavut,107
+2016,Canada,8.4
+2016,Newfoundland and Labrador,12.5
+2016,Prince Edward Island,8
+2016,Nova Scotia,11.4
+2016,New Brunswick,12.1
+2016,Quebec,6.6
+2016,Ontario,6.1
+2016,Manitoba,20.6
+2016,Saskatchewan,23.6
+2016,Alberta,11
+2016,British Columbia,5.3
+2016,Yukon,7
+2016,Northwest Territories,24.6
+2016,Nunavut,104
+2017,Canada,7.8
+2017,Newfoundland and Labrador,11
+2017,Prince Edward Island,8.9
+2017,Nova Scotia,11.3
+2017,New Brunswick,12.5
+2017,Quebec,6.2
+2017,Ontario,5.8
+2017,Manitoba,18.6
+2017,Saskatchewan,20.8
+2017,Alberta,9.9
+2017,British Columbia,4.7
+2017,Northwest Territories,32.6
+2017,Nunavut,97.8
+2018,Canada,6.7
+2018,Newfoundland and Labrador,10
+2018,Prince Edward Island,6.8
+2018,Nova Scotia,8.4
+2018,New Brunswick,10.7
+2018,Quebec,5.6
+2018,Ontario,4.7
+2018,Manitoba,17.6
+2018,Saskatchewan,19.9
+2018,Alberta,8.2
+2018,British Columbia,3.7
+2018,Northwest Territories,28.3
+2018,Nunavut,99.9
+2019,Canada,6.2
+2019,Newfoundland and Labrador,8.6
+2019,Prince Edward Island,6.2
+2019,Nova Scotia,9.3
+2019,New Brunswick,10
+2019,Quebec,5.5
+2019,Ontario,4.4
+2019,Manitoba,16
+2019,Saskatchewan,18.3
+2019,Alberta,6.9
+2019,British Columbia,3.7
+2019,Northwest Territories,23.7
+2019,Nunavut,92.5
+2020,Canada,5.5
+2020,Newfoundland and Labrador,6.4
+2020,Prince Edward Island,5.9
+2020,Nova Scotia,7.4
+2020,New Brunswick,8.6
+2020,Quebec,5.2
+2020,Ontario,3.8
+2020,Manitoba,12.1
+2020,Saskatchewan,16.7
+2020,Alberta,6.6
+2020,British Columbia,3.5
+2020,Northwest Territories,17.9
+2020,Nunavut,86
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-a-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-a-1.csv
new file mode 100644
index 00000000..4b6c7049
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-a-1.csv
@@ -0,0 +1,175 @@
+Year,Sex,Age Group,Tobacco Product,Value
+2015,,,,15.5
+2017,,,,17.8
+2019,,,,14
+2015,Both sexes,All age groups,Cigarettes,13.2
+2015,Both sexes,All age groups,Cigars,1.2
+2015,Both sexes,All age groups,Little cigars or cigarillos,1.8
+2015,Both sexes,All age groups,Pipe,0.5
+2015,Both sexes,All age groups,Smokeless tobacco,0.4
+2015,Both sexes,All age groups,Water pipe w tobacco,0.5
+2015,Both sexes,All age groups,E-cigarettes,3.2
+2015,Both sexes,15-19,Any tobacco product,13.1
+2015,Both sexes,15-19,Cigarettes,9.8
+2015,Both sexes,15-19,Cigars,1.3
+2015,Both sexes,15-19,Little cigars or cigarillos,3
+2015,Both sexes,15-19,Smokeless tobacco,0.9
+2015,Both sexes,15-19,Water pipe w tobacco,1.7
+2015,Both sexes,15-19,E-cigarettes,6.3
+2015,Both sexes,20-24,Any tobacco product,23.8
+2015,Both sexes,20-24,Cigarettes,18.9
+2015,Both sexes,20-24,Cigars,2.3
+2015,Both sexes,20-24,Little cigars or cigarillos,5.7
+2015,Both sexes,20-24,Pipe,1.5
+2015,Both sexes,20-24,Smokeless tobacco,1.8
+2015,Both sexes,20-24,Water pipe w tobacco,2.7
+2015,Both sexes,20-24,E-cigarettes,6.3
+2015,Both sexes,25+,Any tobacco product,14.9
+2015,Both sexes,25+,Cigarettes,12.9
+2015,Both sexes,25+,Cigars,1.1
+2015,Both sexes,25+,Little cigars or cigarillos,1.3
+2015,Both sexes,25+,Pipe,0.4
+2015,Both sexes,25+,Smokeless tobacco,0.2
+2015,Both sexes,25+,E-cigarettes,2.6
+2015,Both sexes,25-44,Any tobacco product,17.8
+2015,Both sexes,25-44,Cigarettes,15.3
+2015,Both sexes,25-44,Cigars,1.1
+2015,Both sexes,25-44,Little cigars or cigarillos,1.7
+2015,Both sexes,25-44,E-cigarettes,3.4
+2015,Both sexes,45+,Any tobacco product,13
+2015,Both sexes,45+,Cigarettes,11.4
+2015,Both sexes,45+,Cigars,1
+2015,Both sexes,45+,Little cigars or cigarillos,1
+2015,Both sexes,45+,E-cigarettes,2.1
+2017,Both sexes,All age groups,Cigarettes,15.3
+2017,Both sexes,All age groups,Cigars,0.8
+2017,Both sexes,All age groups,Little cigars or cigarillos,1.4
+2017,Both sexes,All age groups,Pipe,0.3
+2017,Both sexes,All age groups,Smokeless tobacco,0.7
+2017,Both sexes,All age groups,Water pipe w tobacco,0.7
+2017,Both sexes,All age groups,E-cigarettes,2.9
+2017,Both sexes,15-19,Any tobacco product,9.2
+2017,Both sexes,15-19,Cigarettes,6.6
+2017,Both sexes,15-19,Cigars,1
+2017,Both sexes,15-19,Little cigars or cigarillos,2.2
+2017,Both sexes,15-19,Smokeless tobacco,1.6
+2017,Both sexes,15-19,Water pipe w tobacco,1.5
+2017,Both sexes,15-19,E-cigarettes,6.3
+2017,Both sexes,20-24,Any tobacco product,20.6
+2017,Both sexes,20-24,Cigarettes,15.6
+2017,Both sexes,20-24,Cigars,2.1
+2017,Both sexes,20-24,Little cigars or cigarillos,3.7
+2017,Both sexes,20-24,Smokeless tobacco,1.4
+2017,Both sexes,20-24,Water pipe w tobacco,3.1
+2017,Both sexes,20-24,E-cigarettes,6
+2017,Both sexes,25-44,Any tobacco product,22.4
+2017,Both sexes,25-44,Cigarettes,18.7
+2017,Both sexes,25-44,Little cigars or cigarillos,1.9
+2017,Both sexes,25-44,E-cigarettes,3.2
+2017,Both sexes,25+,Any tobacco product,18.2
+2017,Both sexes,25+,Cigarettes,16
+2017,Both sexes,25+,Cigars,0.6
+2017,Both sexes,25+,Little cigars or cigarillos,1.1
+2017,Both sexes,25+,E-cigarettes,2.3
+2017,Both sexes,45+,Any tobacco product,15.6
+2017,Both sexes,45+,Cigarettes,14.2
+2017,Both sexes,45+,Little cigars or cigarillos,0.6
+2017,Both sexes,45+,E-cigarettes,1.7
+2019,Both sexes,All age groups,Cigarettes,11.9
+2019,Both sexes,All age groups,Cigars,1.4
+2019,Both sexes,All age groups,Little cigars or cigarillos,1.9
+2019,Both sexes,All age groups,Chewing tobacco,0.4
+2019,Both sexes,All age groups,Water pipe w tobacco,0.4
+2019,Both sexes,All age groups,Vaping,4.7
+2019,Both sexes,15-19,Any tobacco product,7.4
+2019,Both sexes,15-19,Cigarettes,5.1
+2019,Both sexes,15-19,Vaping,15.1
+2019,Both sexes,20-24,Any tobacco product,18.3
+2019,Both sexes,20-24,Cigarettes,13.3
+2019,Both sexes,20-24,Little cigars or cigarillos,3.9
+2019,Both sexes,20-24,Vaping,15.2
+2019,Both sexes,25+,Any tobacco product,14.4
+2019,Both sexes,25+,Cigarettes,12.5
+2019,Both sexes,25+,Cigars,1.3
+2019,Both sexes,25+,Little cigars or cigarillos,1.7
+2019,Both sexes,25+,Vaping,2.9
+2019,Both sexes,25-44,Any tobacco product,16
+2019,Both sexes,25-44,Cigarettes,13.2
+2019,Both sexes,25-44,Little cigars or cigarillos,1.7
+2019,Both sexes,25-44,Vaping,5
+2019,Both sexes,45+,Any tobacco product,13.4
+2019,Both sexes,45+,Cigarettes,12
+2019,Both sexes,45+,Cigars,0.9
+2019,Both sexes,45+,Little cigars or cigarillos,1.6
+2019,Both sexes,45+,Vaping,1.6
+2015,Female,All age groups,Any tobacco product,11.6
+2015,Female,All age groups,Cigarettes,10.6
+2015,Female,All age groups,Little cigars or cigarillos,0.9
+2015,Female,All age groups,Pipe,0.3
+2015,Female,All age groups,Water pipe w tobacco,0.4
+2015,Female,All age groups,E-cigarettes,2.8
+2017,Female,All age groups,Any tobacco product,14.4
+2017,Female,All age groups,Cigarettes,13.6
+2017,Female,All age groups,Cigars,0.1
+2017,Female,All age groups,Water pipe w tobacco,0.5
+2017,Female,All age groups,E-cigarettes,2.2
+2015,Male,All age groups,Any tobacco product,19.5
+2015,Male,All age groups,Cigarettes,15.8
+2015,Male,All age groups,Cigars,2.2
+2015,Male,All age groups,Little cigars or cigarillos,2.7
+2015,Male,All age groups,Pipe,0.8
+2015,Male,All age groups,Smokeless tobacco,0.8
+2015,Male,All age groups,Water pipe w tobacco,0.7
+2015,Male,All age groups,E-cigarettes,3.6
+2017,Male,All age groups,Any tobacco product,21.2
+2017,Male,All age groups,Cigarettes,17
+2017,Male,All age groups,Cigars,1.5
+2017,Male,All age groups,Little cigars or cigarillos,2.1
+2017,Male,All age groups,Smokeless tobacco,1.5
+2017,Male,All age groups,Water pipe w tobacco,0.9
+2017,Male,All age groups,E-cigarettes,3.6
+2019,Male,All age groups,Any tobacco product,15.9
+2019,Male,All age groups,Cigarettes,12.6
+2019,Male,All age groups,Cigars,2.4
+2019,Male,All age groups,Little cigars or cigarillos,2.8
+2019,Male,All age groups,Chewing tobacco,0.7
+2019,Male,All age groups,Water pipe w tobacco,0.5
+2019,Male,All age groups,Vaping,5.8
+2019,Male,15-19,Any tobacco product,9.1
+2019,Male,15-19,Cigarettes,6
+2019,Male,15-19,Vaping,16.1
+2019,Male,20-24,Any tobacco product,21.6
+2019,Male,20-24,Cigarettes,15.3
+2019,Male,20-24,Vaping,18
+2019,Male,25+,Any tobacco product,16.3
+2019,Male,25+,Cigarettes,13.2
+2019,Male,25+,Cigars,2.3
+2019,Male,25+,Little cigars or cigarillos,2.6
+2019,Male,25+,Vaping,3.8
+2019,Male,25-44,Any tobacco product,18.2
+2019,Male,25-44,Cigarettes,13.7
+2019,Male,25-44,Vaping,6.7
+2019,Male,45+,Any tobacco product,15.1
+2019,Male,45+,Cigarettes,12.9
+2019,Male,45+,Cigars,1.5
+2019,Male,45+,Little cigars or cigarillos,2.6
+2019,Male,45+,Vaping,1.9
+2019,Female,All age groups,Any tobacco product,12
+2019,Female,All age groups,Cigarettes,11
+2019,Female,All age groups,Little cigars or cigarillos,1
+2019,Female,All age groups,Vaping,3.6
+2019,Female,15-19,Any tobacco product,5
+2019,Female,15-19,Vaping,13.6
+2019,Female,20-24,Any tobacco product,14.2
+2019,Female,20-24,Cigarettes,10.6
+2019,Female,20-24,Vaping,11.8
+2019,Female,25+,Any tobacco product,12.5
+2019,Female,25+,Cigarettes,11.8
+2019,Female,25+,Little cigars or cigarillos,0.8
+2019,Female,25+,Vaping,2.1
+2019,Female,25-44,Any tobacco product,13.8
+2019,Female,25-44,Cigarettes,12.8
+2019,Female,25-44,Vaping,3.3
+2019,Female,45+,Any tobacco product,11.8
+2019,Female,45+,Cigarettes,11.3
+2019,Female,45+,Vaping,1.3
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-b-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-b-1.csv
new file mode 100644
index 00000000..d34ceb21
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-b-1.csv
@@ -0,0 +1,45 @@
+Year,Antigen,Value
+2013,Diphtheria 4 doses,76.6
+2015,Diphtheria 4 doses,76.9
+2017,Diphtheria 4 doses,75.8
+2019,Diphtheria 4 doses,77.5
+2013,Pertussis 4 doses,76.4
+2015,Pertussis 4 doses,77
+2017,Pertussis 4 doses,75.8
+2019,Pertussis 4 doses,77.5
+2013,Tetanus 4 doses,76.4
+2015,Tetanus 4 doses,76.7
+2017,Tetanus 4 doses,75.8
+2019,Tetanus 4 doses,77.5
+2013,Polio 3 doses,90.9
+2015,Polio 3 doses,91.2
+2017,Polio 3 doses,90.7
+2019,Polio 3 doses,91.9
+2013,Hib 4 doses,71.9
+2015,Hib 4 doses,71.9
+2017,Hib 4 doses,73.4
+2019,Hib 4 doses,74.4
+2013,Measles 1 dose,89.7
+2015,Measles 1 dose,89.2
+2017,Measles 1 dose,90.2
+2019,Measles 1 dose,90.2
+2013,Mumps 1 dose,89.4
+2015,Mumps 1 dose,88.9
+2017,Mumps 1 dose,89.9
+2019,Mumps 1 dose,89.2
+2013,Rubella 1 dose,89.4
+2015,Rubella 1 dose,88.9
+2017,Rubella 1 dose,90
+2019,Rubella 1 dose,89.4
+2013,Meningococcal C 1 dose,88.7
+2015,Meningococcal C 1 dose,87.8
+2017,Meningococcal C 1 dose,87.6
+2019,Meningococcal C 1 dose,91.1
+2013,Pneumococcal 3 doses,79.2
+2015,Pneumococcal 3 doses,80.3
+2017,Pneumococcal 3 doses,79.1
+2019,Pneumococcal 3 doses,84.4
+2013,Varicella 1 dose,NA
+2015,Varicella 1 dose,NA
+2017,Varicella 1 dose,82.9
+2019,Varicella 1 dose,82.7
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-c-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-c-1.csv
new file mode 100644
index 00000000..317711b7
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-c-1.csv
@@ -0,0 +1,2311 @@
+Year,Geography,Type of provider,Value
+2015,Canada,Audiologists,5.06
+2016,Canada,Audiologists,5.19
+2017,Canada,Audiologists,5.27
+2018,Canada,Audiologists,5.42
+2019,Canada,Audiologists,5.56
+2015,Canada,Chiropractors,23.66
+2016,Canada,Chiropractors,23.99
+2017,Canada,Chiropractors,24.27
+2018,Canada,Chiropractors,24.69
+2019,Canada,Chiropractors,25.09
+2015,Canada,Dental assistants,53.46
+2016,Canada,Dental assistants,57.52
+2017,Canada,Dental assistants,63.93
+2018,Canada,Dental assistants,45.52
+2019,Canada,Dental assistants,52.89
+2015,Canada,Dental hygienists,80
+2016,Canada,Dental hygienists,80.86
+2017,Canada,Dental hygienists,80.87
+2018,Canada,Dental hygienists,78.93
+2019,Canada,Dental hygienists,81.54
+2015,Canada,Dentists,63.05
+2016,Canada,Dentists,64.01
+2017,Canada,Dentists,64.4
+2018,Canada,Dentists,66.73
+2019,Canada,Dentists,52.5
+2015,Canada,Dietitians,31.58
+2016,Canada,Dietitians,32.27
+2017,Canada,Dietitians,32.64
+2018,Canada,Dietitians,32.84
+2019,Canada,Dietitians,24.59
+2015,Canada,Environmental public health professionals,4.55
+2016,Canada,Environmental public health professionals,4.68
+2017,Canada,Environmental public health professionals,4.76
+2018,Canada,Environmental public health professionals,4.78
+2019,Canada,Environmental public health professionals,4.71
+2015,Canada,Family medicine,116.38
+2016,Canada,Family medicine,117.76
+2017,Canada,Family medicine,120.94
+2018,Canada,Family medicine,122.76
+2019,Canada,Family medicine,124.48
+2015,Canada,Genetic counsellors,0.88
+2016,Canada,Genetic counsellors,0.88
+2017,Canada,Genetic counsellors,0.8
+2018,Canada,Genetic counsellors,0.9
+2019,Canada,Genetic counsellors,0.95
+2015,Canada,Health information management professionals,0
+2016,Canada,Health information management professionals,12.68
+2017,Canada,Health information management professionals,13.03
+2018,Canada,Health information management professionals,1.44
+2019,Canada,Health information management professionals,11.94
+2015,Canada,Licensed practical nurses,317.81
+2016,Canada,Licensed practical nurses,322.87
+2017,Canada,Licensed practical nurses,325.84
+2018,Canada,Licensed practical nurses,331.18
+2019,Canada,Licensed practical nurses,342.96
+2015,Canada,Medical laboratory technologists,58.12
+2016,Canada,Medical laboratory technologists,53.4
+2017,Canada,Medical laboratory technologists,55.75
+2018,Canada,Medical laboratory technologists,54.44
+2019,Canada,Medical laboratory technologists,54.1
+2015,Canada,Medical physicists,1.31
+2016,Canada,Medical physicists,1.28
+2017,Canada,Medical physicists,1.35
+2018,Canada,Medical physicists,1.41
+2019,Canada,Medical physicists,1.37
+2015,Canada,Medical radiation technologists,54.31
+2016,Canada,Medical radiation technologists,57.36
+2017,Canada,Medical radiation technologists,58.03
+2018,Canada,Medical radiation technologists,67.55
+2019,Canada,Medical radiation technologists,68.64
+2015,Canada,Midwives,3.49
+2016,Canada,Midwives,3.87
+2017,Canada,Midwives,4.18
+2018,Canada,Midwives,4.18
+2019,Canada,Midwives,4.32
+2015,Canada,Nurse practitioners,12.07
+2016,Canada,Nurse practitioners,13.27
+2017,Canada,Nurse practitioners,14.28
+2018,Canada,Nurse practitioners,15.24
+2019,Canada,Nurse practitioners,16.5
+2015,Canada,Occupational therapists,46.36
+2016,Canada,Occupational therapists,47.17
+2017,Canada,Occupational therapists,48.37
+2018,Canada,Occupational therapists,49.26
+2019,Canada,Occupational therapists,51.02
+2015,Canada,Opticians,5.46
+2016,Canada,Opticians,22.33
+2017,Canada,Opticians,15.54
+2018,Canada,Opticians,0
+2019,Canada,Opticians,9.73
+2015,Canada,Optometrists,16.58
+2016,Canada,Optometrists,16.89
+2017,Canada,Optometrists,17.02
+2018,Canada,Optometrists,17.16
+2019,Canada,Optometrists,17.83
+2015,Canada,Paramedics,77.77
+2016,Canada,Paramedics,88.07
+2017,Canada,Paramedics,92.63
+2018,Canada,Paramedics,93.93
+2019,Canada,Paramedics,95.48
+2015,Canada,Pharmacists,109.97
+2016,Canada,Pharmacists,113.23
+2017,Canada,Pharmacists,114.51
+2018,Canada,Pharmacists,115.7
+2019,Canada,Pharmacists,118.04
+2015,Canada,Pharmacy technicians,18.49
+2016,Canada,Pharmacy technicians,20.32
+2017,Canada,Pharmacy technicians,22.4
+2018,Canada,Pharmacy technicians,23.92
+2019,Canada,Pharmacy technicians,25.81
+2015,Canada,Physician assistants,1.21
+2016,Canada,Physician assistants,1.49
+2017,Canada,Physician assistants,0.39
+2018,Canada,Physician assistants,1.8
+2019,Canada,Physician assistants,2.13
+2015,Canada,Physicians,230.23
+2016,Canada,Physicians,232.8
+2017,Canada,Physicians,237.12
+2018,Canada,Physicians,242.62
+2019,Canada,Physicians,246.57
+2015,Canada,Physiotherapists,60.99
+2016,Canada,Physiotherapists,62.01
+2017,Canada,Physiotherapists,62.9
+2018,Canada,Physiotherapists,66.55
+2019,Canada,Physiotherapists,68.25
+2015,Canada,Psychologists,37.93
+2016,Canada,Psychologists,50.53
+2017,Canada,Psychologists,50.6
+2018,Canada,Psychologists,50.71
+2019,Canada,Psychologists,51.55
+2015,Canada,Registered nurses,815.93
+2016,Canada,Registered nurses,811.1
+2017,Canada,Registered nurses,806.6
+2018,Canada,Registered nurses,800.46
+2019,Canada,Registered nurses,809.35
+2015,Canada,Registered psychiatric nurses,16.16
+2016,Canada,Registered psychiatric nurses,16.24
+2017,Canada,Registered psychiatric nurses,16.25
+2018,Canada,Registered psychiatric nurses,16.27
+2019,Canada,Registered psychiatric nurses,16.33
+2015,Canada,Regulated nurses,1161.4
+2016,Canada,Regulated nurses,1162.88
+2017,Canada,Regulated nurses,1162.32
+2018,Canada,Regulated nurses,1162.5
+2019,Canada,Regulated nurses,1184.45
+2015,Canada,Respiratory therapists,30.73
+2016,Canada,Respiratory therapists,32
+2017,Canada,Respiratory therapists,29.79
+2018,Canada,Respiratory therapists,29.08
+2019,Canada,Respiratory therapists,33.17
+2015,Canada,Social workers,135.82
+2016,Canada,Social workers,144.79
+2017,Canada,Social workers,141.92
+2018,Canada,Social workers,145.47
+2019,Canada,Social workers,142.54
+2015,Canada,Specialists,113.85
+2016,Canada,Specialists,115.04
+2017,Canada,Specialists,116.18
+2018,Canada,Specialists,119.86
+2019,Canada,Specialists,122.08
+2015,Canada,Speech–language pathologists,25.06
+2016,Canada,Speech–language pathologists,25.94
+2017,Canada,Speech–language pathologists,26.71
+2018,Canada,Speech–language pathologists,27.71
+2019,Canada,Speech–language pathologists,27.82
+2015,Newfoundland and Labrador,Audiologists,6.25
+2016,Newfoundland and Labrador,Audiologists,7.37
+2017,Newfoundland and Labrador,Audiologists,7.19
+2018,Newfoundland and Labrador,Audiologists,7.04
+2019,Newfoundland and Labrador,Audiologists,7.42
+2015,Newfoundland and Labrador,Chiropractors,
+2016,Newfoundland and Labrador,Chiropractors,12.84
+2017,Newfoundland and Labrador,Chiropractors,13.05
+2018,Newfoundland and Labrador,Chiropractors,13.32
+2019,Newfoundland and Labrador,Chiropractors,
+2015,Newfoundland and Labrador,Dental assistants,
+2016,Newfoundland and Labrador,Dental assistants,48.73
+2017,Newfoundland and Labrador,Dental assistants,53.16
+2018,Newfoundland and Labrador,Dental assistants,
+2019,Newfoundland and Labrador,Dental assistants,
+2015,Newfoundland and Labrador,Dental hygienists,39.2
+2016,Newfoundland and Labrador,Dental hygienists,40.61
+2017,Newfoundland and Labrador,Dental hygienists,41.81
+2018,Newfoundland and Labrador,Dental hygienists,41.88
+2019,Newfoundland and Labrador,Dental hygienists,44.35
+2015,Newfoundland and Labrador,Dentists,38.82
+2016,Newfoundland and Labrador,Dentists,38.91
+2017,Newfoundland and Labrador,Dentists,42.19
+2018,Newfoundland and Labrador,Dentists,44.73
+2019,Newfoundland and Labrador,Dentists,41.31
+2015,Newfoundland and Labrador,Dietitians,33.7
+2016,Newfoundland and Labrador,Dietitians,34
+2017,Newfoundland and Labrador,Dietitians,33.49
+2018,Newfoundland and Labrador,Dietitians,35.21
+2019,Newfoundland and Labrador,Dietitians,34.45
+2015,Newfoundland and Labrador,Environmental public health professionals,5.3
+2016,Newfoundland and Labrador,Environmental public health professionals,4.16
+2017,Newfoundland and Labrador,Environmental public health professionals,3.78
+2018,Newfoundland and Labrador,Environmental public health professionals,5.52
+2019,Newfoundland and Labrador,Environmental public health professionals,5.52
+2015,Newfoundland and Labrador,Genetic counsellors,1.7
+2016,Newfoundland and Labrador,Genetic counsellors,1.51
+2017,Newfoundland and Labrador,Genetic counsellors,1.7
+2018,Newfoundland and Labrador,Genetic counsellors,1.9
+2019,Newfoundland and Labrador,Genetic counsellors,1.71
+2015,Newfoundland and Labrador,Health information management professionals,
+2016,Newfoundland and Labrador,Health information management professionals,17.57
+2017,Newfoundland and Labrador,Health information management professionals,17.22
+2018,Newfoundland and Labrador,Health information management professionals,
+2019,Newfoundland and Labrador,Health information management professionals,18.65
+2015,Newfoundland and Labrador,Medical laboratory technologists,102.63
+2016,Newfoundland and Labrador,Medical laboratory technologists,96.9
+2017,Newfoundland and Labrador,Medical laboratory technologists,97.62
+2018,Newfoundland and Labrador,Medical laboratory technologists,97.27
+2019,Newfoundland and Labrador,Medical laboratory technologists,98.41
+2015,Newfoundland and Labrador,Medical physicists,1.14
+2016,Newfoundland and Labrador,Medical physicists,1.13
+2017,Newfoundland and Labrador,Medical physicists,1.51
+2018,Newfoundland and Labrador,Medical physicists,1.71
+2019,Newfoundland and Labrador,Medical physicists,1.52
+2015,Newfoundland and Labrador,Medical radiation technologists,68.36
+2016,Newfoundland and Labrador,Medical radiation technologists,70.08
+2017,Newfoundland and Labrador,Medical radiation technologists,74.16
+2018,Newfoundland and Labrador,Medical radiation technologists,75.38
+2019,Newfoundland and Labrador,Medical radiation technologists,74.05
+2015,Newfoundland and Labrador,Midwives,
+2016,Newfoundland and Labrador,Midwives,0
+2017,Newfoundland and Labrador,Midwives,0.19
+2018,Newfoundland and Labrador,Midwives,0.38
+2019,Newfoundland and Labrador,Midwives,0.76
+2015,Newfoundland and Labrador,Occupational therapists,38.82
+2016,Newfoundland and Labrador,Occupational therapists,39.29
+2017,Newfoundland and Labrador,Occupational therapists,38.78
+2018,Newfoundland and Labrador,Occupational therapists,40.73
+2019,Newfoundland and Labrador,Occupational therapists,40.92
+2015,Newfoundland and Labrador,Opticians,
+2016,Newfoundland and Labrador,Opticians,21.91
+2017,Newfoundland and Labrador,Opticians,23.65
+2018,Newfoundland and Labrador,Opticians,
+2019,Newfoundland and Labrador,Opticians,23.41
+2015,Newfoundland and Labrador,Optometrists,11.55
+2016,Newfoundland and Labrador,Optometrists,11.52
+2017,Newfoundland and Labrador,Optometrists,11.73
+2018,Newfoundland and Labrador,Optometrists,12.18
+2019,Newfoundland and Labrador,Optometrists,13.51
+2015,Newfoundland and Labrador,Paramedics,
+2016,Newfoundland and Labrador,Paramedics,
+2017,Newfoundland and Labrador,Paramedics,189.57
+2018,Newfoundland and Labrador,Paramedics,186.16
+2019,Newfoundland and Labrador,Paramedics,
+2015,Newfoundland and Labrador,Pharmacists,135.95
+2016,Newfoundland and Labrador,Pharmacists,142.04
+2017,Newfoundland and Labrador,Pharmacists,138.87
+2018,Newfoundland and Labrador,Pharmacists,143.9
+2019,Newfoundland and Labrador,Pharmacists,143.14
+2015,Newfoundland and Labrador,Pharmacy technicians,1.14
+2016,Newfoundland and Labrador,Pharmacy technicians,2.64
+2017,Newfoundland and Labrador,Pharmacy technicians,26.3
+2018,Newfoundland and Labrador,Pharmacy technicians,33.12
+2019,Newfoundland and Labrador,Pharmacy technicians,37.69
+2015,Newfoundland and Labrador,Physician assistants,0.19
+2016,Newfoundland and Labrador,Physician assistants,
+2017,Newfoundland and Labrador,Physician assistants,0.19
+2018,Newfoundland and Labrador,Physician assistants,0.38
+2019,Newfoundland and Labrador,Physician assistants,0.19
+2015,Newfoundland and Labrador,Physicians,242.75
+2016,Newfoundland and Labrador,Physicians,248.38
+2017,Newfoundland and Labrador,Physicians,254.84
+2018,Newfoundland and Labrador,Physicians,269.15
+2019,Newfoundland and Labrador,Physicians,258.3
+2015,Newfoundland and Labrador,Family medicine,126.11
+2016,Newfoundland and Labrador,Family medicine,128.82
+2017,Newfoundland and Labrador,Family medicine,137.73
+2018,Newfoundland and Labrador,Family medicine,137.81
+2019,Newfoundland and Labrador,Family medicine,131.72
+2015,Newfoundland and Labrador,Specialists,116.64
+2016,Newfoundland and Labrador,Specialists,119.56
+2017,Newfoundland and Labrador,Specialists,117.11
+2018,Newfoundland and Labrador,Specialists,131.34
+2019,Newfoundland and Labrador,Specialists,126.58
+2015,Newfoundland and Labrador,Physiotherapists,50.94
+2016,Newfoundland and Labrador,Physiotherapists,52.7
+2017,Newfoundland and Labrador,Physiotherapists,53.73
+2018,Newfoundland and Labrador,Physiotherapists,55.96
+2019,Newfoundland and Labrador,Physiotherapists,57.1
+2015,Newfoundland and Labrador,Psychologists,44.69
+2016,Newfoundland and Labrador,Psychologists,47.79
+2017,Newfoundland and Labrador,Psychologists,47.3
+2018,Newfoundland and Labrador,Psychologists,48.35
+2019,Newfoundland and Labrador,Psychologists,53.49
+2015,Newfoundland and Labrador,Regulated nurses,1599.65
+2016,Newfoundland and Labrador,Regulated nurses,1609.1
+2017,Newfoundland and Labrador,Regulated nurses,1615.12
+2018,Newfoundland and Labrador,Regulated nurses,1601.39
+2019,Newfoundland and Labrador,Regulated nurses,1588.26
+2015,Newfoundland and Labrador,Licensed practical nurses,436.27
+2016,Newfoundland and Labrador,Licensed practical nurses,443.31
+2017,Newfoundland and Labrador,Licensed practical nurses,454.63
+2018,Newfoundland and Labrador,Licensed practical nurses,452.27
+2019,Newfoundland and Labrador,Licensed practical nurses,454.93
+2015,Newfoundland and Labrador,Nurse practitioners,25.75
+2016,Newfoundland and Labrador,Nurse practitioners,28.14
+2017,Newfoundland and Labrador,Nurse practitioners,31.22
+2018,Newfoundland and Labrador,Nurse practitioners,31.98
+2019,Newfoundland and Labrador,Nurse practitioners,34.83
+2015,Newfoundland and Labrador,Registered nurses,1137.63
+2016,Newfoundland and Labrador,Registered nurses,1137.65
+2017,Newfoundland and Labrador,Registered nurses,1129.28
+2018,Newfoundland and Labrador,Registered nurses,1117.15
+2019,Newfoundland and Labrador,Registered nurses,1098.5
+2015,Newfoundland and Labrador,Registered psychiatric nurses,
+2016,Newfoundland and Labrador,Registered psychiatric nurses,
+2017,Newfoundland and Labrador,Registered psychiatric nurses,
+2018,Newfoundland and Labrador,Registered psychiatric nurses,
+2019,Newfoundland and Labrador,Registered psychiatric nurses,
+2015,Newfoundland and Labrador,Respiratory therapists,26.7
+2016,Newfoundland and Labrador,Respiratory therapists,28.14
+2017,Newfoundland and Labrador,Respiratory therapists,28
+2018,Newfoundland and Labrador,Respiratory therapists,29.69
+2019,Newfoundland and Labrador,Respiratory therapists,30.84
+2015,Newfoundland and Labrador,Social workers,283.65
+2016,Newfoundland and Labrador,Social workers,284.84
+2017,Newfoundland and Labrador,Social workers,288.71
+2018,Newfoundland and Labrador,Social workers,295.61
+2019,Newfoundland and Labrador,Social workers,300.75
+2015,Newfoundland and Labrador,Speech–language pathologists,25.18
+2016,Newfoundland and Labrador,Speech–language pathologists,26.63
+2017,Newfoundland and Labrador,Speech–language pathologists,26.87
+2018,Newfoundland and Labrador,Speech–language pathologists,27.98
+2019,Newfoundland and Labrador,Speech–language pathologists,28.17
+2015,Prince Edward Island,Audiologists,3.46
+2016,Prince Edward Island,Audiologists,3.4
+2017,Prince Edward Island,Audiologists,3.32
+2018,Prince Edward Island,Audiologists,4.57
+2019,Prince Edward Island,Audiologists,6.53
+2015,Prince Edward Island,Chiropractors,
+2016,Prince Edward Island,Chiropractors,5.44
+2017,Prince Edward Island,Chiropractors,7.97
+2018,Prince Edward Island,Chiropractors,9.14
+2019,Prince Edward Island,Chiropractors,7.18
+2015,Prince Edward Island,Dental assistants,
+2016,Prince Edward Island,Dental assistants,
+2017,Prince Edward Island,Dental assistants,
+2018,Prince Edward Island,Dental assistants,
+2019,Prince Edward Island,Dental assistants,
+2015,Prince Edward Island,Dental hygienists,60.19
+2016,Prince Edward Island,Dental hygienists,60.56
+2017,Prince Edward Island,Dental hygienists,61.1
+2018,Prince Edward Island,Dental hygienists,61.99
+2019,Prince Edward Island,Dental hygienists,
+2015,Prince Edward Island,Dentists,53.27
+2016,Prince Edward Island,Dentists,54.43
+2017,Prince Edward Island,Dentists,53.13
+2018,Prince Edward Island,Dentists,54.81
+2019,Prince Edward Island,Dentists,49.59
+2015,Prince Edward Island,Dietitians,
+2016,Prince Edward Island,Dietitians,
+2017,Prince Edward Island,Dietitians,52.47
+2018,Prince Edward Island,Dietitians,54.81
+2019,Prince Edward Island,Dietitians,60.03
+2015,Prince Edward Island,Environmental public health professionals,6.92
+2016,Prince Edward Island,Environmental public health professionals,7.48
+2017,Prince Edward Island,Environmental public health professionals,7.97
+2018,Prince Edward Island,Environmental public health professionals,7.18
+2019,Prince Edward Island,Environmental public health professionals,5.22
+2015,Prince Edward Island,Genetic counsellors,
+2016,Prince Edward Island,Genetic counsellors,
+2017,Prince Edward Island,Genetic counsellors,
+2018,Prince Edward Island,Genetic counsellors,
+2019,Prince Edward Island,Genetic counsellors,0.65
+2015,Prince Edward Island,Health information management professionals,
+2016,Prince Edward Island,Health information management professionals,15.65
+2017,Prince Edward Island,Health information management professionals,15.94
+2018,Prince Edward Island,Health information management professionals,
+2019,Prince Edward Island,Health information management professionals,16.31
+2015,Prince Edward Island,Medical laboratory technologists,84.4
+2016,Prince Edward Island,Medical laboratory technologists,83.01
+2017,Prince Edward Island,Medical laboratory technologists,75.05
+2018,Prince Edward Island,Medical laboratory technologists,73.09
+2019,Prince Edward Island,Medical laboratory technologists,74.39
+2015,Prince Edward Island,Medical physicists,4.15
+2016,Prince Edward Island,Medical physicists,4.76
+2017,Prince Edward Island,Medical physicists,3.98
+2018,Prince Edward Island,Medical physicists,3.92
+2019,Prince Edward Island,Medical physicists,3.92
+2015,Prince Edward Island,Medical radiation technologists,76.1
+2016,Prince Edward Island,Medical radiation technologists,75.53
+2017,Prince Edward Island,Medical radiation technologists,75.05
+2018,Prince Edward Island,Medical radiation technologists,73.74
+2019,Prince Edward Island,Medical radiation technologists,70.48
+2015,Prince Edward Island,Midwives,
+2016,Prince Edward Island,Midwives,
+2017,Prince Edward Island,Midwives,
+2018,Prince Edward Island,Midwives,
+2019,Prince Edward Island,Midwives,
+2015,Prince Edward Island,Occupational therapists,40.13
+2016,Prince Edward Island,Occupational therapists,42.19
+2017,Prince Edward Island,Occupational therapists,42.51
+2018,Prince Edward Island,Occupational therapists,43.07
+2019,Prince Edward Island,Occupational therapists,45.68
+2015,Prince Edward Island,Opticians,
+2016,Prince Edward Island,Opticians,25.86
+2017,Prince Edward Island,Opticians,17.93
+2018,Prince Edward Island,Opticians,
+2019,Prince Edward Island,Opticians,20.23
+2015,Prince Edward Island,Optometrists,14.53
+2016,Prince Edward Island,Optometrists,14.29
+2017,Prince Edward Island,Optometrists,13.95
+2018,Prince Edward Island,Optometrists,15.01
+2019,Prince Edward Island,Optometrists,15.01
+2015,Prince Edward Island,Paramedics,
+2016,Prince Edward Island,Paramedics,
+2017,Prince Edward Island,Paramedics,
+2018,Prince Edward Island,Paramedics,100.49
+2019,Prince Edward Island,Paramedics,
+2015,Prince Edward Island,Pharmacists,125.22
+2016,Prince Edward Island,Pharmacists,127.92
+2017,Prince Edward Island,Pharmacists,124.2
+2018,Prince Edward Island,Pharmacists,124.64
+2019,Prince Edward Island,Pharmacists,129.21
+2015,Prince Edward Island,Pharmacy technicians,6.23
+2016,Prince Edward Island,Pharmacy technicians,9.53
+2017,Prince Edward Island,Pharmacy technicians,17.93
+2018,Prince Edward Island,Pharmacy technicians,50.25
+2019,Prince Edward Island,Pharmacy technicians,46.98
+2015,Prince Edward Island,Physician assistants,0.69
+2016,Prince Edward Island,Physician assistants,0.68
+2017,Prince Edward Island,Physician assistants,0.66
+2018,Prince Edward Island,Physician assistants,0.65
+2019,Prince Edward Island,Physician assistants,1.31
+2015,Prince Edward Island,Physicians,184.02
+2016,Prince Edward Island,Physicians,189.84
+2017,Prince Edward Island,Physicians,191.94
+2018,Prince Edward Island,Physicians,199.03
+2019,Prince Edward Island,Physicians,210.77
+2015,Prince Edward Island,Family medicine,101.7
+2016,Prince Edward Island,Family medicine,103.42
+2017,Prince Edward Island,Family medicine,104.94
+2018,Prince Edward Island,Family medicine,113.54
+2019,Prince Edward Island,Family medicine,114.85
+2015,Prince Edward Island,Specialists,82.33
+2016,Prince Edward Island,Specialists,86.41
+2017,Prince Edward Island,Specialists,87.01
+2018,Prince Edward Island,Specialists,85.48
+2019,Prince Edward Island,Specialists,95.93
+2015,Prince Edward Island,Physiotherapists,51.89
+2016,Prince Edward Island,Physiotherapists,61.92
+2017,Prince Edward Island,Physiotherapists,62.43
+2018,Prince Edward Island,Physiotherapists,55.47
+2019,Prince Edward Island,Physiotherapists,67.87
+2015,Prince Edward Island,Psychologists,28.36
+2016,Prince Edward Island,Psychologists,31.3
+2017,Prince Edward Island,Psychologists,28.56
+2018,Prince Edward Island,Psychologists,31.32
+2019,Prince Edward Island,Psychologists,35.89
+2015,Prince Edward Island,Regulated nurses,1554.52
+2016,Prince Edward Island,Regulated nurses,1554.07
+2017,Prince Edward Island,Regulated nurses,1542.18
+2018,Prince Edward Island,Regulated nurses,1579.18
+2019,Prince Edward Island,Regulated nurses,1624.21
+2015,Prince Edward Island,Licensed practical nurses,445.53
+2016,Prince Edward Island,Licensed practical nurses,442.95
+2017,Prince Edward Island,Licensed practical nurses,444.99
+2018,Prince Edward Island,Licensed practical nurses,473.1
+2019,Prince Edward Island,Licensed practical nurses,484.2
+2015,Prince Edward Island,Nurse practitioners,11.76
+2016,Prince Edward Island,Nurse practitioners,14.97
+2017,Prince Edward Island,Nurse practitioners,15.94
+2018,Prince Edward Island,Nurse practitioners,18.92
+2019,Prince Edward Island,Nurse practitioners,28.06
+2015,Prince Edward Island,Registered nurses,1097.23
+2016,Prince Edward Island,Registered nurses,1096.15
+2017,Prince Edward Island,Registered nurses,1081.25
+2018,Prince Edward Island,Registered nurses,1087.16
+2019,Prince Edward Island,Registered nurses,1111.95
+2015,Prince Edward Island,Registered psychiatric nurses,
+2016,Prince Edward Island,Registered psychiatric nurses,
+2017,Prince Edward Island,Registered psychiatric nurses,
+2018,Prince Edward Island,Registered psychiatric nurses,
+2019,Prince Edward Island,Registered psychiatric nurses,
+2015,Prince Edward Island,Respiratory therapists,17.3
+2016,Prince Edward Island,Respiratory therapists,19.73
+2017,Prince Edward Island,Respiratory therapists,19.92
+2018,Prince Edward Island,Respiratory therapists,16.97
+2019,Prince Edward Island,Respiratory therapists,20.23
+2015,Prince Edward Island,Social workers,
+2016,Prince Edward Island,Social workers,
+2017,Prince Edward Island,Social workers,209.87
+2018,Prince Edward Island,Social workers,223.83
+2019,Prince Edward Island,Social workers,216.65
+2015,Prince Edward Island,Speech–language pathologists,27.67
+2016,Prince Edward Island,Speech–language pathologists,27.9
+2017,Prince Edward Island,Speech–language pathologists,27.23
+2018,Prince Edward Island,Speech–language pathologists,25.45
+2019,Prince Edward Island,Speech–language pathologists,31.32
+2015,Nova Scotia,Audiologists,8.65
+2016,Nova Scotia,Audiologists,8.91
+2017,Nova Scotia,Audiologists,9.47
+2018,Nova Scotia,Audiologists,10.21
+2019,Nova Scotia,Audiologists,10.52
+2015,Nova Scotia,Chiropractors,15.38
+2016,Nova Scotia,Chiropractors,16.02
+2017,Nova Scotia,Chiropractors,16.41
+2018,Nova Scotia,Chiropractors,17.29
+2019,Nova Scotia,Chiropractors,18.02
+2015,Nova Scotia,Dental assistants,
+2016,Nova Scotia,Dental assistants,79.13
+2017,Nova Scotia,Dental assistants,79.63
+2018,Nova Scotia,Dental assistants,83.86
+2019,Nova Scotia,Dental assistants,86.57
+2015,Nova Scotia,Dental hygienists,70.69
+2016,Nova Scotia,Dental hygienists,71.81
+2017,Nova Scotia,Dental hygienists,77.42
+2018,Nova Scotia,Dental hygienists,74.28
+2019,Nova Scotia,Dental hygienists,78.03
+2015,Nova Scotia,Dentists,56.38
+2016,Nova Scotia,Dentists,57.17
+2017,Nova Scotia,Dentists,58.17
+2018,Nova Scotia,Dentists,58.86
+2019,Nova Scotia,Dentists,58.34
+2015,Nova Scotia,Dietitians,59.8
+2016,Nova Scotia,Dietitians,61.73
+2017,Nova Scotia,Dietitians,62.27
+2018,Nova Scotia,Dietitians,62.82
+2019,Nova Scotia,Dietitians,64.17
+2015,Nova Scotia,Environmental public health professionals,8.86
+2016,Nova Scotia,Environmental public health professionals,10.18
+2017,Nova Scotia,Environmental public health professionals,8.42
+2018,Nova Scotia,Environmental public health professionals,8.65
+2019,Nova Scotia,Environmental public health professionals,10.63
+2015,Nova Scotia,Genetic counsellors,1.49
+2016,Nova Scotia,Genetic counsellors,1.27
+2017,Nova Scotia,Genetic counsellors,1.37
+2018,Nova Scotia,Genetic counsellors,1.46
+2019,Nova Scotia,Genetic counsellors,1.46
+2015,Nova Scotia,Health information management professionals,
+2016,Nova Scotia,Health information management professionals,16.86
+2017,Nova Scotia,Health information management professionals,18.09
+2018,Nova Scotia,Health information management professionals,
+2019,Nova Scotia,Health information management professionals,20.52
+2015,Nova Scotia,Medical laboratory technologists,89.37
+2016,Nova Scotia,Medical laboratory technologists,
+2017,Nova Scotia,Medical laboratory technologists,85.1
+2018,Nova Scotia,Medical laboratory technologists,83.76
+2019,Nova Scotia,Medical laboratory technologists,80.53
+2015,Nova Scotia,Medical physicists,1.71
+2016,Nova Scotia,Medical physicists,1.7
+2017,Nova Scotia,Medical physicists,1.58
+2018,Nova Scotia,Medical physicists,1.56
+2019,Nova Scotia,Medical physicists,1.67
+2015,Nova Scotia,Medical radiation technologists,61.18
+2016,Nova Scotia,Medical radiation technologists,64.28
+2017,Nova Scotia,Medical radiation technologists,65.11
+2018,Nova Scotia,Medical radiation technologists,63.44
+2019,Nova Scotia,Medical radiation technologists,64.59
+2015,Nova Scotia,Midwives,1.07
+2016,Nova Scotia,Midwives,1.06
+2017,Nova Scotia,Midwives,1.05
+2018,Nova Scotia,Midwives,1.04
+2019,Nova Scotia,Midwives,
+2015,Nova Scotia,Occupational therapists,52.85
+2016,Nova Scotia,Occupational therapists,54.73
+2017,Nova Scotia,Occupational therapists,55.85
+2018,Nova Scotia,Occupational therapists,56.46
+2019,Nova Scotia,Occupational therapists,59.48
+2015,Nova Scotia,Opticians,
+2016,Nova Scotia,Opticians,28.32
+2017,Nova Scotia,Opticians,19.04
+2018,Nova Scotia,Opticians,
+2019,Nova Scotia,Opticians,17.19
+2015,Nova Scotia,Optometrists,13.88
+2016,Nova Scotia,Optometrists,14
+2017,Nova Scotia,Optometrists,14.52
+2018,Nova Scotia,Optometrists,14.17
+2019,Nova Scotia,Optometrists,14.48
+2015,Nova Scotia,Paramedics,
+2016,Nova Scotia,Paramedics,
+2017,Nova Scotia,Paramedics,126.54
+2018,Nova Scotia,Paramedics,133.45
+2019,Nova Scotia,Paramedics,135.74
+2015,Nova Scotia,Pharmacists,141.48
+2016,Nova Scotia,Pharmacists,140.22
+2017,Nova Scotia,Pharmacists,138.95
+2018,Nova Scotia,Pharmacists,139.18
+2019,Nova Scotia,Pharmacists,138.45
+2015,Nova Scotia,Pharmacy technicians,7.37
+2016,Nova Scotia,Pharmacy technicians,12.83
+2017,Nova Scotia,Pharmacy technicians,20.83
+2018,Nova Scotia,Pharmacy technicians,18.75
+2019,Nova Scotia,Pharmacy technicians,20.21
+2015,Nova Scotia,Physician assistants,2.88
+2016,Nova Scotia,Physician assistants,3.18
+2017,Nova Scotia,Physician assistants,4.1
+2018,Nova Scotia,Physician assistants,3.44
+2019,Nova Scotia,Physician assistants,3.54
+2015,Nova Scotia,Physicians,263.21
+2016,Nova Scotia,Physicians,260.61
+2017,Nova Scotia,Physicians,258.34
+2018,Nova Scotia,Physicians,272.62
+2019,Nova Scotia,Physicians,273.35
+2015,Nova Scotia,Family medicine,132.51
+2016,Nova Scotia,Family medicine,128.87
+2017,Nova Scotia,Family medicine,129.8
+2018,Nova Scotia,Family medicine,134.59
+2019,Nova Scotia,Family medicine,134.9
+2015,Nova Scotia,Specialists,130.7
+2016,Nova Scotia,Specialists,131.74
+2017,Nova Scotia,Specialists,128.54
+2018,Nova Scotia,Specialists,138.03
+2019,Nova Scotia,Specialists,138.45
+2015,Nova Scotia,Physiotherapists,69.73
+2016,Nova Scotia,Physiotherapists,71.17
+2017,Nova Scotia,Physiotherapists,73.11
+2018,Nova Scotia,Physiotherapists,74.9
+2019,Nova Scotia,Physiotherapists,78.55
+2015,Nova Scotia,Psychologists,
+2016,Nova Scotia,Psychologists,58.55
+2017,Nova Scotia,Psychologists,59.12
+2018,Nova Scotia,Psychologists,62.61
+2019,Nova Scotia,Psychologists,65
+2015,Nova Scotia,Regulated nurses,1450.15
+2016,Nova Scotia,Regulated nurses,1447.72
+2017,Nova Scotia,Regulated nurses,1451.91
+2018,Nova Scotia,Regulated nurses,1445.5
+2019,Nova Scotia,Regulated nurses,1461.55
+2015,Nova Scotia,Licensed practical nurses,417.29
+2016,Nova Scotia,Licensed practical nurses,425.76
+2017,Nova Scotia,Licensed practical nurses,435.69
+2018,Nova Scotia,Licensed practical nurses,442.94
+2019,Nova Scotia,Licensed practical nurses,449.82
+2015,Nova Scotia,Nurse practitioners,15.91
+2016,Nova Scotia,Nurse practitioners,15.49
+2017,Nova Scotia,Nurse practitioners,17.15
+2018,Nova Scotia,Nurse practitioners,18.96
+2019,Nova Scotia,Nurse practitioners,21.25
+2015,Nova Scotia,Registered nurses,1016.95
+2016,Nova Scotia,Registered nurses,1006.48
+2017,Nova Scotia,Registered nurses,999.07
+2018,Nova Scotia,Registered nurses,983.6
+2019,Nova Scotia,Registered nurses,990.48
+2015,Nova Scotia,Registered psychiatric nurses,
+2016,Nova Scotia,Registered psychiatric nurses,
+2017,Nova Scotia,Registered psychiatric nurses,
+2018,Nova Scotia,Registered psychiatric nurses,
+2019,Nova Scotia,Registered psychiatric nurses,
+2015,Nova Scotia,Respiratory therapists,30.86
+2016,Nova Scotia,Respiratory therapists,32.67
+2017,Nova Scotia,Respiratory therapists,33.45
+2018,Nova Scotia,Respiratory therapists,33.86
+2019,Nova Scotia,Respiratory therapists,36.04
+2015,Nova Scotia,Social workers,166.57
+2016,Nova Scotia,Social workers,187.32
+2017,Nova Scotia,Social workers,199.23
+2018,Nova Scotia,Social workers,204.18
+2019,Nova Scotia,Social workers,230.43
+2015,Nova Scotia,Speech–language pathologists,24.56
+2016,Nova Scotia,Speech–language pathologists,24.82
+2017,Nova Scotia,Speech–language pathologists,24.4
+2018,Nova Scotia,Speech–language pathologists,26.56
+2019,Nova Scotia,Speech–language pathologists,35.11
+2015,New Brunswick,Audiologists,9.88
+2016,New Brunswick,Audiologists,10.09
+2017,New Brunswick,Audiologists,9.78
+2018,New Brunswick,Audiologists,9.86
+2019,New Brunswick,Audiologists,10.38
+2015,New Brunswick,Chiropractors,10.28
+2016,New Brunswick,Chiropractors,11.4
+2017,New Brunswick,Chiropractors,10.95
+2018,New Brunswick,Chiropractors,12.2
+2019,New Brunswick,Chiropractors,12.85
+2015,New Brunswick,Dental assistants,71.03
+2016,New Brunswick,Dental assistants,69.17
+2017,New Brunswick,Dental assistants,70.16
+2018,New Brunswick,Dental assistants,
+2019,New Brunswick,Dental assistants,69.55
+2015,New Brunswick,Dental hygienists,63.25
+2016,New Brunswick,Dental hygienists,64.06
+2017,New Brunswick,Dental hygienists,66.24
+2018,New Brunswick,Dental hygienists,65.92
+2019,New Brunswick,Dental hygienists,67.09
+2015,New Brunswick,Dentists,43.09
+2016,New Brunswick,Dentists,44.15
+2017,New Brunswick,Dentists,41.86
+2018,New Brunswick,Dentists,42.3
+2019,New Brunswick,Dentists,42.95
+2015,New Brunswick,Dietitians,46.39
+2016,New Brunswick,Dietitians,48.99
+2017,New Brunswick,Dietitians,48.64
+2018,New Brunswick,Dietitians,51.13
+2019,New Brunswick,Dietitians,50.22
+2015,New Brunswick,Environmental public health professionals,6.98
+2016,New Brunswick,Environmental public health professionals,5.9
+2017,New Brunswick,Environmental public health professionals,6.52
+2018,New Brunswick,Environmental public health professionals,6.49
+2019,New Brunswick,Environmental public health professionals,6.36
+2015,New Brunswick,Genetic counsellors,
+2016,New Brunswick,Genetic counsellors,
+2017,New Brunswick,Genetic counsellors,
+2018,New Brunswick,Genetic counsellors,
+2019,New Brunswick,Genetic counsellors,0
+2015,New Brunswick,Health information management professionals,
+2016,New Brunswick,Health information management professionals,16.24
+2017,New Brunswick,Health information management professionals,16.69
+2018,New Brunswick,Health information management professionals,
+2019,New Brunswick,Health information management professionals,16.22
+2015,New Brunswick,Medical laboratory technologists,84.6
+2016,New Brunswick,Medical laboratory technologists,87.12
+2017,New Brunswick,Medical laboratory technologists,84.37
+2018,New Brunswick,Medical laboratory technologists,82.66
+2019,New Brunswick,Medical laboratory technologists,85.51
+2015,New Brunswick,Medical physicists,1.84
+2016,New Brunswick,Medical physicists,1.83
+2017,New Brunswick,Medical physicists,1.7
+2018,New Brunswick,Medical physicists,1.69
+2019,New Brunswick,Medical physicists,1.69
+2015,New Brunswick,Medical radiation technologists,74.72
+2016,New Brunswick,Medical radiation technologists,76.24
+2017,New Brunswick,Medical radiation technologists,79.55
+2018,New Brunswick,Medical radiation technologists,77.21
+2019,New Brunswick,Medical radiation technologists,75.26
+2015,New Brunswick,Midwives,0
+2016,New Brunswick,Midwives,0
+2017,New Brunswick,Midwives,0.39
+2018,New Brunswick,Midwives,0.52
+2019,New Brunswick,Midwives,0.91
+2015,New Brunswick,Occupational therapists,45.33
+2016,New Brunswick,Occupational therapists,46.77
+2017,New Brunswick,Occupational therapists,47.99
+2018,New Brunswick,Occupational therapists,48.4
+2019,New Brunswick,Occupational therapists,52.29
+2015,New Brunswick,Opticians,
+2016,New Brunswick,Opticians,27.38
+2017,New Brunswick,Opticians,29.21
+2018,New Brunswick,Opticians,
+2019,New Brunswick,Opticians,32.83
+2015,New Brunswick,Optometrists,15.55
+2016,New Brunswick,Optometrists,16.24
+2017,New Brunswick,Optometrists,15.91
+2018,New Brunswick,Optometrists,15.44
+2019,New Brunswick,Optometrists,16.61
+2015,New Brunswick,Paramedics,160.11
+2016,New Brunswick,Paramedics,
+2017,New Brunswick,Paramedics,
+2018,New Brunswick,Paramedics,
+2019,New Brunswick,Paramedics,
+2015,New Brunswick,Pharmacists,113.46
+2016,New Brunswick,Pharmacists,113.32
+2017,New Brunswick,Pharmacists,119.06
+2018,New Brunswick,Pharmacists,118.6
+2019,New Brunswick,Pharmacists,118.99
+2015,New Brunswick,Pharmacy technicians,2.9
+2016,New Brunswick,Pharmacy technicians,4.98
+2017,New Brunswick,Pharmacy technicians,10.56
+2018,New Brunswick,Pharmacy technicians,17.65
+2019,New Brunswick,Pharmacy technicians,31.66
+2015,New Brunswick,Physician assistants,0.66
+2016,New Brunswick,Physician assistants,1.05
+2017,New Brunswick,Physician assistants,1.3
+2018,New Brunswick,Physician assistants,1.17
+2019,New Brunswick,Physician assistants,1.17
+2015,New Brunswick,Physicians,220.6
+2016,New Brunswick,Physicians,227.29
+2017,New Brunswick,Physicians,234.33
+2018,New Brunswick,Physicians,244.73
+2019,New Brunswick,Physicians,249.54
+2015,New Brunswick,Family medicine,120.45
+2016,New Brunswick,Family medicine,125.76
+2017,New Brunswick,Family medicine,128.84
+2018,New Brunswick,Family medicine,133.27
+2019,New Brunswick,Family medicine,137.29
+2015,New Brunswick,Specialists,100.15
+2016,New Brunswick,Specialists,101.53
+2017,New Brunswick,Specialists,105.5
+2018,New Brunswick,Specialists,111.47
+2019,New Brunswick,Specialists,112.25
+2015,New Brunswick,Physiotherapists,67.08
+2016,New Brunswick,Physiotherapists,67.6
+2017,New Brunswick,Physiotherapists,66.38
+2018,New Brunswick,Physiotherapists,70.2
+2019,New Brunswick,Physiotherapists,73.58
+2015,New Brunswick,Psychologists,
+2016,New Brunswick,Psychologists,47.68
+2017,New Brunswick,Psychologists,47.21
+2018,New Brunswick,Psychologists,46.2
+2019,New Brunswick,Psychologists,47.23
+2015,New Brunswick,Regulated nurses,1532.33
+2016,New Brunswick,Regulated nurses,1505.86
+2017,New Brunswick,Regulated nurses,1489.47
+2018,New Brunswick,Regulated nurses,1500.2
+2019,New Brunswick,Regulated nurses,1485.01
+2015,New Brunswick,Licensed practical nurses,432.11
+2016,New Brunswick,Licensed practical nurses,438.2
+2017,New Brunswick,Licensed practical nurses,424.07
+2018,New Brunswick,Licensed practical nurses,440.42
+2019,New Brunswick,Licensed practical nurses,426.4
+2015,New Brunswick,Nurse practitioners,14.36
+2016,New Brunswick,Nurse practitioners,15.33
+2017,New Brunswick,Nurse practitioners,16.3
+2018,New Brunswick,Nurse practitioners,16.87
+2019,New Brunswick,Nurse practitioners,18.04
+2015,New Brunswick,Registered nurses,1085.87
+2016,New Brunswick,Registered nurses,1052.34
+2017,New Brunswick,Registered nurses,1049.09
+2018,New Brunswick,Registered nurses,1042.91
+2019,New Brunswick,Registered nurses,1040.57
+2015,New Brunswick,Registered psychiatric nurses,
+2016,New Brunswick,Registered psychiatric nurses,
+2017,New Brunswick,Registered psychiatric nurses,
+2018,New Brunswick,Registered psychiatric nurses,
+2019,New Brunswick,Registered psychiatric nurses,
+2015,New Brunswick,Respiratory therapists,48.63
+2016,New Brunswick,Respiratory therapists,46.9
+2017,New Brunswick,Respiratory therapists,50.73
+2018,New Brunswick,Respiratory therapists,53.2
+2019,New Brunswick,Respiratory therapists,55.67
+2015,New Brunswick,Social workers,221.92
+2016,New Brunswick,Social workers,228.34
+2017,New Brunswick,Social workers,254.03
+2018,New Brunswick,Social workers,262.25
+2019,New Brunswick,Social workers,268.48
+2015,New Brunswick,Speech–language pathologists,31.36
+2016,New Brunswick,Speech–language pathologists,32.1
+2017,New Brunswick,Speech–language pathologists,31.43
+2018,New Brunswick,Speech–language pathologists,31.53
+2019,New Brunswick,Speech–language pathologists,32.44
+2015,Quebec,Audiologists,4.99
+2016,Quebec,Audiologists,5.02
+2017,Quebec,Audiologists,5.23
+2018,Quebec,Audiologists,5.34
+2019,Quebec,Audiologists,5.61
+2015,Quebec,Chiropractors,16.05
+2016,Quebec,Chiropractors,16.19
+2017,Quebec,Chiropractors,16.32
+2018,Quebec,Chiropractors,16.13
+2019,Quebec,Chiropractors,16.32
+2015,Quebec,Dental assistants,
+2016,Quebec,Dental assistants,
+2017,Quebec,Dental assistants,26.79
+2018,Quebec,Dental assistants,33.05
+2019,Quebec,Dental assistants,
+2015,Quebec,Dental hygienists,75.23
+2016,Quebec,Dental hygienists,76.79
+2017,Quebec,Dental hygienists,78
+2018,Quebec,Dental hygienists,78.31
+2019,Quebec,Dental hygienists,80
+2015,Quebec,Dentists,61.83
+2016,Quebec,Dentists,62.89
+2017,Quebec,Dentists,62.37
+2018,Quebec,Dentists,63.76
+2019,Quebec,Dentists,
+2015,Quebec,Dietitians,37.69
+2016,Quebec,Dietitians,38.6
+2017,Quebec,Dietitians,38.81
+2018,Quebec,Dietitians,38.62
+2019,Quebec,Dietitians,
+2015,Quebec,Environmental public health professionals,0.12
+2016,Quebec,Environmental public health professionals,0.12
+2017,Quebec,Environmental public health professionals,0.11
+2018,Quebec,Environmental public health professionals,0.13
+2019,Quebec,Environmental public health professionals,0.14
+2015,Quebec,Genetic counsellors,0.53
+2016,Quebec,Genetic counsellors,0.67
+2017,Quebec,Genetic counsellors,0.57
+2018,Quebec,Genetic counsellors,0.69
+2019,Quebec,Genetic counsellors,0.64
+2015,Quebec,Health information management professionals,
+2016,Quebec,Health information management professionals,6.41
+2017,Quebec,Health information management professionals,6.42
+2018,Quebec,Health information management professionals,6.36
+2019,Quebec,Health information management professionals,
+2015,Quebec,Medical laboratory technologists,56.62
+2016,Quebec,Medical laboratory technologists,58.6
+2017,Quebec,Medical laboratory technologists,58.98
+2018,Quebec,Medical laboratory technologists,58.61
+2019,Quebec,Medical laboratory technologists,58.2
+2015,Quebec,Medical physicists,1.1
+2016,Quebec,Medical physicists,1.09
+2017,Quebec,Medical physicists,1.21
+2018,Quebec,Medical physicists,1.26
+2019,Quebec,Medical physicists,1.17
+2015,Quebec,Medical radiation technologists,67.44
+2016,Quebec,Medical radiation technologists,77.66
+2017,Quebec,Medical radiation technologists,78.26
+2018,Quebec,Medical radiation technologists,78.51
+2019,Quebec,Medical radiation technologists,80.34
+2015,Quebec,Midwives,1.9
+2016,Quebec,Midwives,2.69
+2017,Quebec,Midwives,2.66
+2018,Quebec,Midwives,2.91
+2019,Quebec,Midwives,3.07
+2015,Quebec,Occupational therapists,59.03
+2016,Quebec,Occupational therapists,60.54
+2017,Quebec,Occupational therapists,62.58
+2018,Quebec,Occupational therapists,64.19
+2019,Quebec,Occupational therapists,66.27
+2015,Quebec,Opticians,23.85
+2016,Quebec,Opticians,24.42
+2017,Quebec,Opticians,25.01
+2018,Quebec,Opticians,
+2019,Quebec,Opticians,1.29
+2015,Quebec,Optometrists,17.97
+2016,Quebec,Optometrists,18.83
+2017,Quebec,Optometrists,18.2
+2018,Quebec,Optometrists,18.23
+2019,Quebec,Optometrists,18.69
+2015,Quebec,Paramedics,70.05
+2016,Quebec,Paramedics,70.53
+2017,Quebec,Paramedics,64.26
+2018,Quebec,Paramedics,66.41
+2019,Quebec,Paramedics,66.34
+2015,Quebec,Pharmacists,106.94
+2016,Quebec,Pharmacists,113.18
+2017,Quebec,Pharmacists,110.4
+2018,Quebec,Pharmacists,110.4
+2019,Quebec,Pharmacists,112.75
+2015,Quebec,Pharmacy technicians,
+2016,Quebec,Pharmacy technicians,
+2017,Quebec,Pharmacy technicians,
+2018,Quebec,Pharmacy technicians,
+2019,Quebec,Pharmacy technicians,
+2015,Quebec,Physician assistants,0.2
+2016,Quebec,Physician assistants,0.24
+2017,Quebec,Physician assistants,0.3
+2018,Quebec,Physician assistants,0.27
+2019,Quebec,Physician assistants,0.25
+2015,Quebec,Physicians,245.31
+2016,Quebec,Physicians,246.42
+2017,Quebec,Physicians,251.97
+2018,Quebec,Physicians,248.83
+2019,Quebec,Physicians,256.06
+2015,Quebec,Family medicine,118.69
+2016,Quebec,Family medicine,119.41
+2017,Quebec,Family medicine,122.93
+2018,Quebec,Family medicine,122.66
+2019,Quebec,Family medicine,128.55
+2015,Quebec,Specialists,126.63
+2016,Quebec,Specialists,127
+2017,Quebec,Specialists,129.05
+2018,Quebec,Specialists,126.17
+2019,Quebec,Specialists,127.51
+2015,Quebec,Physiotherapists,56.6
+2016,Quebec,Physiotherapists,54.77
+2017,Quebec,Physiotherapists,55.77
+2018,Quebec,Physiotherapists,64.48
+2019,Quebec,Physiotherapists,64.64
+2015,Quebec,Psychologists,95.72
+2016,Quebec,Psychologists,95.83
+2017,Quebec,Psychologists,93.39
+2018,Quebec,Psychologists,92.49
+2019,Quebec,Psychologists,92.1
+2015,Quebec,Regulated nurses,1211.69
+2016,Quebec,Regulated nurses,1201.49
+2017,Quebec,Regulated nurses,1185.37
+2018,Quebec,Regulated nurses,1186.96
+2019,Quebec,Regulated nurses,1206.52
+2015,Quebec,Licensed practical nurses,351.21
+2016,Quebec,Licensed practical nurses,338.61
+2017,Quebec,Licensed practical nurses,328.99
+2018,Quebec,Licensed practical nurses,328.99
+2019,Quebec,Licensed practical nurses,333.63
+2015,Quebec,Nurse practitioners,3.73
+2016,Quebec,Nurse practitioners,4.62
+2017,Quebec,Nurse practitioners,5.19
+2018,Quebec,Nurse practitioners,6.07
+2019,Quebec,Nurse practitioners,6.5
+2015,Quebec,Registered nurses,856.75
+2016,Quebec,Registered nurses,858.26
+2017,Quebec,Registered nurses,851.19
+2018,Quebec,Registered nurses,851.9
+2019,Quebec,Registered nurses,866.4
+2015,Quebec,Registered psychiatric nurses,
+2016,Quebec,Registered psychiatric nurses,
+2017,Quebec,Registered psychiatric nurses,
+2018,Quebec,Registered psychiatric nurses,
+2019,Quebec,Registered psychiatric nurses,
+2015,Quebec,Respiratory therapists,50.68
+2016,Quebec,Respiratory therapists,51.56
+2017,Quebec,Respiratory therapists,51.13
+2018,Quebec,Respiratory therapists,47.72
+2019,Quebec,Respiratory therapists,52.49
+2015,Quebec,Social workers,158.69
+2016,Quebec,Social workers,163.56
+2017,Quebec,Social workers,164.71
+2018,Quebec,Social workers,169.12
+2019,Quebec,Social workers,176.2
+2015,Quebec,Speech–language pathologists,28.73
+2016,Quebec,Speech–language pathologists,29.93
+2017,Quebec,Speech–language pathologists,32.54
+2018,Quebec,Speech–language pathologists,33.82
+2019,Quebec,Speech–language pathologists,35
+2015,Ontario,Audiologists,4.76
+2016,Ontario,Audiologists,4.99
+2017,Ontario,Audiologists,5.1
+2018,Ontario,Audiologists,5.22
+2019,Ontario,Audiologists,5.51
+2015,Ontario,Chiropractors,31.03
+2016,Ontario,Chiropractors,31.29
+2017,Ontario,Chiropractors,31.5
+2018,Ontario,Chiropractors,32.07
+2019,Ontario,Chiropractors,32.3
+2015,Ontario,Dental assistants,38.53
+2016,Ontario,Dental assistants,37.75
+2017,Ontario,Dental assistants,35.55
+2018,Ontario,Dental assistants,
+2019,Ontario,Dental assistants,33.15
+2015,Ontario,Dental hygienists,94.21
+2016,Ontario,Dental hygienists,94.3
+2017,Ontario,Dental hygienists,93.45
+2018,Ontario,Dental hygienists,90.09
+2019,Ontario,Dental hygienists,95.61
+2015,Ontario,Dentists,68.96
+2016,Ontario,Dentists,70.17
+2017,Ontario,Dentists,70.63
+2018,Ontario,Dentists,72.73
+2019,Ontario,Dentists,73.43
+2015,Ontario,Dietitians,27.76
+2016,Ontario,Dietitians,28.14
+2017,Ontario,Dietitians,28.31
+2018,Ontario,Dietitians,28.9
+2019,Ontario,Dietitians,29.24
+2015,Ontario,Environmental public health professionals,5.19
+2016,Ontario,Environmental public health professionals,5.32
+2017,Ontario,Environmental public health professionals,5.32
+2018,Ontario,Environmental public health professionals,5.52
+2019,Ontario,Environmental public health professionals,5.37
+2015,Ontario,Genetic counsellors,1.12
+2016,Ontario,Genetic counsellors,1.06
+2017,Ontario,Genetic counsellors,0.91
+2018,Ontario,Genetic counsellors,1.04
+2019,Ontario,Genetic counsellors,1.13
+2015,Ontario,Health information management professionals,
+2016,Ontario,Health information management professionals,14.02
+2017,Ontario,Health information management professionals,14.53
+2018,Ontario,Health information management professionals,
+2019,Ontario,Health information management professionals,14.91
+2015,Ontario,Medical laboratory technologists,53.16
+2016,Ontario,Medical laboratory technologists,49.17
+2017,Ontario,Medical laboratory technologists,51.61
+2018,Ontario,Medical laboratory technologists,49.79
+2019,Ontario,Medical laboratory technologists,50.64
+2015,Ontario,Medical physicists,1.47
+2016,Ontario,Medical physicists,1.36
+2017,Ontario,Medical physicists,1.46
+2018,Ontario,Medical physicists,1.53
+2019,Ontario,Medical physicists,1.49
+2015,Ontario,Medical radiation technologists,50.35
+2016,Ontario,Medical radiation technologists,50.37
+2017,Ontario,Medical radiation technologists,50.04
+2018,Ontario,Medical radiation technologists,74.85
+2019,Ontario,Medical radiation technologists,76.92
+2015,Ontario,Midwives,4.95
+2016,Ontario,Midwives,5.12
+2017,Ontario,Midwives,5.32
+2018,Ontario,Midwives,5.42
+2019,Ontario,Midwives,5.59
+2015,Ontario,Occupational therapists,39.81
+2016,Ontario,Occupational therapists,40.47
+2017,Ontario,Occupational therapists,41.47
+2018,Ontario,Occupational therapists,42.01
+2019,Ontario,Occupational therapists,43.53
+2015,Ontario,Opticians,
+2016,Ontario,Opticians,19.09
+2017,Ontario,Opticians,9.1
+2018,Ontario,Opticians,
+2019,Ontario,Opticians,11.57
+2015,Ontario,Optometrists,16.91
+2016,Ontario,Optometrists,16.91
+2017,Ontario,Optometrists,17.23
+2018,Ontario,Optometrists,17.57
+2019,Ontario,Optometrists,18.31
+2015,Ontario,Paramedics,57.59
+2016,Ontario,Paramedics,59.05
+2017,Ontario,Paramedics,59.89
+2018,Ontario,Paramedics,61.85
+2019,Ontario,Paramedics,62.81
+2015,Ontario,Pharmacists,104.98
+2016,Ontario,Pharmacists,107.76
+2017,Ontario,Pharmacists,109.53
+2018,Ontario,Pharmacists,110.94
+2019,Ontario,Pharmacists,113.88
+2015,Ontario,Pharmacy technicians,27.98
+2016,Ontario,Pharmacy technicians,30.89
+2017,Ontario,Pharmacy technicians,32.67
+2018,Ontario,Pharmacy technicians,33.8
+2019,Ontario,Pharmacy technicians,35.27
+2015,Ontario,Physician assistants,2
+2016,Ontario,Physician assistants,2.5
+2017,Ontario,Physician assistants,
+2018,Ontario,Physician assistants,3.06
+2019,Ontario,Physician assistants,3.62
+2015,Ontario,Physicians,222.47
+2016,Ontario,Physicians,223.54
+2017,Ontario,Physicians,227.8
+2018,Ontario,Physicians,236.49
+2019,Ontario,Physicians,238.04
+2015,Ontario,Family medicine,109.99
+2016,Ontario,Family medicine,111.11
+2017,Ontario,Family medicine,114.33
+2018,Ontario,Family medicine,117.39
+2019,Ontario,Family medicine,117.74
+2015,Ontario,Specialists,112.47
+2016,Ontario,Specialists,112.43
+2017,Ontario,Specialists,113.47
+2018,Ontario,Specialists,119.1
+2019,Ontario,Specialists,120.3
+2015,Ontario,Physiotherapists,59.54
+2016,Ontario,Physiotherapists,61.35
+2017,Ontario,Physiotherapists,62.17
+2018,Ontario,Physiotherapists,64.42
+2019,Ontario,Physiotherapists,66.55
+2015,Ontario,Psychologists,27.18
+2016,Ontario,Psychologists,27.23
+2017,Ontario,Psychologists,27.32
+2018,Ontario,Psychologists,27.54
+2019,Ontario,Psychologists,27.93
+2015,Ontario,Regulated nurses,1084.59
+2016,Ontario,Regulated nurses,1088.45
+2017,Ontario,Regulated nurses,1087.08
+2018,Ontario,Regulated nurses,1086.17
+2019,Ontario,Regulated nurses,1118.06
+2015,Ontario,Licensed practical nurses,318.49
+2016,Ontario,Licensed practical nurses,333.34
+2017,Ontario,Licensed practical nurses,341.44
+2018,Ontario,Licensed practical nurses,348.87
+2019,Ontario,Licensed practical nurses,368.71
+2015,Ontario,Nurse practitioners,18.38
+2016,Ontario,Nurse practitioners,19.96
+2017,Ontario,Nurse practitioners,21.4
+2018,Ontario,Nurse practitioners,22.38
+2019,Ontario,Nurse practitioners,24.09
+2015,Ontario,Registered nurses,747.71
+2016,Ontario,Registered nurses,735.16
+2017,Ontario,Registered nurses,724.25
+2018,Ontario,Registered nurses,714.92
+2019,Ontario,Registered nurses,725.26
+2015,Ontario,Registered psychiatric nurses,
+2016,Ontario,Registered psychiatric nurses,
+2017,Ontario,Registered psychiatric nurses,
+2018,Ontario,Registered psychiatric nurses,
+2019,Ontario,Registered psychiatric nurses,
+2015,Ontario,Respiratory therapists,23
+2016,Ontario,Respiratory therapists,23.3
+2017,Ontario,Respiratory therapists,23.77
+2018,Ontario,Respiratory therapists,23.77
+2019,Ontario,Respiratory therapists,24.06
+2015,Ontario,Social workers,122.58
+2016,Ontario,Social workers,134.58
+2017,Ontario,Social workers,122.43
+2018,Ontario,Social workers,125.05
+2019,Ontario,Social workers,137.72
+2015,Ontario,Speech–language pathologists,20.33
+2016,Ontario,Speech–language pathologists,21.14
+2017,Ontario,Speech–language pathologists,21.16
+2018,Ontario,Speech–language pathologists,22.01
+2019,Ontario,Speech–language pathologists,22.87
+2015,Manitoba,Audiologists,5.57
+2016,Manitoba,Audiologists,5.4
+2017,Manitoba,Audiologists,5.69
+2018,Manitoba,Audiologists,5.1
+2019,Manitoba,Audiologists,5.03
+2015,Manitoba,Chiropractors,22.21
+2016,Manitoba,Chiropractors,22.3
+2017,Manitoba,Chiropractors,22.32
+2018,Manitoba,Chiropractors,22.26
+2019,Manitoba,Chiropractors,21.74
+2015,Manitoba,Dental assistants,95.26
+2016,Manitoba,Dental assistants,98.62
+2017,Manitoba,Dental assistants,100.42
+2018,Manitoba,Dental assistants,
+2019,Manitoba,Dental assistants,
+2015,Manitoba,Dental hygienists,53.16
+2016,Manitoba,Dental hygienists,55.47
+2017,Manitoba,Dental hygienists,55.41
+2018,Manitoba,Dental hygienists,56.06
+2019,Manitoba,Dental hygienists,57.17
+2015,Manitoba,Dentists,53.94
+2016,Manitoba,Dentists,54.64
+2017,Manitoba,Dentists,53.24
+2018,Manitoba,Dentists,53.99
+2019,Manitoba,Dentists,54.43
+2015,Manitoba,Dietitians,36.76
+2016,Manitoba,Dietitians,37.21
+2017,Manitoba,Dietitians,36.39
+2018,Manitoba,Dietitians,35.42
+2019,Manitoba,Dietitians,35.79
+2015,Manitoba,Environmental public health professionals,5.49
+2016,Manitoba,Environmental public health professionals,5.4
+2017,Manitoba,Environmental public health professionals,5.17
+2018,Manitoba,Environmental public health professionals,5.32
+2019,Manitoba,Environmental public health professionals,5.1
+2015,Manitoba,Genetic counsellors,0.62
+2016,Manitoba,Genetic counsellors,0.61
+2017,Manitoba,Genetic counsellors,0.37
+2018,Manitoba,Genetic counsellors,0.59
+2019,Manitoba,Genetic counsellors,0.96
+2015,Manitoba,Health information management professionals,
+2016,Manitoba,Health information management professionals,12.25
+2017,Manitoba,Health information management professionals,11.68
+2018,Manitoba,Health information management professionals,
+2019,Manitoba,Health information management professionals,12.28
+2015,Manitoba,Medical laboratory technologists,81.1
+2016,Manitoba,Medical laboratory technologists,63.16
+2017,Manitoba,Medical laboratory technologists,56.54
+2018,Manitoba,Medical laboratory technologists,56.06
+2019,Manitoba,Medical laboratory technologists,51.55
+2015,Manitoba,Medical physicists,1.55
+2016,Manitoba,Medical physicists,1.45
+2017,Manitoba,Medical physicists,1.65
+2018,Manitoba,Medical physicists,1.55
+2019,Manitoba,Medical physicists,1.7
+2015,Manitoba,Medical radiation technologists,54.94
+2016,Manitoba,Medical radiation technologists,53.34
+2017,Manitoba,Medical radiation technologists,64.48
+2018,Manitoba,Medical radiation technologists,62.2
+2019,Manitoba,Medical radiation technologists,62.86
+2015,Manitoba,Midwives,4.02
+2016,Manitoba,Midwives,3.96
+2017,Manitoba,Midwives,6.14
+2018,Manitoba,Midwives,5.69
+2019,Manitoba,Midwives,4.36
+2015,Manitoba,Occupational therapists,49.99
+2016,Manitoba,Occupational therapists,48.09
+2017,Manitoba,Occupational therapists,48.6
+2018,Manitoba,Occupational therapists,49.99
+2019,Manitoba,Occupational therapists,51.03
+2015,Manitoba,Opticians,
+2016,Manitoba,Opticians,20.93
+2017,Manitoba,Opticians,15.05
+2018,Manitoba,Opticians,
+2019,Manitoba,Opticians,17.23
+2015,Manitoba,Optometrists,12.38
+2016,Manitoba,Optometrists,12.56
+2017,Manitoba,Optometrists,13.25
+2018,Manitoba,Optometrists,13.16
+2019,Manitoba,Optometrists,13.83
+2015,Manitoba,Paramedics,199.35
+2016,Manitoba,Paramedics,204.85
+2017,Manitoba,Paramedics,211.85
+2018,Manitoba,Paramedics,223.94
+2019,Manitoba,Paramedics,277.26
+2015,Manitoba,Pharmacists,112.21
+2016,Manitoba,Pharmacists,115.97
+2017,Manitoba,Pharmacists,117.94
+2018,Manitoba,Pharmacists,119.81
+2019,Manitoba,Pharmacists,121.21
+2015,Manitoba,Pharmacy technicians,
+2016,Manitoba,Pharmacy technicians,
+2017,Manitoba,Pharmacy technicians,
+2018,Manitoba,Pharmacy technicians,7.54
+2019,Manitoba,Pharmacy technicians,13.09
+2015,Manitoba,Physician assistants,4.49
+2016,Manitoba,Physician assistants,6.16
+2017,Manitoba,Physician assistants,
+2018,Manitoba,Physician assistants,7.25
+2019,Manitoba,Physician assistants,9.91
+2015,Manitoba,Physicians,205.77
+2016,Manitoba,Physicians,209.11
+2017,Manitoba,Physicians,212.15
+2018,Manitoba,Physicians,225.94
+2019,Manitoba,Physicians,220.32
+2015,Manitoba,Family medicine,107.26
+2016,Manitoba,Family medicine,108.28
+2017,Manitoba,Family medicine,110.9
+2018,Manitoba,Family medicine,113.15
+2019,Manitoba,Family medicine,110.27
+2015,Manitoba,Specialists,98.51
+2016,Manitoba,Specialists,100.83
+2017,Manitoba,Specialists,101.24
+2018,Manitoba,Specialists,112.78
+2019,Manitoba,Specialists,110.05
+2015,Manitoba,Physiotherapists,54.71
+2016,Manitoba,Physiotherapists,55.55
+2017,Manitoba,Physiotherapists,56.91
+2018,Manitoba,Physiotherapists,58.35
+2019,Manitoba,Physiotherapists,60.2
+2015,Manitoba,Psychologists,
+2016,Manitoba,Psychologists,16.06
+2017,Manitoba,Psychologists,19.62
+2018,Manitoba,Psychologists,19.52
+2019,Manitoba,Psychologists,19.67
+2015,Manitoba,Regulated nurses,1314.32
+2016,Manitoba,Regulated nurses,1303.29
+2017,Manitoba,Regulated nurses,1323.28
+2018,Manitoba,Regulated nurses,1317.53
+2019,Manitoba,Regulated nurses,1315.97
+2015,Manitoba,Licensed practical nurses,247.79
+2016,Manitoba,Licensed practical nurses,246.17
+2017,Manitoba,Licensed practical nurses,248.09
+2018,Manitoba,Licensed practical nurses,249.45
+2019,Manitoba,Licensed practical nurses,260.18
+2015,Manitoba,Nurse practitioners,11.76
+2016,Manitoba,Nurse practitioners,12.4
+2017,Manitoba,Nurse practitioners,13.33
+2018,Manitoba,Nurse practitioners,14.27
+2019,Manitoba,Nurse practitioners,16.05
+2015,Manitoba,Registered nurses,977.69
+2016,Manitoba,Registered nurses,966.94
+2017,Manitoba,Registered nurses,982.93
+2018,Manitoba,Registered nurses,974.15
+2019,Manitoba,Registered nurses,961.06
+2015,Manitoba,Registered psychiatric nurses,77.08
+2016,Manitoba,Registered psychiatric nurses,77.77
+2017,Manitoba,Registered psychiatric nurses,78.93
+2018,Manitoba,Registered psychiatric nurses,79.65
+2019,Manitoba,Registered psychiatric nurses,78.69
+2015,Manitoba,Respiratory therapists,
+2016,Manitoba,Respiratory therapists,24.96
+2017,Manitoba,Respiratory therapists,25.61
+2018,Manitoba,Respiratory therapists,25.07
+2019,Manitoba,Respiratory therapists,24.48
+2015,Manitoba,Social workers,92.86
+2016,Manitoba,Social workers,153.48
+2017,Manitoba,Social workers,153.96
+2018,Manitoba,Social workers,160.26
+2019,Manitoba,Social workers,167.95
+2015,Manitoba,Speech–language pathologists,27.7
+2016,Manitoba,Speech–language pathologists,27.47
+2017,Manitoba,Speech–language pathologists,28.76
+2018,Manitoba,Speech–language pathologists,28.77
+2019,Manitoba,Speech–language pathologists,29.29
+2015,Saskatchewan,Audiologists,3.12
+2016,Saskatchewan,Audiologists,3.52
+2017,Saskatchewan,Audiologists,3.22
+2018,Saskatchewan,Audiologists,3.36
+2019,Saskatchewan,Audiologists,
+2015,Saskatchewan,Chiropractors,18.29
+2016,Saskatchewan,Chiropractors,18.31
+2017,Saskatchewan,Chiropractors,18.25
+2018,Saskatchewan,Chiropractors,18.59
+2019,Saskatchewan,Chiropractors,18.76
+2015,Saskatchewan,Dental assistants,101.61
+2016,Saskatchewan,Dental assistants,102.29
+2017,Saskatchewan,Dental assistants,105.84
+2018,Saskatchewan,Dental assistants,107.14
+2019,Saskatchewan,Dental assistants,111.27
+2015,Saskatchewan,Dental hygienists,52.19
+2016,Saskatchewan,Dental hygienists,54.84
+2017,Saskatchewan,Dental hygienists,55.96
+2018,Saskatchewan,Dental hygienists,57.05
+2019,Saskatchewan,Dental hygienists,
+2015,Saskatchewan,Dentists,39.07
+2016,Saskatchewan,Dentists,38.91
+2017,Saskatchewan,Dentists,42.49
+2018,Saskatchewan,Dentists,45.87
+2019,Saskatchewan,Dentists,44.15
+2015,Saskatchewan,Dietitians,31.85
+2016,Saskatchewan,Dietitians,31.51
+2017,Saskatchewan,Dietitians,32.85
+2018,Saskatchewan,Dietitians,34.68
+2019,Saskatchewan,Dietitians,33.13
+2015,Saskatchewan,Environmental public health professionals,8.92
+2016,Saskatchewan,Environmental public health professionals,10.12
+2017,Saskatchewan,Environmental public health professionals,9.65
+2018,Saskatchewan,Environmental public health professionals,9.55
+2019,Saskatchewan,Environmental public health professionals,10.33
+2015,Saskatchewan,Genetic counsellors,0.54
+2016,Saskatchewan,Genetic counsellors,0.44
+2017,Saskatchewan,Genetic counsellors,0.61
+2018,Saskatchewan,Genetic counsellors,0.6
+2019,Saskatchewan,Genetic counsellors,0.6
+2015,Saskatchewan,Health information management professionals,
+2016,Saskatchewan,Health information management professionals,31.69
+2017,Saskatchewan,Health information management professionals,32.24
+2018,Saskatchewan,Health information management professionals,
+2019,Saskatchewan,Health information management professionals,32.79
+2015,Saskatchewan,Medical laboratory technologists,76.81
+2016,Saskatchewan,Medical laboratory technologists,73.5
+2017,Saskatchewan,Medical laboratory technologists,72.99
+2018,Saskatchewan,Medical laboratory technologists,69.19
+2019,Saskatchewan,Medical laboratory technologists,66.95
+2015,Saskatchewan,Medical physicists,1.16
+2016,Saskatchewan,Medical physicists,1.23
+2017,Saskatchewan,Medical physicists,1.22
+2018,Saskatchewan,Medical physicists,1.29
+2019,Saskatchewan,Medical physicists,1.2
+2015,Saskatchewan,Medical radiation technologists,44.52
+2016,Saskatchewan,Medical radiation technologists,55.9
+2017,Saskatchewan,Medical radiation technologists,54.48
+2018,Saskatchewan,Medical radiation technologists,54.04
+2019,Saskatchewan,Medical radiation technologists,54.3
+2015,Saskatchewan,Midwives,0.98
+2016,Saskatchewan,Midwives,1.32
+2017,Saskatchewan,Midwives,1.3
+2018,Saskatchewan,Midwives,1.29
+2019,Saskatchewan,Midwives,1.46
+2015,Saskatchewan,Occupational therapists,29.8
+2016,Saskatchewan,Occupational therapists,29.93
+2017,Saskatchewan,Occupational therapists,29.98
+2018,Saskatchewan,Occupational therapists,30.03
+2019,Saskatchewan,Occupational therapists,30.89
+2015,Saskatchewan,Opticians,
+2016,Saskatchewan,Opticians,18.93
+2017,Saskatchewan,Opticians,9.82
+2018,Saskatchewan,Opticians,
+2019,Saskatchewan,Opticians,10.93
+2015,Saskatchewan,Optometrists,15.52
+2016,Saskatchewan,Optometrists,16.11
+2017,Saskatchewan,Optometrists,15.82
+2018,Saskatchewan,Optometrists,15.49
+2019,Saskatchewan,Optometrists,15.66
+2015,Saskatchewan,Paramedics,185.91
+2016,Saskatchewan,Paramedics,187.68
+2017,Saskatchewan,Paramedics,179.36
+2018,Saskatchewan,Paramedics,155.33
+2019,Saskatchewan,Paramedics,167.63
+2015,Saskatchewan,Pharmacists,133.1
+2016,Saskatchewan,Pharmacists,136.8
+2017,Saskatchewan,Pharmacists,139.56
+2018,Saskatchewan,Pharmacists,141.56
+2019,Saskatchewan,Pharmacists,145
+2015,Saskatchewan,Pharmacy technicians,0.54
+2016,Saskatchewan,Pharmacy technicians,7.22
+2017,Saskatchewan,Pharmacy technicians,16.94
+2018,Saskatchewan,Pharmacy technicians,23.66
+2019,Saskatchewan,Pharmacy technicians,31.93
+2015,Saskatchewan,Physician assistants,0.36
+2016,Saskatchewan,Physician assistants,0.09
+2017,Saskatchewan,Physician assistants,0.09
+2018,Saskatchewan,Physician assistants,0.17
+2019,Saskatchewan,Physician assistants,0.09
+2015,Saskatchewan,Physicians,199.92
+2016,Saskatchewan,Physicians,200.88
+2017,Saskatchewan,Physicians,204.73
+2018,Saskatchewan,Physicians,205.67
+2019,Saskatchewan,Physicians,213.76
+2015,Saskatchewan,Family medicine,111.06
+2016,Saskatchewan,Family medicine,109.24
+2017,Saskatchewan,Family medicine,114.62
+2018,Saskatchewan,Family medicine,113.51
+2019,Saskatchewan,Family medicine,117.29
+2015,Saskatchewan,Specialists,88.85
+2016,Saskatchewan,Specialists,91.64
+2017,Saskatchewan,Specialists,90.11
+2018,Saskatchewan,Specialists,92.16
+2019,Saskatchewan,Specialists,96.47
+2015,Saskatchewan,Physiotherapists,62.98
+2016,Saskatchewan,Physiotherapists,64.53
+2017,Saskatchewan,Physiotherapists,63.52
+2018,Saskatchewan,Physiotherapists,64.2
+2019,Saskatchewan,Physiotherapists,64.2
+2015,Saskatchewan,Psychologists,46.3
+2016,Saskatchewan,Psychologists,47.27
+2017,Saskatchewan,Psychologists,43.54
+2018,Saskatchewan,Psychologists,43.54
+2019,Saskatchewan,Psychologists,44.32
+2015,Saskatchewan,Regulated nurses,1319.66
+2016,Saskatchewan,Regulated nurses,1328.36
+2017,Saskatchewan,Regulated nurses,1335.61
+2018,Saskatchewan,Regulated nurses,1336.16
+2019,Saskatchewan,Regulated nurses,1349.15
+2015,Saskatchewan,Licensed practical nurses,312.5
+2016,Saskatchewan,Licensed practical nurses,310.39
+2017,Saskatchewan,Licensed practical nurses,315.44
+2018,Saskatchewan,Licensed practical nurses,314.01
+2019,Saskatchewan,Licensed practical nurses,318.4
+2015,Saskatchewan,Nurse practitioners,16.59
+2016,Saskatchewan,Nurse practitioners,18.13
+2017,Saskatchewan,Nurse practitioners,18.77
+2018,Saskatchewan,Nurse practitioners,19.62
+2019,Saskatchewan,Nurse practitioners,20.31
+2015,Saskatchewan,Registered nurses,912.25
+2016,Saskatchewan,Registered nurses,924.92
+2017,Saskatchewan,Registered nurses,927.8
+2018,Saskatchewan,Registered nurses,931.53
+2019,Saskatchewan,Registered nurses,941.43
+2015,Saskatchewan,Registered psychiatric nurses,78.33
+2016,Saskatchewan,Registered psychiatric nurses,74.91
+2017,Saskatchewan,Registered psychiatric nurses,73.6
+2018,Saskatchewan,Registered psychiatric nurses,70.99
+2019,Saskatchewan,Registered psychiatric nurses,69.02
+2015,Saskatchewan,Respiratory therapists,19.89
+2016,Saskatchewan,Respiratory therapists,20.33
+2017,Saskatchewan,Respiratory therapists,20.16
+2018,Saskatchewan,Respiratory therapists,21
+2019,Saskatchewan,Respiratory therapists,22.03
+2015,Saskatchewan,Social workers,148.44
+2016,Saskatchewan,Social workers,149.74
+2017,Saskatchewan,Social workers,158.41
+2018,Saskatchewan,Social workers,169.61
+2019,Saskatchewan,Social workers,179.77
+2015,Saskatchewan,Speech–language pathologists,29.8
+2016,Saskatchewan,Speech–language pathologists,31.95
+2017,Saskatchewan,Speech–language pathologists,32.59
+2018,Saskatchewan,Speech–language pathologists,32.87
+2019,Saskatchewan,Speech–language pathologists,
+2015,Alberta,Audiologists,3.96
+2016,Alberta,Audiologists,4.12
+2017,Alberta,Audiologists,4.01
+2018,Alberta,Audiologists,4.27
+2019,Alberta,Audiologists,4.32
+2015,Alberta,Chiropractors,25
+2016,Alberta,Chiropractors,24.83
+2017,Alberta,Chiropractors,24.98
+2018,Alberta,Chiropractors,25.38
+2019,Alberta,Chiropractors,27.35
+2015,Alberta,Dental assistants,119.58
+2016,Alberta,Dental assistants,131.67
+2017,Alberta,Dental assistants,138.97
+2018,Alberta,Dental assistants,137.15
+2019,Alberta,Dental assistants,140.3
+2015,Alberta,Dental hygienists,73.95
+2016,Alberta,Dental hygienists,74.57
+2017,Alberta,Dental hygienists,74.84
+2018,Alberta,Dental hygienists,75.46
+2019,Alberta,Dental hygienists,76.13
+2015,Alberta,Dentists,58.63
+2016,Alberta,Dentists,58.65
+2017,Alberta,Dentists,59.33
+2018,Alberta,Dentists,62.55
+2019,Alberta,Dentists,62.2
+2015,Alberta,Dietitians,29.92
+2016,Alberta,Dietitians,30.43
+2017,Alberta,Dietitians,30.35
+2018,Alberta,Dietitians,30.53
+2019,Alberta,Dietitians,31.18
+2015,Alberta,Environmental public health professionals,9
+2016,Alberta,Environmental public health professionals,9.32
+2017,Alberta,Environmental public health professionals,9.35
+2018,Alberta,Environmental public health professionals,8.99
+2019,Alberta,Environmental public health professionals,8.89
+2015,Alberta,Genetic counsellors,0.68
+2016,Alberta,Genetic counsellors,0.69
+2017,Alberta,Genetic counsellors,0.66
+2018,Alberta,Genetic counsellors,0.6
+2019,Alberta,Genetic counsellors,0.63
+2015,Alberta,Health information management professionals,
+2016,Alberta,Health information management professionals,17.09
+2017,Alberta,Health information management professionals,17.65
+2018,Alberta,Health information management professionals,
+2019,Alberta,Health information management professionals,17.99
+2015,Alberta,Medical laboratory technologists,61
+2016,Alberta,Medical laboratory technologists,60.37
+2017,Alberta,Medical laboratory technologists,60.49
+2018,Alberta,Medical laboratory technologists,59.6
+2019,Alberta,Medical laboratory technologists,59.85
+2015,Alberta,Medical physicists,1.13
+2016,Alberta,Medical physicists,1.07
+2017,Alberta,Medical physicists,0.99
+2018,Alberta,Medical physicists,1.09
+2019,Alberta,Medical physicists,1.07
+2015,Alberta,Medical radiation technologists,52.87
+2016,Alberta,Medical radiation technologists,57.55
+2017,Alberta,Medical radiation technologists,54.26
+2018,Alberta,Medical radiation technologists,56.09
+2019,Alberta,Medical radiation technologists,55.93
+2015,Alberta,Midwives,2.27
+2016,Alberta,Midwives,2.65
+2017,Alberta,Midwives,2.83
+2018,Alberta,Midwives,2.95
+2019,Alberta,Midwives,3.2
+2015,Alberta,Occupational therapists,49.13
+2016,Alberta,Occupational therapists,49.38
+2017,Alberta,Occupational therapists,50.54
+2018,Alberta,Occupational therapists,51.29
+2019,Alberta,Occupational therapists,52.47
+2015,Alberta,Opticians,
+2016,Alberta,Opticians,25.12
+2017,Alberta,Opticians,24.43
+2018,Alberta,Opticians,
+2019,Alberta,Opticians,7.22
+2015,Alberta,Optometrists,17.88
+2016,Alberta,Optometrists,18.26
+2017,Alberta,Optometrists,18.71
+2018,Alberta,Optometrists,18.53
+2019,Alberta,Optometrists,19.25
+2015,Alberta,Paramedics,199.52
+2016,Alberta,Paramedics,197.66
+2017,Alberta,Paramedics,195.24
+2018,Alberta,Paramedics,191.36
+2019,Alberta,Paramedics,206.73
+2015,Alberta,Pharmacists,116.25
+2016,Alberta,Pharmacists,122.02
+2017,Alberta,Pharmacists,124.32
+2018,Alberta,Pharmacists,126.19
+2019,Alberta,Pharmacists,129.14
+2015,Alberta,Pharmacy technicians,32.48
+2016,Alberta,Pharmacy technicians,32.98
+2017,Alberta,Pharmacy technicians,34.31
+2018,Alberta,Pharmacy technicians,35.1
+2019,Alberta,Pharmacy technicians,37.43
+2015,Alberta,Physician assistants,0.6
+2016,Alberta,Physician assistants,0.69
+2017,Alberta,Physician assistants,0.94
+2018,Alberta,Physician assistants,0.93
+2019,Alberta,Physician assistants,1.04
+2015,Alberta,Physicians,241.74
+2016,Alberta,Physicians,245.33
+2017,Alberta,Physicians,251.65
+2018,Alberta,Physicians,250.89
+2019,Alberta,Physicians,260.15
+2015,Alberta,Family medicine,125.78
+2016,Alberta,Family medicine,126.79
+2017,Alberta,Family medicine,130.16
+2018,Alberta,Family medicine,127.44
+2019,Alberta,Family medicine,129.99
+2015,Alberta,Specialists,115.96
+2016,Alberta,Specialists,118.54
+2017,Alberta,Specialists,121.49
+2018,Alberta,Specialists,123.45
+2019,Alberta,Specialists,130.16
+2015,Alberta,Physiotherapists,63.39
+2016,Alberta,Physiotherapists,66.01
+2017,Alberta,Physiotherapists,67.06
+2018,Alberta,Physiotherapists,69
+2019,Alberta,Physiotherapists,71.65
+2015,Alberta,Psychologists,
+2016,Alberta,Psychologists,80.86
+2017,Alberta,Psychologists,84.52
+2018,Alberta,Psychologists,86.48
+2019,Alberta,Psychologists,91.2
+2015,Alberta,Regulated nurses,1177.85
+2016,Alberta,Regulated nurses,1191.98
+2017,Alberta,Regulated nurses,1206.5
+2018,Alberta,Regulated nurses,1215.64
+2019,Alberta,Regulated nurses,1238.42
+2015,Alberta,Licensed practical nurses,297.5
+2016,Alberta,Licensed practical nurses,316.03
+2017,Alberta,Licensed practical nurses,328.89
+2018,Alberta,Licensed practical nurses,343.73
+2019,Alberta,Licensed practical nurses,360.17
+2015,Alberta,Nurse practitioners,9.99
+2016,Alberta,Nurse practitioners,10.7
+2017,Alberta,Nurse practitioners,11.33
+2018,Alberta,Nurse practitioners,12.28
+2019,Alberta,Nurse practitioners,13.26
+2015,Alberta,Registered nurses,838.8
+2016,Alberta,Registered nurses,833.92
+2017,Alberta,Registered nurses,835.25
+2018,Alberta,Registered nurses,828.65
+2019,Alberta,Registered nurses,833.67
+2015,Alberta,Registered psychiatric nurses,31.56
+2016,Alberta,Registered psychiatric nurses,31.32
+2017,Alberta,Registered psychiatric nurses,31.03
+2018,Alberta,Registered psychiatric nurses,30.97
+2019,Alberta,Registered psychiatric nurses,31.32
+2015,Alberta,Respiratory therapists,40.46
+2016,Alberta,Respiratory therapists,39.89
+2017,Alberta,Respiratory therapists,42.95
+2018,Alberta,Respiratory therapists,43.02
+2019,Alberta,Respiratory therapists,44
+2015,Alberta,Social workers,164.8
+2016,Alberta,Social workers,171.78
+2017,Alberta,Social workers,165.76
+2018,Alberta,Social workers,169.77
+2019,Alberta,Social workers,176.87
+2015,Alberta,Speech–language pathologists,32.62
+2016,Alberta,Speech–language pathologists,33.51
+2017,Alberta,Speech–language pathologists,33.67
+2018,Alberta,Speech–language pathologists,34.48
+2019,Alberta,Speech–language pathologists,34.94
+2015,British Columbia,Audiologists,5.82
+2016,British Columbia,Audiologists,5.64
+2017,British Columbia,Audiologists,5.61
+2018,British Columbia,Audiologists,5.99
+2019,British Columbia,Audiologists,6.21
+2015,British Columbia,Chiropractors,23.53
+2016,British Columbia,Chiropractors,23.17
+2017,British Columbia,Chiropractors,24.26
+2018,British Columbia,Chiropractors,24.94
+2019,British Columbia,Chiropractors,26.52
+2015,British Columbia,Dental assistants,124.34
+2016,British Columbia,Dental assistants,123.85
+2017,British Columbia,Dental assistants,123.95
+2018,British Columbia,Dental assistants,122.96
+2019,British Columbia,Dental assistants,123.16
+2015,British Columbia,Dental hygienists,77.26
+2016,British Columbia,Dental hygienists,78.43
+2017,British Columbia,Dental hygienists,76.15
+2018,British Columbia,Dental hygienists,69.84
+2019,British Columbia,Dental hygienists,83.58
+2015,British Columbia,Dentists,68.27
+2016,British Columbia,Dentists,69.54
+2017,British Columbia,Dentists,68.49
+2018,British Columbia,Dentists,71.94
+2019,British Columbia,Dentists,72.16
+2015,British Columbia,Dietitians,25.71
+2016,British Columbia,Dietitians,27
+2017,British Columbia,Dietitians,27.39
+2018,British Columbia,Dietitians,25.84
+2019,British Columbia,Dietitians,28.05
+2015,British Columbia,Environmental public health professionals,3.89
+2016,British Columbia,Environmental public health professionals,3.89
+2017,British Columbia,Environmental public health professionals,4.63
+2018,British Columbia,Environmental public health professionals,4.21
+2019,British Columbia,Environmental public health professionals,3.77
+2015,British Columbia,Genetic counsellors,1.11
+2016,British Columbia,Genetic counsellors,1.09
+2017,British Columbia,Genetic counsellors,1.12
+2018,British Columbia,Genetic counsellors,1.18
+2019,British Columbia,Genetic counsellors,1.28
+2015,British Columbia,Health information management professionals,
+2016,British Columbia,Health information management professionals,9.49
+2017,British Columbia,Health information management professionals,9.47
+2018,British Columbia,Health information management professionals,
+2019,British Columbia,Health information management professionals,9.94
+2015,British Columbia,Medical laboratory technologists,45.79
+2016,British Columbia,Medical laboratory technologists,43.53
+2017,British Columbia,Medical laboratory technologists,38.78
+2018,British Columbia,Medical laboratory technologists,37.48
+2019,British Columbia,Medical laboratory technologists,34.56
+2015,British Columbia,Medical physicists,1.15
+2016,British Columbia,Medical physicists,1.3
+2017,British Columbia,Medical physicists,1.38
+2018,British Columbia,Medical physicists,1.44
+2019,British Columbia,Medical physicists,1.38
+2015,British Columbia,Medical radiation technologists,40.39
+2016,British Columbia,Medical radiation technologists,39.02
+2017,British Columbia,Medical radiation technologists,42.77
+2018,British Columbia,Medical radiation technologists,42.63
+2019,British Columbia,Medical radiation technologists,41.43
+2015,British Columbia,Midwives,5.17
+2016,British Columbia,Midwives,5.62
+2017,British Columbia,Midwives,5.97
+2018,British Columbia,Midwives,5.75
+2019,British Columbia,Midwives,6.17
+2015,British Columbia,Occupational therapists,44.22
+2016,British Columbia,Occupational therapists,45.54
+2017,British Columbia,Occupational therapists,46.87
+2018,British Columbia,Occupational therapists,47.74
+2019,British Columbia,Occupational therapists,49.9
+2015,British Columbia,Opticians,
+2016,British Columbia,Opticians,25.37
+2017,British Columbia,Opticians,8.47
+2018,British Columbia,Opticians,
+2019,British Columbia,Opticians,12
+2015,British Columbia,Optometrists,15.07
+2016,British Columbia,Optometrists,15.33
+2017,British Columbia,Optometrists,15.95
+2018,British Columbia,Optometrists,16.17
+2019,British Columbia,Optometrists,17.05
+2015,British Columbia,Paramedics,
+2016,British Columbia,Paramedics,96.5
+2017,British Columbia,Paramedics,95.53
+2018,British Columbia,Paramedics,98
+2019,British Columbia,Paramedics,98.52
+2015,British Columbia,Pharmacists,108.81
+2016,British Columbia,Pharmacists,106.77
+2017,British Columbia,Pharmacists,112.39
+2018,British Columbia,Pharmacists,113.73
+2019,British Columbia,Pharmacists,114.93
+2015,British Columbia,Pharmacy technicians,27.38
+2016,British Columbia,Pharmacy technicians,28.81
+2017,British Columbia,Pharmacy technicians,30.31
+2018,British Columbia,Pharmacy technicians,31.39
+2019,British Columbia,Pharmacy technicians,32.95
+2015,British Columbia,Physician assistants,0.44
+2016,British Columbia,Physician assistants,0.41
+2017,British Columbia,Physician assistants,0.49
+2018,British Columbia,Physician assistants,0.42
+2019,British Columbia,Physician assistants,0.44
+2015,British Columbia,Physicians,228.56
+2016,British Columbia,Physicians,237.63
+2017,British Columbia,Physicians,239.79
+2018,British Columbia,Physicians,251.48
+2019,British Columbia,Physicians,255.56
+2015,British Columbia,Family medicine,122.52
+2016,British Columbia,Family medicine,127.37
+2017,British Columbia,Family medicine,129.46
+2018,British Columbia,Family medicine,134.64
+2019,British Columbia,Family medicine,133.96
+2015,British Columbia,Specialists,106.04
+2016,British Columbia,Specialists,110.26
+2017,British Columbia,Specialists,110.34
+2018,British Columbia,Specialists,116.83
+2019,British Columbia,Specialists,121.6
+2015,British Columbia,Physiotherapists,71.27
+2016,British Columbia,Physiotherapists,72.81
+2017,British Columbia,Physiotherapists,74.97
+2018,British Columbia,Physiotherapists,76.61
+2019,British Columbia,Physiotherapists,78.43
+2015,British Columbia,Psychologists,25
+2016,British Columbia,Psychologists,25.27
+2017,British Columbia,Psychologists,25.05
+2018,British Columbia,Psychologists,24.98
+2019,British Columbia,Psychologists,25.08
+2015,British Columbia,Regulated nurses,1045.04
+2016,British Columbia,Regulated nurses,1056.5
+2017,British Columbia,Regulated nurses,1066.08
+2018,British Columbia,Regulated nurses,1061.69
+2019,British Columbia,Regulated nurses,1076.45
+2015,British Columbia,Licensed practical nurses,243.26
+2016,British Columbia,Licensed practical nurses,242.32
+2017,British Columbia,Licensed practical nurses,243.43
+2018,British Columbia,Licensed practical nurses,243.44
+2019,British Columbia,Licensed practical nurses,247.43
+2015,British Columbia,Nurse practitioners,6.59
+2016,British Columbia,Nurse practitioners,7.92
+2017,British Columbia,Nurse practitioners,8.49
+2018,British Columbia,Nurse practitioners,9.32
+2019,British Columbia,Nurse practitioners,10.3
+2015,British Columbia,Registered nurses,741.08
+2016,British Columbia,Registered nurses,751.27
+2017,British Columbia,Registered nurses,758.92
+2018,British Columbia,Registered nurses,753.09
+2019,British Columbia,Registered nurses,762.09
+2015,British Columbia,Registered psychiatric nurses,54.1
+2016,British Columbia,Registered psychiatric nurses,54.99
+2017,British Columbia,Registered psychiatric nurses,55.24
+2018,British Columbia,Registered psychiatric nurses,55.83
+2019,British Columbia,Registered psychiatric nurses,56.63
+2015,British Columbia,Respiratory therapists,19.89
+2016,British Columbia,Respiratory therapists,20.58
+2017,British Columbia,Respiratory therapists,
+2018,British Columbia,Respiratory therapists,
+2019,British Columbia,Respiratory therapists,19.61
+2015,British Columbia,Social workers,87.3
+2016,British Columbia,Social workers,84.25
+2017,British Columbia,Social workers,85.86
+2018,British Columbia,Social workers,87.31
+2019,British Columbia,Social workers,
+2015,British Columbia,Speech–language pathologists,23.24
+2016,British Columbia,Speech–language pathologists,23.93
+2017,British Columbia,Speech–language pathologists,24.52
+2018,British Columbia,Speech–language pathologists,26.12
+2019,British Columbia,Speech–language pathologists,27.47
+2015,Yukon,Audiologists,7.96
+2016,Yukon,Audiologists,5.19
+2017,Yukon,Audiologists,7.57
+2018,Yukon,Audiologists,2.47
+2019,Yukon,Audiologists,2.47
+2015,Yukon,Chiropractors,15.92
+2016,Yukon,Chiropractors,15.57
+2017,Yukon,Chiropractors,
+2018,Yukon,Chiropractors,12.35
+2019,Yukon,Chiropractors,14.82
+2015,Yukon,Dental assistants,
+2016,Yukon,Dental assistants,
+2017,Yukon,Dental assistants,
+2018,Yukon,Dental assistants,
+2019,Yukon,Dental assistants,
+2015,Yukon,Dental hygienists,95.52
+2016,Yukon,Dental hygienists,93.39
+2017,Yukon,Dental hygienists,
+2018,Yukon,Dental hygienists,66.71
+2019,Yukon,Dental hygienists,91.41
+2015,Yukon,Dentists,111.44
+2016,Yukon,Dentists,108.96
+2017,Yukon,Dentists,
+2018,Yukon,Dentists,113.65
+2019,Yukon,Dentists,172.94
+2015,Yukon,Dietitians,
+2016,Yukon,Dietitians,
+2017,Yukon,Dietitians,
+2018,Yukon,Dietitians,27.18
+2019,Yukon,Dietitians,29.65
+2015,Yukon,Environmental public health professionals,2.65
+2016,Yukon,Environmental public health professionals,2.59
+2017,Yukon,Environmental public health professionals,5.05
+2018,Yukon,Environmental public health professionals,17.29
+2019,Yukon,Environmental public health professionals,17.29
+2015,Yukon,Genetic counsellors,2.65
+2016,Yukon,Genetic counsellors,2.59
+2017,Yukon,Genetic counsellors,2.52
+2018,Yukon,Genetic counsellors,2.47
+2019,Yukon,Genetic counsellors,2.47
+2015,Yukon,Health information management professionals,
+2016,Yukon,Health information management professionals,18.16
+2017,Yukon,Health information management professionals,17.66
+2018,Yukon,Health information management professionals,
+2019,Yukon,Health information management professionals,14.82
+2015,Yukon,Medical laboratory technologists,61.02
+2016,Yukon,Medical laboratory technologists,67.45
+2017,Yukon,Medical laboratory technologists,55.52
+2018,Yukon,Medical laboratory technologists,54.35
+2019,Yukon,Medical laboratory technologists,66.71
+2015,Yukon,Medical physicists,
+2016,Yukon,Medical physicists,
+2017,Yukon,Medical physicists,
+2018,Yukon,Medical physicists,
+2019,Yukon,Medical physicists,
+2015,Yukon,Medical radiation technologists,45.1
+2016,Yukon,Medical radiation technologists,44.1
+2017,Yukon,Medical radiation technologists,50.47
+2018,Yukon,Medical radiation technologists,
+2019,Yukon,Medical radiation technologists,44.47
+2015,Yukon,Midwives,
+2016,Yukon,Midwives,7.78
+2017,Yukon,Midwives,0
+2018,Yukon,Midwives,0
+2019,Yukon,Midwives,
+2015,Yukon,Occupational therapists,50.41
+2016,Yukon,Occupational therapists,46.7
+2017,Yukon,Occupational therapists,40.38
+2018,Yukon,Occupational therapists,44.47
+2019,Yukon,Occupational therapists,66.71
+2015,Yukon,Opticians,
+2016,Yukon,Opticians,
+2017,Yukon,Opticians,
+2018,Yukon,Opticians,
+2019,Yukon,Opticians,
+2015,Yukon,Optometrists,18.57
+2016,Yukon,Optometrists,18.16
+2017,Yukon,Optometrists,
+2018,Yukon,Optometrists,17.29
+2019,Yukon,Optometrists,19.76
+2015,Yukon,Paramedics,
+2016,Yukon,Paramedics,
+2017,Yukon,Paramedics,
+2018,Yukon,Paramedics,
+2019,Yukon,Paramedics,
+2015,Yukon,Pharmacists,127.35
+2016,Yukon,Pharmacists,108.96
+2017,Yukon,Pharmacists,133.74
+2018,Yukon,Pharmacists,163.06
+2019,Yukon,Pharmacists,163.06
+2015,Yukon,Pharmacy technicians,
+2016,Yukon,Pharmacy technicians,
+2017,Yukon,Pharmacy technicians,
+2018,Yukon,Pharmacy technicians,
+2019,Yukon,Pharmacy technicians,
+2015,Yukon,Physician assistants,0
+2016,Yukon,Physician assistants,0
+2017,Yukon,Physician assistants,0
+2018,Yukon,Physician assistants,0
+2019,Yukon,Physician assistants,0
+2015,Yukon,Physicians,209.6
+2016,Yukon,Physicians,202.35
+2017,Yukon,Physicians,194.31
+2018,Yukon,Physicians,190.24
+2019,Yukon,Physicians,195.18
+2015,Yukon,Family medicine,180.42
+2016,Yukon,Family medicine,176.41
+2017,Yukon,Family medicine,169.07
+2018,Yukon,Family medicine,158.12
+2019,Yukon,Family medicine,165.53
+2015,Yukon,Specialists,29.19
+2016,Yukon,Specialists,25.94
+2017,Yukon,Specialists,25.23
+2018,Yukon,Specialists,32.12
+2019,Yukon,Specialists,29.65
+2015,Yukon,Physiotherapists,100.82
+2016,Yukon,Physiotherapists,116.74
+2017,Yukon,Physiotherapists,
+2018,Yukon,Physiotherapists,133.41
+2019,Yukon,Physiotherapists,128.47
+2015,Yukon,Psychologists,
+2016,Yukon,Psychologists,
+2017,Yukon,Psychologists,
+2018,Yukon,Psychologists,
+2019,Yukon,Psychologists,
+2015,Yukon,Regulated nurses,1374.37
+2016,Yukon,Regulated nurses,1380.13
+2017,Yukon,Regulated nurses,1478.75
+2018,Yukon,Regulated nurses,1682.48
+2019,Yukon,Regulated nurses,1786.24
+2015,Yukon,Licensed practical nurses,291.85
+2016,Yukon,Licensed practical nurses,295.74
+2017,Yukon,Licensed practical nurses,338.14
+2018,Yukon,Licensed practical nurses,481.77
+2019,Yukon,Licensed practical nurses,555.88
+2015,Yukon,Nurse practitioners,13.27
+2016,Yukon,Nurse practitioners,12.97
+2017,Yukon,Nurse practitioners,15.14
+2018,Yukon,Nurse practitioners,19.76
+2019,Yukon,Nurse practitioners,24.71
+2015,Yukon,Registered nurses,1055.98
+2016,Yukon,Registered nurses,1061.04
+2017,Yukon,Registered nurses,1125.47
+2018,Yukon,Registered nurses,1168.59
+2019,Yukon,Registered nurses,1185.89
+2015,Yukon,Registered psychiatric nurses,13.27
+2016,Yukon,Registered psychiatric nurses,10.38
+2017,Yukon,Registered psychiatric nurses,
+2018,Yukon,Registered psychiatric nurses,12.35
+2019,Yukon,Registered psychiatric nurses,19.76
+2015,Yukon,Respiratory therapists,10.61
+2016,Yukon,Respiratory therapists,10.38
+2017,Yukon,Respiratory therapists,12.62
+2018,Yukon,Respiratory therapists,12.35
+2019,Yukon,Respiratory therapists,12.35
+2015,Yukon,Social workers,
+2016,Yukon,Social workers,
+2017,Yukon,Social workers,
+2018,Yukon,Social workers,
+2019,Yukon,Social workers,
+2015,Yukon,Speech–language pathologists,45.1
+2016,Yukon,Speech–language pathologists,41.51
+2017,Yukon,Speech–language pathologists,40.38
+2018,Yukon,Speech–language pathologists,42
+2019,Yukon,Speech–language pathologists,56.82
+2015,Northwest Territories,Audiologists,4.52
+2016,Northwest Territories,Audiologists,6.72
+2017,Northwest Territories,Audiologists,6.68
+2018,Northwest Territories,Audiologists,6.74
+2019,Northwest Territories,Audiologists,6.74
+2015,Northwest Territories,Chiropractors,
+2016,Northwest Territories,Chiropractors,
+2017,Northwest Territories,Chiropractors,
+2018,Northwest Territories,Chiropractors,
+2019,Northwest Territories,Chiropractors,
+2015,Northwest Territories,Dental assistants,
+2016,Northwest Territories,Dental assistants,
+2017,Northwest Territories,Dental assistants,
+2018,Northwest Territories,Dental assistants,
+2019,Northwest Territories,Dental assistants,
+2015,Northwest Territories,Dental hygienists,59.46
+2016,Northwest Territories,Dental hygienists,57.58
+2017,Northwest Territories,Dental hygienists,82.34
+2018,Northwest Territories,Dental hygienists,78.58
+2019,Northwest Territories,Dental hygienists,62.86
+2015,Northwest Territories,Dentists,189.53
+2016,Northwest Territories,Dentists,180.09
+2017,Northwest Territories,Dentists,131.3
+2018,Northwest Territories,Dentists,134.71
+2019,Northwest Territories,Dentists,130.22
+2015,Northwest Territories,Dietitians,
+2016,Northwest Territories,Dietitians,
+2017,Northwest Territories,Dietitians,
+2018,Northwest Territories,Dietitians,31.43
+2019,Northwest Territories,Dietitians,29.19
+2015,Northwest Territories,Environmental public health professionals,14.87
+2016,Northwest Territories,Environmental public health professionals,11.03
+2017,Northwest Territories,Environmental public health professionals,22.25
+2018,Northwest Territories,Environmental public health professionals,20.21
+2019,Northwest Territories,Environmental public health professionals,20.21
+2015,Northwest Territories,Genetic counsellors,
+2016,Northwest Territories,Genetic counsellors,
+2017,Northwest Territories,Genetic counsellors,
+2018,Northwest Territories,Genetic counsellors,
+2019,Northwest Territories,Genetic counsellors,0
+2015,Northwest Territories,Health information management professionals,
+2016,Northwest Territories,Health information management professionals,18.38
+2017,Northwest Territories,Health information management professionals,37.83
+2018,Northwest Territories,Health information management professionals,
+2019,Northwest Territories,Health information management professionals,40.41
+2015,Northwest Territories,Medical laboratory technologists,65.56
+2016,Northwest Territories,Medical laboratory technologists,55.13
+2017,Northwest Territories,Medical laboratory technologists,62.31
+2018,Northwest Territories,Medical laboratory technologists,65.11
+2019,Northwest Territories,Medical laboratory technologists,71.84
+2015,Northwest Territories,Medical physicists,
+2016,Northwest Territories,Medical physicists,
+2017,Northwest Territories,Medical physicists,
+2018,Northwest Territories,Medical physicists,
+2019,Northwest Territories,Medical physicists,
+2015,Northwest Territories,Medical radiation technologists,24.87
+2016,Northwest Territories,Medical radiation technologists,23.28
+2017,Northwest Territories,Medical radiation technologists,22.25
+2018,Northwest Territories,Medical radiation technologists,
+2019,Northwest Territories,Medical radiation technologists,
+2015,Northwest Territories,Midwives,32.21
+2016,Northwest Territories,Midwives,34.3
+2017,Northwest Territories,Midwives,15.58
+2018,Northwest Territories,Midwives,15.72
+2019,Northwest Territories,Midwives,22.45
+2015,Northwest Territories,Occupational therapists,38.43
+2016,Northwest Territories,Occupational therapists,35.84
+2017,Northwest Territories,Occupational therapists,24.48
+2018,Northwest Territories,Occupational therapists,38.17
+2019,Northwest Territories,Occupational therapists,42.66
+2015,Northwest Territories,Opticians,
+2016,Northwest Territories,Opticians,
+2017,Northwest Territories,Opticians,
+2018,Northwest Territories,Opticians,
+2019,Northwest Territories,Opticians,
+2015,Northwest Territories,Optometrists,1.24
+2016,Northwest Territories,Optometrists,2.45
+2017,Northwest Territories,Optometrists,2.23
+2018,Northwest Territories,Optometrists,0
+2019,Northwest Territories,Optometrists,0
+2015,Northwest Territories,Paramedics,
+2016,Northwest Territories,Paramedics,
+2017,Northwest Territories,Paramedics,
+2018,Northwest Territories,Paramedics,
+2019,Northwest Territories,Paramedics,
+2015,Northwest Territories,Pharmacists,67.82
+2016,Northwest Territories,Pharmacists,76.15
+2017,Northwest Territories,Pharmacists,91.24
+2018,Northwest Territories,Pharmacists,94.3
+2019,Northwest Territories,Pharmacists,98.79
+2015,Northwest Territories,Pharmacy technicians,
+2016,Northwest Territories,Pharmacy technicians,
+2017,Northwest Territories,Pharmacy technicians,
+2018,Northwest Territories,Pharmacy technicians,
+2019,Northwest Territories,Pharmacy technicians,
+2015,Northwest Territories,Physician assistants,2.26
+2016,Northwest Territories,Physician assistants,0
+2017,Northwest Territories,Physician assistants,0
+2018,Northwest Territories,Physician assistants,0
+2019,Northwest Territories,Physician assistants,0
+2015,Northwest Territories,Physicians,83.64
+2016,Northwest Territories,Physicians,73.91
+2017,Northwest Territories,Physicians,77.89
+2018,Northwest Territories,Physicians,92.05
+2019,Northwest Territories,Physicians,98.79
+2015,Northwest Territories,Family medicine,67.82
+2016,Northwest Territories,Family medicine,55.99
+2017,Northwest Territories,Family medicine,60.09
+2018,Northwest Territories,Family medicine,78.58
+2019,Northwest Territories,Family medicine,83.07
+2015,Northwest Territories,Specialists,15.82
+2016,Northwest Territories,Specialists,17.92
+2017,Northwest Territories,Specialists,17.8
+2018,Northwest Territories,Specialists,13.47
+2019,Northwest Territories,Specialists,15.72
+2015,Northwest Territories,Physiotherapists,
+2016,Northwest Territories,Physiotherapists,
+2017,Northwest Territories,Physiotherapists,
+2018,Northwest Territories,Physiotherapists,
+2019,Northwest Territories,Physiotherapists,
+2015,Northwest Territories,Psychologists,105.3
+2016,Northwest Territories,Psychologists,101.69
+2017,Northwest Territories,Psychologists,158
+2018,Northwest Territories,Psychologists,145.93
+2019,Northwest Territories,Psychologists,141.44
+2015,Northwest Territories,Regulated nurses,
+2016,Northwest Territories,Regulated nurses,
+2017,Northwest Territories,Regulated nurses,
+2018,Northwest Territories,Regulated nurses,
+2019,Northwest Territories,Regulated nurses,
+2015,Northwest Territories,Licensed practical nurses,226.06
+2016,Northwest Territories,Licensed practical nurses,262.04
+2017,Northwest Territories,Licensed practical nurses,258.14
+2018,Northwest Territories,Licensed practical nurses,240.23
+2019,Northwest Territories,Licensed practical nurses,237.98
+2015,Northwest Territories,Nurse practitioners,55.74
+2016,Northwest Territories,Nurse practitioners,50.23
+2017,Northwest Territories,Nurse practitioners,67.89
+2018,Northwest Territories,Nurse practitioners,60.29
+2019,Northwest Territories,Nurse practitioners,55.46
+2015,Northwest Territories,Registered nurses,1295.76
+2016,Northwest Territories,Registered nurses,1249.63
+2017,Northwest Territories,Registered nurses,1209.87
+2018,Northwest Territories,Registered nurses,971.82
+2019,Northwest Territories,Registered nurses,882.6
+2015,Northwest Territories,Registered psychiatric nurses,
+2016,Northwest Territories,Registered psychiatric nurses,
+2017,Northwest Territories,Registered psychiatric nurses,
+2018,Northwest Territories,Registered psychiatric nurses,
+2019,Northwest Territories,Registered psychiatric nurses,
+2015,Northwest Territories,Respiratory therapists,8.67
+2016,Northwest Territories,Respiratory therapists,9.8
+2017,Northwest Territories,Respiratory therapists,13.35
+2018,Northwest Territories,Respiratory therapists,13.47
+2019,Northwest Territories,Respiratory therapists,15.72
+2015,Northwest Territories,Social workers,250.92
+2016,Northwest Territories,Social workers,264.28
+2017,Northwest Territories,Social workers,311.55
+2018,Northwest Territories,Social workers,282.89
+2019,Northwest Territories,Social workers,318.81
+2015,Northwest Territories,Speech–language pathologists,14.87
+2016,Northwest Territories,Speech–language pathologists,14.7
+2017,Northwest Territories,Speech–language pathologists,31.16
+2018,Northwest Territories,Speech–language pathologists,29.19
+2019,Northwest Territories,Speech–language pathologists,35.92
+2015,Nunavut,Audiologists,
+2016,Nunavut,Audiologists,
+2017,Nunavut,Audiologists,0
+2018,Nunavut,Audiologists,2.6
+2019,Nunavut,Audiologists,2.6
+2015,Nunavut,Chiropractors,
+2016,Nunavut,Chiropractors,
+2017,Nunavut,Chiropractors,
+2018,Nunavut,Chiropractors,
+2019,Nunavut,Chiropractors,
+2015,Nunavut,Dental assistants,
+2016,Nunavut,Dental assistants,
+2017,Nunavut,Dental assistants,
+2018,Nunavut,Dental assistants,
+2019,Nunavut,Dental assistants,
+2015,Nunavut,Dental hygienists,59.46
+2016,Nunavut,Dental hygienists,57.58
+2017,Nunavut,Dental hygienists,66.57
+2018,Nunavut,Dental hygienists,57.3
+2019,Nunavut,Dental hygienists,65.11
+2015,Nunavut,Dentists,189.53
+2016,Nunavut,Dentists,180.09
+2017,Nunavut,Dentists,244.99
+2018,Nunavut,Dentists,260.44
+2019,Nunavut,Dentists,250.03
+2015,Nunavut,Dietitians,
+2016,Nunavut,Dietitians,
+2017,Nunavut,Dietitians,
+2018,Nunavut,Dietitians,33.86
+2019,Nunavut,Dietitians,33.86
+2015,Nunavut,Environmental public health professionals,14.87
+2016,Nunavut,Environmental public health professionals,11.03
+2017,Nunavut,Environmental public health professionals,7.99
+2018,Nunavut,Environmental public health professionals,7.81
+2019,Nunavut,Environmental public health professionals,5.21
+2015,Nunavut,Genetic counsellors,
+2016,Nunavut,Genetic counsellors,
+2017,Nunavut,Genetic counsellors,
+2018,Nunavut,Genetic counsellors,
+2019,Nunavut,Genetic counsellors,0
+2015,Nunavut,Health information management professionals,
+2016,Nunavut,Health information management professionals,18.38
+2017,Nunavut,Health information management professionals,2.66
+2018,Nunavut,Health information management professionals,
+2019,Nunavut,Health information management professionals,5.21
+2015,Nunavut,Medical laboratory technologists,38.37
+2016,Nunavut,Medical laboratory technologists,55.13
+2017,Nunavut,Medical laboratory technologists,26.63
+2018,Nunavut,Medical laboratory technologists,20.84
+2019,Nunavut,Medical laboratory technologists,31.25
+2015,Nunavut,Medical physicists,
+2016,Nunavut,Medical physicists,
+2017,Nunavut,Medical physicists,
+2018,Nunavut,Medical physicists,
+2019,Nunavut,Medical physicists,
+2015,Nunavut,Medical radiation technologists,21.93
+2016,Nunavut,Medical radiation technologists,23.28
+2017,Nunavut,Medical radiation technologists,26.63
+2018,Nunavut,Medical radiation technologists,
+2019,Nunavut,Medical radiation technologists,20.84
+2015,Nunavut,Midwives,32.21
+2016,Nunavut,Midwives,34.3
+2017,Nunavut,Midwives,71.9
+2018,Nunavut,Midwives,104.18
+2019,Nunavut,Midwives,106.78
+2015,Nunavut,Occupational therapists,8.22
+2016,Nunavut,Occupational therapists,10.82
+2017,Nunavut,Occupational therapists,15.98
+2018,Nunavut,Occupational therapists,10.42
+2019,Nunavut,Occupational therapists,15.63
+2015,Nunavut,Opticians,
+2016,Nunavut,Opticians,
+2017,Nunavut,Opticians,
+2018,Nunavut,Opticians,
+2019,Nunavut,Opticians,
+2015,Nunavut,Optometrists,1.24
+2016,Nunavut,Optometrists,2.45
+2017,Nunavut,Optometrists,5.33
+2018,Nunavut,Optometrists,0
+2019,Nunavut,Optometrists,
+2015,Nunavut,Paramedics,
+2016,Nunavut,Paramedics,
+2017,Nunavut,Paramedics,
+2018,Nunavut,Paramedics,
+2019,Nunavut,Paramedics,
+2015,Nunavut,Pharmacists,27.41
+2016,Nunavut,Pharmacists,100.07
+2017,Nunavut,Pharmacists,82.55
+2018,Nunavut,Pharmacists,109.39
+2019,Nunavut,Pharmacists,114.6
+2015,Nunavut,Pharmacy technicians,
+2016,Nunavut,Pharmacy technicians,
+2017,Nunavut,Pharmacy technicians,
+2018,Nunavut,Pharmacy technicians,
+2019,Nunavut,Pharmacy technicians,
+2015,Nunavut,Physician assistants,
+2016,Nunavut,Physician assistants,
+2017,Nunavut,Physician assistants,0
+2018,Nunavut,Physician assistants,2.6
+2019,Nunavut,Physician assistants,2.6
+2015,Nunavut,Physicians,27.41
+2016,Nunavut,Physicians,21.64
+2017,Nunavut,Physicians,21.3
+2018,Nunavut,Physicians,44.28
+2019,Nunavut,Physicians,54.69
+2015,Nunavut,Family medicine,24.67
+2016,Nunavut,Family medicine,18.93
+2017,Nunavut,Family medicine,15.98
+2018,Nunavut,Family medicine,31.25
+2019,Nunavut,Family medicine,44.28
+2015,Nunavut,Specialists,2.74
+2016,Nunavut,Specialists,2.7
+2017,Nunavut,Specialists,5.33
+2018,Nunavut,Specialists,13.02
+2019,Nunavut,Specialists,10.42
+2015,Nunavut,Physiotherapists,
+2016,Nunavut,Physiotherapists,
+2017,Nunavut,Physiotherapists,
+2018,Nunavut,Physiotherapists,
+2019,Nunavut,Physiotherapists,
+2015,Nunavut,Psychologists,105.3
+2016,Nunavut,Psychologists,101.69
+2017,Nunavut,Psychologists,63.91
+2018,Nunavut,Psychologists,59.9
+2019,Nunavut,Psychologists,67.72
+2015,Nunavut,Regulated nurses,
+2016,Nunavut,Regulated nurses,
+2017,Nunavut,Regulated nurses,
+2018,Nunavut,Regulated nurses,
+2019,Nunavut,Regulated nurses,
+2015,Nunavut,Licensed practical nurses,271.32
+2016,Nunavut,Licensed practical nurses,262.34
+2017,Nunavut,Licensed practical nurses,314.23
+2018,Nunavut,Licensed practical nurses,343.79
+2019,Nunavut,Licensed practical nurses,380.25
+2015,Nunavut,Nurse practitioners,55.74
+2016,Nunavut,Nurse practitioners,50.23
+2017,Nunavut,Nurse practitioners,67.89
+2018,Nunavut,Nurse practitioners,60.29
+2019,Nunavut,Nurse practitioners,55.46
+2015,Nunavut,Registered nurses,1295.76
+2016,Nunavut,Registered nurses,1249.63
+2017,Nunavut,Registered nurses,1209.87
+2018,Nunavut,Registered nurses,971.82
+2019,Nunavut,Registered nurses,882.6
+2015,Nunavut,Registered psychiatric nurses,
+2016,Nunavut,Registered psychiatric nurses,
+2017,Nunavut,Registered psychiatric nurses,
+2018,Nunavut,Registered psychiatric nurses,
+2019,Nunavut,Registered psychiatric nurses,
+2015,Nunavut,Respiratory therapists,8.67
+2016,Nunavut,Respiratory therapists,9.8
+2017,Nunavut,Respiratory therapists,7.99
+2018,Nunavut,Respiratory therapists,7.81
+2019,Nunavut,Respiratory therapists,7.81
+2015,Nunavut,Social workers,
+2016,Nunavut,Social workers,
+2017,Nunavut,Social workers,
+2018,Nunavut,Social workers,
+2019,Nunavut,Social workers,
+2015,Nunavut,Speech–language pathologists,14.87
+2016,Nunavut,Speech–language pathologists,14.7
+2017,Nunavut,Speech–language pathologists,2.66
+2018,Nunavut,Speech–language pathologists,13
+2019,Nunavut,Speech–language pathologists,7.81
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-d-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-d-1.csv
new file mode 100644
index 00000000..76f88a90
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_3-d-1.csv
@@ -0,0 +1,4 @@
+Year,Value
+2018,99
+2019,99
+2020,100
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_5-2-1.csv
new file mode 100644
index 00000000..74ca90b4
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_5-2-1.csv
@@ -0,0 +1,13 @@
+Year,Type of intimate partner violence,Selected characteristic,Value
+2018,"Emotional, financial, or psychological abuse","Total, all women",11.9
+2018,Physical abuse,"Total, all women",2.4
+2018,Sexual abuse,"Total, all women",1.2
+2018,Total intimate partner violence,"Total, all women",12.1
+2018,Total intimate partner violence,15 to 24 year old women,29
+2018,Total intimate partner violence,Separated or divorced women,20
+2018,Total intimate partner violence,LGBTQ2 women,20
+2018,Total intimate partner violence,Single women,19
+2018,Total intimate partner violence,"First Nations, Métis, or Inuit women",17
+2018,Total intimate partner violence,Women with disability,16
+2018,Total intimate partner violence,Immigrant women,10
+2018,Total intimate partner violence,Women designated as visible minorities,9
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-2-2.csv b/tests/assets/progress-calculation/data/temp/indicator_5-2-2.csv
new file mode 100644
index 00000000..3554e798
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_5-2-2.csv
@@ -0,0 +1,2 @@
+Year,Value
+2018,2.9
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-3-1.csv b/tests/assets/progress-calculation/data/temp/indicator_5-3-1.csv
new file mode 100644
index 00000000..ce5db067
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_5-3-1.csv
@@ -0,0 +1,415 @@
+Year,Geography,Marital status,Age group,Value
+2016,Canada,Married or living common law,15 to 19 years,1.66
+2016,Canada,Married or living common law,20 to 24 years,18.78
+2016,Canada,Married,15 to 19 years,0.19
+2016,Canada,Married,20 to 24 years,5.03
+2016,Canada,Living common law,15 to 19 years,1.47
+2016,Canada,Living common law,20 to 24 years,13.75
+2011,Canada,Married or living common law,15 to 19 years,2.22
+2011,Canada,Married or living common law,20 to 24 years,21.44
+2011,Canada,Married,15 to 19 years,0.32
+2011,Canada,Married,20 to 24 years,6.66
+2011,Canada,Living common law,15 to 19 years,1.9
+2011,Canada,Living common law,20 to 24 years,14.78
+2006,Canada,Married or living common law,15 to 19 years,2.91
+2006,Canada,Married or living common law,20 to 24 years,23.56
+2006,Canada,Married,15 to 19 years,0.71
+2006,Canada,Married,20 to 24 years,8.24
+2006,Canada,Living common law,15 to 19 years,2.2
+2006,Canada,Living common law,20 to 24 years,15.32
+2001,Canada,Married or living common law,15 to 19 years,2.96
+2001,Canada,Married or living common law,20 to 24 years,25.61
+2001,Canada,Married,15 to 19 years,0.61
+2001,Canada,Married,20 to 24 years,10.19
+2001,Canada,Living common law,15 to 19 years,2.35
+2001,Canada,Living common law,20 to 24 years,15.42
+1996,Canada,Married or living common law,15 to 19 years,3.41
+1996,Canada,Married or living common law,20 to 24 years,27.77
+1996,Canada,Married,15 to 19 years,0.78
+1996,Canada,Married,20 to 24 years,13.18
+1996,Canada,Living common law,15 to 19 years,2.64
+1996,Canada,Living common law,20 to 24 years,14.6
+2016,Newfoundland and Labrador,Married or living common law,15 to 19 years,1.85
+2016,Newfoundland and Labrador,Married or living common law,20 to 24 years,19.77
+2016,Newfoundland and Labrador,Married,15 to 19 years,0.08
+2016,Newfoundland and Labrador,Married,20 to 24 years,2.9
+2016,Newfoundland and Labrador,Living common law,15 to 19 years,1.73
+2016,Newfoundland and Labrador,Living common law,20 to 24 years,16.87
+2011,Newfoundland and Labrador,Married or living common law,15 to 19 years,2.05
+2011,Newfoundland and Labrador,Married or living common law,20 to 24 years,19
+2011,Newfoundland and Labrador,Married,15 to 19 years,0.1
+2011,Newfoundland and Labrador,Married,20 to 24 years,3.61
+2011,Newfoundland and Labrador,Living common law,15 to 19 years,1.94
+2011,Newfoundland and Labrador,Living common law,20 to 24 years,15.39
+2006,Newfoundland and Labrador,Married or living common law,15 to 19 years,1.94
+2006,Newfoundland and Labrador,Married or living common law,20 to 24 years,16.87
+2006,Newfoundland and Labrador,Married,15 to 19 years,0.42
+2006,Newfoundland and Labrador,Married,20 to 24 years,4.63
+2006,Newfoundland and Labrador,Living common law,15 to 19 years,1.49
+2006,Newfoundland and Labrador,Living common law,20 to 24 years,12.24
+2001,Newfoundland and Labrador,Married or living common law,15 to 19 years,1.78
+2001,Newfoundland and Labrador,Married or living common law,20 to 24 years,20.44
+2001,Newfoundland and Labrador,Married,15 to 19 years,0.28
+2001,Newfoundland and Labrador,Married,20 to 24 years,7.35
+2001,Newfoundland and Labrador,Living common law,15 to 19 years,1.5
+2001,Newfoundland and Labrador,Living common law,20 to 24 years,13.12
+1996,Newfoundland and Labrador,Married or living common law,15 to 19 years,2.16
+1996,Newfoundland and Labrador,Married or living common law,20 to 24 years,24.37
+1996,Newfoundland and Labrador,Married,15 to 19 years,0.42
+1996,Newfoundland and Labrador,Married,20 to 24 years,10.93
+1996,Newfoundland and Labrador,Living common law,15 to 19 years,1.76
+1996,Newfoundland and Labrador,Living common law,20 to 24 years,13.44
+2016,Prince Edward Island,Married or living common law,15 to 19 years,1.78
+2016,Prince Edward Island,Married or living common law,20 to 24 years,19.03
+2016,Prince Edward Island,Married,15 to 19 years,0.36
+2016,Prince Edward Island,Married,20 to 24 years,4.02
+2016,Prince Edward Island,Living common law,15 to 19 years,1.43
+2016,Prince Edward Island,Living common law,20 to 24 years,14.89
+2011,Prince Edward Island,Married or living common law,15 to 19 years,2.01
+2011,Prince Edward Island,Married or living common law,20 to 24 years,19.14
+2011,Prince Edward Island,Married,15 to 19 years,0.11
+2011,Prince Edward Island,Married,20 to 24 years,5.41
+2011,Prince Edward Island,Living common law,15 to 19 years,1.91
+2011,Prince Edward Island,Living common law,20 to 24 years,13.74
+2006,Prince Edward Island,Married or living common law,15 to 19 years,2.13
+2006,Prince Edward Island,Married or living common law,20 to 24 years,20.57
+2006,Prince Edward Island,Married,15 to 19 years,0.51
+2006,Prince Edward Island,Married,20 to 24 years,7.16
+2006,Prince Edward Island,Living common law,15 to 19 years,1.62
+2006,Prince Edward Island,Living common law,20 to 24 years,13.41
+2001,Prince Edward Island,Married or living common law,15 to 19 years,2.97
+2001,Prince Edward Island,Married or living common law,20 to 24 years,25.93
+2001,Prince Edward Island,Married,15 to 19 years,0.4
+2001,Prince Edward Island,Married,20 to 24 years,11.1
+2001,Prince Edward Island,Living common law,15 to 19 years,2.57
+2001,Prince Edward Island,Living common law,20 to 24 years,14.84
+1996,Prince Edward Island,Married or living common law,15 to 19 years,2.56
+1996,Prince Edward Island,Married or living common law,20 to 24 years,27.81
+1996,Prince Edward Island,Married,15 to 19 years,0.51
+1996,Prince Edward Island,Married,20 to 24 years,14.07
+1996,Prince Edward Island,Living common law,15 to 19 years,2.15
+1996,Prince Edward Island,Living common law,20 to 24 years,13.74
+2016,Nova Scotia,Married or living common law,15 to 19 years,1.92
+2016,Nova Scotia,Married or living common law,20 to 24 years,19.42
+2016,Nova Scotia,Married,15 to 19 years,0.1
+2016,Nova Scotia,Married,20 to 24 years,3.34
+2016,Nova Scotia,Living common law,15 to 19 years,1.78
+2016,Nova Scotia,Living common law,20 to 24 years,16.08
+2011,Nova Scotia,Married or living common law,15 to 19 years,2.15
+2011,Nova Scotia,Married or living common law,20 to 24 years,20.59
+2011,Nova Scotia,Married,15 to 19 years,0.21
+2011,Nova Scotia,Married,20 to 24 years,4.57
+2011,Nova Scotia,Living common law,15 to 19 years,1.93
+2011,Nova Scotia,Living common law,20 to 24 years,16.04
+2006,Nova Scotia,Married or living common law,15 to 19 years,2.45
+2006,Nova Scotia,Married or living common law,20 to 24 years,21.33
+2006,Nova Scotia,Married,15 to 19 years,0.45
+2006,Nova Scotia,Married,20 to 24 years,5.36
+2006,Nova Scotia,Living common law,15 to 19 years,1.98
+2006,Nova Scotia,Living common law,20 to 24 years,15.98
+2001,Nova Scotia,Married or living common law,15 to 19 years,2.19
+2001,Nova Scotia,Married or living common law,20 to 24 years,23.41
+2001,Nova Scotia,Married,15 to 19 years,0.31
+2001,Nova Scotia,Married,20 to 24 years,8.02
+2001,Nova Scotia,Living common law,15 to 19 years,1.89
+2001,Nova Scotia,Living common law,20 to 24 years,15.39
+1996,Nova Scotia,Married or living common law,15 to 19 years,2.4
+1996,Nova Scotia,Married or living common law,20 to 24 years,25.61
+1996,Nova Scotia,Married,15 to 19 years,0.44
+1996,Nova Scotia,Married,20 to 24 years,11.71
+1996,Nova Scotia,Living common law,15 to 19 years,1.96
+1996,Nova Scotia,Living common law,20 to 24 years,13.9
+2016,New Brunswick,Married or living common law,15 to 19 years,2.59
+2016,New Brunswick,Married or living common law,20 to 24 years,24.85
+2016,New Brunswick,Married,15 to 19 years,0.13
+2016,New Brunswick,Married,20 to 24 years,4.51
+2016,New Brunswick,Living common law,15 to 19 years,2.46
+2016,New Brunswick,Living common law,20 to 24 years,20.36
+2011,New Brunswick,Married or living common law,15 to 19 years,3.03
+2011,New Brunswick,Married or living common law,20 to 24 years,25.97
+2011,New Brunswick,Married,15 to 19 years,0.22
+2011,New Brunswick,Married,20 to 24 years,6.2
+2011,New Brunswick,Living common law,15 to 19 years,2.81
+2011,New Brunswick,Living common law,20 to 24 years,19.79
+2006,New Brunswick,Married or living common law,15 to 19 years,3.12
+2006,New Brunswick,Married or living common law,20 to 24 years,26.55
+2006,New Brunswick,Married,15 to 19 years,0.49
+2006,New Brunswick,Married,20 to 24 years,7.21
+2006,New Brunswick,Living common law,15 to 19 years,2.6
+2006,New Brunswick,Living common law,20 to 24 years,19.33
+2001,New Brunswick,Married or living common law,15 to 19 years,3.39
+2001,New Brunswick,Married or living common law,20 to 24 years,30.28
+2001,New Brunswick,Married,15 to 19 years,0.46
+2001,New Brunswick,Married,20 to 24 years,10.84
+2001,New Brunswick,Living common law,15 to 19 years,2.91
+2001,New Brunswick,Living common law,20 to 24 years,19.43
+1996,New Brunswick,Married or living common law,15 to 19 years,3.66
+1996,New Brunswick,Married or living common law,20 to 24 years,31.38
+1996,New Brunswick,Married,15 to 19 years,0.69
+1996,New Brunswick,Married,20 to 24 years,13.42
+1996,New Brunswick,Living common law,15 to 19 years,2.97
+1996,New Brunswick,Living common law,20 to 24 years,17.96
+2016,Quebec,Married or living common law,15 to 19 years,2.14
+2016,Quebec,Married or living common law,20 to 24 years,22.62
+2016,Quebec,Married,15 to 19 years,0.14
+2016,Quebec,Married,20 to 24 years,3.24
+2016,Quebec,Living common law,15 to 19 years,2
+2016,Quebec,Living common law,20 to 24 years,19.38
+2011,Quebec,Married or living common law,15 to 19 years,2.93
+2011,Quebec,Married or living common law,20 to 24 years,26.39
+2011,Quebec,Married,15 to 19 years,0.28
+2011,Quebec,Married,20 to 24 years,4.1
+2011,Quebec,Living common law,15 to 19 years,2.65
+2011,Quebec,Living common law,20 to 24 years,22.28
+2006,Quebec,Married or living common law,15 to 19 years,3.49
+2006,Quebec,Married or living common law,20 to 24 years,28.45
+2006,Quebec,Married,15 to 19 years,0.6
+2006,Quebec,Married,20 to 24 years,4.62
+2006,Quebec,Living common law,15 to 19 years,2.89
+2006,Quebec,Living common law,20 to 24 years,23.83
+2001,Quebec,Married or living common law,15 to 19 years,3.78
+2001,Quebec,Married or living common law,20 to 24 years,29.53
+2001,Quebec,Married,15 to 19 years,0.47
+2001,Quebec,Married,20 to 24 years,5.51
+2001,Quebec,Living common law,15 to 19 years,3.3
+2001,Quebec,Living common law,20 to 24 years,24.02
+1996,Quebec,Married or living common law,15 to 19 years,3.76
+1996,Quebec,Married or living common law,20 to 24 years,31.55
+1996,Quebec,Married,15 to 19 years,0.52
+1996,Quebec,Married,20 to 24 years,8.43
+1996,Quebec,Living common law,15 to 19 years,3.24
+1996,Quebec,Living common law,20 to 24 years,23.12
+2016,Ontario,Married or living common law,15 to 19 years,1.07
+2016,Ontario,Married or living common law,20 to 24 years,13.76
+2016,Ontario,Married,15 to 19 years,0.18
+2016,Ontario,Married,20 to 24 years,4.66
+2016,Ontario,Living common law,15 to 19 years,0.89
+2016,Ontario,Living common law,20 to 24 years,9.1
+2011,Ontario,Married or living common law,15 to 19 years,1.41
+2011,Ontario,Married or living common law,20 to 24 years,16.14
+2011,Ontario,Married,15 to 19 years,0.29
+2011,Ontario,Married,20 to 24 years,6.52
+2011,Ontario,Living common law,15 to 19 years,1.11
+2011,Ontario,Living common law,20 to 24 years,9.62
+2006,Ontario,Married or living common law,15 to 19 years,2.1
+2006,Ontario,Married or living common law,20 to 24 years,18.79
+2006,Ontario,Married,15 to 19 years,0.76
+2006,Ontario,Married,20 to 24 years,8.72
+2006,Ontario,Living common law,15 to 19 years,1.35
+2006,Ontario,Living common law,20 to 24 years,10.07
+2001,Ontario,Married or living common law,15 to 19 years,2.14
+2001,Ontario,Married or living common law,20 to 24 years,21.47
+2001,Ontario,Married,15 to 19 years,0.68
+2001,Ontario,Married,20 to 24 years,11.18
+2001,Ontario,Living common law,15 to 19 years,1.46
+2001,Ontario,Living common law,20 to 24 years,10.29
+1996,Ontario,Married or living common law,15 to 19 years,2.71
+1996,Ontario,Married or living common law,20 to 24 years,22.83
+1996,Ontario,Married,15 to 19 years,0.87
+1996,Ontario,Married,20 to 24 years,13.64
+1996,Ontario,Living common law,15 to 19 years,1.84
+1996,Ontario,Living common law,20 to 24 years,9.2
+2016,Manitoba,Married or living common law,15 to 19 years,2.06
+2016,Manitoba,Married or living common law,20 to 24 years,21.96
+2016,Manitoba,Married,15 to 19 years,0.29
+2016,Manitoba,Married,20 to 24 years,8.23
+2016,Manitoba,Living common law,15 to 19 years,1.75
+2016,Manitoba,Living common law,20 to 24 years,13.74
+2011,Manitoba,Married or living common law,15 to 19 years,2.75
+2011,Manitoba,Married or living common law,20 to 24 years,24.04
+2011,Manitoba,Married,15 to 19 years,0.57
+2011,Manitoba,Married,20 to 24 years,9.89
+2011,Manitoba,Living common law,15 to 19 years,2.18
+2011,Manitoba,Living common law,20 to 24 years,14.15
+2006,Manitoba,Married or living common law,15 to 19 years,3.37
+2006,Manitoba,Married or living common law,20 to 24 years,25.18
+2006,Manitoba,Married,15 to 19 years,0.86
+2006,Manitoba,Married,20 to 24 years,11.65
+2006,Manitoba,Living common law,15 to 19 years,2.52
+2006,Manitoba,Living common law,20 to 24 years,13.55
+2001,Manitoba,Married or living common law,15 to 19 years,3.74
+2001,Manitoba,Married or living common law,20 to 24 years,28.83
+2001,Manitoba,Married,15 to 19 years,0.89
+2001,Manitoba,Married,20 to 24 years,14.65
+2001,Manitoba,Living common law,15 to 19 years,2.84
+2001,Manitoba,Living common law,20 to 24 years,14.18
+1996,Manitoba,Married or living common law,15 to 19 years,4.26
+1996,Manitoba,Married or living common law,20 to 24 years,30.53
+1996,Manitoba,Married,15 to 19 years,1.12
+1996,Manitoba,Married,20 to 24 years,16.96
+1996,Manitoba,Living common law,15 to 19 years,3.14
+1996,Manitoba,Living common law,20 to 24 years,13.57
+2016,Saskatchewan,Married or living common law,15 to 19 years,2.73
+2016,Saskatchewan,Married or living common law,20 to 24 years,25.7
+2016,Saskatchewan,Married,15 to 19 years,0.21
+2016,Saskatchewan,Married,20 to 24 years,7.56
+2016,Saskatchewan,Living common law,15 to 19 years,2.5
+2016,Saskatchewan,Living common law,20 to 24 years,18.14
+2011,Saskatchewan,Married or living common law,15 to 19 years,3.28
+2011,Saskatchewan,Married or living common law,20 to 24 years,27.4
+2011,Saskatchewan,Married,15 to 19 years,0.33
+2011,Saskatchewan,Married,20 to 24 years,9.44
+2011,Saskatchewan,Living common law,15 to 19 years,2.97
+2011,Saskatchewan,Living common law,20 to 24 years,17.97
+2006,Saskatchewan,Married or living common law,15 to 19 years,3.96
+2006,Saskatchewan,Married or living common law,20 to 24 years,28.17
+2006,Saskatchewan,Married,15 to 19 years,0.52
+2006,Saskatchewan,Married,20 to 24 years,10.75
+2006,Saskatchewan,Living common law,15 to 19 years,3.44
+2006,Saskatchewan,Living common law,20 to 24 years,17.42
+2001,Saskatchewan,Married or living common law,15 to 19 years,3.73
+2001,Saskatchewan,Married or living common law,20 to 24 years,30.51
+2001,Saskatchewan,Married,15 to 19 years,0.56
+2001,Saskatchewan,Married,20 to 24 years,14.36
+2001,Saskatchewan,Living common law,15 to 19 years,3.15
+2001,Saskatchewan,Living common law,20 to 24 years,16.14
+1996,Saskatchewan,Married or living common law,15 to 19 years,4.59
+1996,Saskatchewan,Married or living common law,20 to 24 years,34.07
+1996,Saskatchewan,Married,15 to 19 years,0.7
+1996,Saskatchewan,Married,20 to 24 years,18.05
+1996,Saskatchewan,Living common law,15 to 19 years,3.89
+1996,Saskatchewan,Living common law,20 to 24 years,16.02
+2016,Alberta,Married or living common law,15 to 19 years,2.11
+2016,Alberta,Married or living common law,20 to 24 years,25.09
+2016,Alberta,Married,15 to 19 years,0.33
+2016,Alberta,Married,20 to 24 years,8.72
+2016,Alberta,Living common law,15 to 19 years,1.78
+2016,Alberta,Living common law,20 to 24 years,16.36
+2011,Alberta,Married or living common law,15 to 19 years,3.09
+2011,Alberta,Married or living common law,20 to 24 years,27.99
+2011,Alberta,Married,15 to 19 years,0.49
+2011,Alberta,Married,20 to 24 years,10.6
+2011,Alberta,Living common law,15 to 19 years,2.6
+2011,Alberta,Living common law,20 to 24 years,17.39
+2006,Alberta,Married or living common law,15 to 19 years,4.32
+2006,Alberta,Married or living common law,20 to 24 years,29.89
+2006,Alberta,Married,15 to 19 years,0.93
+2006,Alberta,Married,20 to 24 years,12.28
+2006,Alberta,Living common law,15 to 19 years,3.38
+2006,Alberta,Living common law,20 to 24 years,17.61
+2001,Alberta,Married or living common law,15 to 19 years,3.96
+2001,Alberta,Married or living common law,20 to 24 years,31.14
+2001,Alberta,Married,15 to 19 years,0.75
+2001,Alberta,Married,20 to 24 years,14.92
+2001,Alberta,Living common law,15 to 19 years,3.21
+2001,Alberta,Living common law,20 to 24 years,16.23
+1996,Alberta,Married or living common law,15 to 19 years,4.64
+1996,Alberta,Married or living common law,20 to 24 years,33.7
+1996,Alberta,Married,15 to 19 years,1.1
+1996,Alberta,Married,20 to 24 years,18.26
+1996,Alberta,Living common law,15 to 19 years,3.54
+1996,Alberta,Living common law,20 to 24 years,15.44
+2016,British Columbia,Married or living common law,15 to 19 years,1.57
+2016,British Columbia,Married or living common law,20 to 24 years,17.72
+2016,British Columbia,Married,15 to 19 years,0.18
+2016,British Columbia,Married,20 to 24 years,5.09
+2016,British Columbia,Living common law,15 to 19 years,1.39
+2016,British Columbia,Living common law,20 to 24 years,12.63
+2011,British Columbia,Married or living common law,15 to 19 years,2.08
+2011,British Columbia,Married or living common law,20 to 24 years,19.96
+2011,British Columbia,Married,15 to 19 years,0.31
+2011,British Columbia,Married,20 to 24 years,7.19
+2011,British Columbia,Living common law,15 to 19 years,1.77
+2011,British Columbia,Living common law,20 to 24 years,12.77
+2006,British Columbia,Married or living common law,15 to 19 years,2.79
+2006,British Columbia,Married or living common law,20 to 24 years,22.26
+2006,British Columbia,Married,15 to 19 years,0.71
+2006,British Columbia,Married,20 to 24 years,9.15
+2006,British Columbia,Living common law,15 to 19 years,2.08
+2006,British Columbia,Living common law,20 to 24 years,13.1
+2001,British Columbia,Married or living common law,15 to 19 years,2.76
+2001,British Columbia,Married or living common law,20 to 24 years,22.99
+2001,British Columbia,Married,15 to 19 years,0.65
+2001,British Columbia,Married,20 to 24 years,10.83
+2001,British Columbia,Living common law,15 to 19 years,2.11
+2001,British Columbia,Living common law,20 to 24 years,12.16
+1996,British Columbia,Married or living common law,15 to 19 years,3.39
+1996,British Columbia,Married or living common law,20 to 24 years,27.99
+1996,British Columbia,Married,15 to 19 years,0.87
+1996,British Columbia,Married,20 to 24 years,15.07
+1996,British Columbia,Living common law,15 to 19 years,2.51
+1996,British Columbia,Living common law,20 to 24 years,12.92
+2016,Yukon,Married or living common law,15 to 19 years,2.15
+2016,Yukon,Married or living common law,20 to 24 years,25.27
+2016,Yukon,Married,15 to 19 years,0.54
+2016,Yukon,Married,20 to 24 years,4.84
+2016,Yukon,Living common law,15 to 19 years,1.61
+2016,Yukon,Living common law,20 to 24 years,20.43
+2011,Yukon,Married or living common law,15 to 19 years,3.74
+2011,Yukon,Married or living common law,20 to 24 years,27.23
+2011,Yukon,Married,15 to 19 years,0.47
+2011,Yukon,Married,20 to 24 years,5.16
+2011,Yukon,Living common law,15 to 19 years,3.27
+2011,Yukon,Living common law,20 to 24 years,22.07
+2006,Yukon,Married or living common law,15 to 19 years,5.24
+2006,Yukon,Married or living common law,20 to 24 years,25.41
+2006,Yukon,Married,15 to 19 years,0.48
+2006,Yukon,Married,20 to 24 years,4.86
+2006,Yukon,Living common law,15 to 19 years,4.76
+2006,Yukon,Living common law,20 to 24 years,21.08
+2001,Yukon,Married or living common law,15 to 19 years,4.04
+2001,Yukon,Married or living common law,20 to 24 years,29.7
+2001,Yukon,Married,15 to 19 years,0.45
+2001,Yukon,Married,20 to 24 years,9.09
+2001,Yukon,Living common law,15 to 19 years,3.59
+2001,Yukon,Living common law,20 to 24 years,21.21
+1996,Yukon,Married or living common law,15 to 19 years,6.88
+1996,Yukon,Married or living common law,20 to 24 years,37.68
+1996,Yukon,Married,15 to 19 years,0.53
+1996,Yukon,Married,20 to 24 years,14.98
+1996,Yukon,Living common law,15 to 19 years,6.35
+1996,Yukon,Living common law,20 to 24 years,22.71
+2016,Northwest Territories,Married or living common law,15 to 19 years,2.68
+2016,Northwest Territories,Married or living common law,20 to 24 years,26.92
+2016,Northwest Territories,Married,15 to 19 years,0
+2016,Northwest Territories,Married,20 to 24 years,3.5
+2016,Northwest Territories,Living common law,15 to 19 years,2.68
+2016,Northwest Territories,Living common law,20 to 24 years,23.43
+2011,Northwest Territories,Married or living common law,15 to 19 years,4
+2011,Northwest Territories,Married or living common law,20 to 24 years,30.91
+2011,Northwest Territories,Married,15 to 19 years,0.31
+2011,Northwest Territories,Married,20 to 24 years,5.15
+2011,Northwest Territories,Living common law,15 to 19 years,3.69
+2011,Northwest Territories,Living common law,20 to 24 years,26.06
+2006,Northwest Territories,Married or living common law,15 to 19 years,5.68
+2006,Northwest Territories,Married or living common law,20 to 24 years,33.55
+2006,Northwest Territories,Married,15 to 19 years,0.85
+2006,Northwest Territories,Married,20 to 24 years,4.61
+2006,Northwest Territories,Living common law,15 to 19 years,4.55
+2006,Northwest Territories,Living common law,20 to 24 years,28.95
+2001,Northwest Territories,Married or living common law,15 to 19 years,4.64
+2001,Northwest Territories,Married or living common law,20 to 24 years,34.57
+2001,Northwest Territories,Married,15 to 19 years,0
+2001,Northwest Territories,Married,20 to 24 years,6.69
+2001,Northwest Territories,Living common law,15 to 19 years,4.29
+2001,Northwest Territories,Living common law,20 to 24 years,27.88
+1996,Northwest Territories,Married or living common law,15 to 19 years,11.15
+1996,Northwest Territories,Married or living common law,20 to 24 years,45.45
+1996,Northwest Territories,Married,15 to 19 years,0.58
+1996,Northwest Territories,Married,20 to 24 years,11.31
+1996,Northwest Territories,Living common law,15 to 19 years,10.58
+1996,Northwest Territories,Living common law,20 to 24 years,34.14
+2016,Nunavut,Married or living common law,15 to 19 years,11.04
+2016,Nunavut,Married or living common law,20 to 24 years,41.72
+2016,Nunavut,Married,15 to 19 years,0
+2016,Nunavut,Married,20 to 24 years,3.31
+2016,Nunavut,Living common law,15 to 19 years,11.04
+2016,Nunavut,Living common law,20 to 24 years,38.74
+2011,Nunavut,Married or living common law,15 to 19 years,9.52
+2011,Nunavut,Married or living common law,20 to 24 years,43.42
+2011,Nunavut,Married,15 to 19 years,0.68
+2011,Nunavut,Married,20 to 24 years,5.69
+2011,Nunavut,Living common law,15 to 19 years,9.18
+2011,Nunavut,Living common law,20 to 24 years,38.08
+2006,Nunavut,Married or living common law,15 to 19 years,11.55
+2006,Nunavut,Married or living common law,20 to 24 years,42.8
+2006,Nunavut,Married,15 to 19 years,0.33
+2006,Nunavut,Married,20 to 24 years,5.76
+2006,Nunavut,Living common law,15 to 19 years,10.89
+2006,Nunavut,Living common law,20 to 24 years,37.04
+2001,Nunavut,Married or living common law,15 to 19 years,12.96
+2001,Nunavut,Married or living common law,20 to 24 years,51.9
+2001,Nunavut,Married,15 to 19 years,0.81
+2001,Nunavut,Married,20 to 24 years,8.57
+2001,Nunavut,Living common law,15 to 19 years,12.15
+2001,Nunavut,Living common law,20 to 24 years,42.86
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-4-1.csv b/tests/assets/progress-calculation/data/temp/indicator_5-4-1.csv
new file mode 100644
index 00000000..18e271c3
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_5-4-1.csv
@@ -0,0 +1,481 @@
+Year,Geography,Activity group,Age group,Sex,Value
+2015,Canada,Unpaid work activities,"Total, 15 years and over",Male,10
+2015,Canada,Unpaid work activities,"Total, 15 years and over",Female,15
+2015,Canada,Unpaid work activities,15 to 24 years,Male,4.6
+2015,Canada,Unpaid work activities,15 to 24 years,Female,6.7
+2015,Canada,Unpaid work activities,25 to 54 years,Male,10.4
+2015,Canada,Unpaid work activities,25 to 54 years,Female,16.3
+2015,Canada,Unpaid work activities,25 to 34 years,Male,7.9
+2015,Canada,Unpaid work activities,25 to 34 years,Female,15.8
+2015,Canada,Unpaid work activities,35 to 44 years,Male,11.7
+2015,Canada,Unpaid work activities,35 to 44 years,Female,17.9
+2015,Canada,Unpaid work activities,45 to 54 years,Male,11.3
+2015,Canada,Unpaid work activities,45 to 54 years,Female,15.4
+2015,Canada,Unpaid work activities,55 to 64 years,Male,12.1
+2015,Canada,Unpaid work activities,55 to 64 years,Female,16.3
+2015,Canada,Unpaid work activities,65 years and over,Male,13.3
+2015,Canada,Unpaid work activities,65 years and over,Female,16.7
+2015,Canada,Household chores,"Total, 15 years and over",Male,7.1
+2015,Canada,Household chores,"Total, 15 years and over",Female,10
+2015,Canada,Household chores,15 to 24 years,Male,3.3
+2015,Canada,Household chores,15 to 24 years,Female,4.2
+2015,Canada,Household chores,25 to 54 years,Male,6.7
+2015,Canada,Household chores,25 to 54 years,Female,10
+2015,Canada,Household chores,25 to 34 years,Male,5
+2015,Canada,Household chores,25 to 34 years,Female,8.3
+2015,Canada,Household chores,35 to 44 years,Male,6.7
+2015,Canada,Household chores,35 to 44 years,Female,10
+2015,Canada,Household chores,45 to 54 years,Male,8.8
+2015,Canada,Household chores,45 to 54 years,Female,11.3
+2015,Canada,Household chores,55 to 64 years,Male,9.6
+2015,Canada,Household chores,55 to 64 years,Female,12.1
+2015,Canada,Household chores,65 years and over,Male,10
+2015,Canada,Household chores,65 years and over,Female,13.3
+2015,Canada,Care of household children under 18 years,"Total, 15 years and over",Male,1.3
+2015,Canada,Care of household children under 18 years,"Total, 15 years and over",Female,2.1
+2015,Canada,Care of household children under 18 years,15 to 24 years,Male,NA
+2015,Canada,Care of household children under 18 years,15 to 24 years,Female,0.4
+2015,Canada,Care of household children under 18 years,25 to 54 years,Male,2.1
+2015,Canada,Care of household children under 18 years,25 to 54 years,Female,3.8
+2015,Canada,Care of household children under 18 years,25 to 34 years,Male,1.7
+2015,Canada,Care of household children under 18 years,25 to 34 years,Female,5
+2015,Canada,Care of household children under 18 years,35 to 44 years,Male,3.3
+2015,Canada,Care of household children under 18 years,35 to 44 years,Female,5.4
+2015,Canada,Care of household children under 18 years,45 to 54 years,Male,0.8
+2015,Canada,Care of household children under 18 years,45 to 54 years,Female,1.3
+2015,Canada,Care of household children under 18 years,55 to 64 years,Male,NA
+2015,Canada,Care of household children under 18 years,55 to 64 years,Female,0.4
+2015,Canada,Care of household children under 18 years,65 years and over,Male,0.4
+2015,Canada,Care of household children under 18 years,65 years and over,Female,0.4
+2015,Canada,Care of household adults,"Total, 15 years and over",Male,NA
+2015,Canada,Care of household adults,"Total, 15 years and over",Female,NA
+2015,Canada,Care of household adults,15 to 24 years,Male,NA
+2015,Canada,Care of household adults,15 to 24 years,Female,0
+2015,Canada,Care of household adults,25 to 54 years,Male,NA
+2015,Canada,Care of household adults,25 to 54 years,Female,NA
+2015,Canada,Care of household adults,25 to 34 years,Male,NA
+2015,Canada,Care of household adults,25 to 34 years,Female,NA
+2015,Canada,Care of household adults,35 to 44 years,Male,NA
+2015,Canada,Care of household adults,35 to 44 years,Female,NA
+2015,Canada,Care of household adults,45 to 54 years,Male,NA
+2015,Canada,Care of household adults,45 to 54 years,Female,NA
+2015,Canada,Care of household adults,55 to 64 years,Male,NA
+2015,Canada,Care of household adults,55 to 64 years,Female,0.4
+2015,Canada,Care of household adults,65 years and over,Male,NA
+2015,Canada,Care of household adults,65 years and over,Female,NA
+2015,Canada,Shopping for goods or services,"Total, 15 years and over",Male,1.7
+2015,Canada,Shopping for goods or services,"Total, 15 years and over",Female,2.5
+2015,Canada,Shopping for goods or services,15 to 24 years,Male,0.8
+2015,Canada,Shopping for goods or services,15 to 24 years,Female,1.7
+2015,Canada,Shopping for goods or services,25 to 54 years,Male,1.3
+2015,Canada,Shopping for goods or services,25 to 54 years,Female,2.1
+2015,Canada,Shopping for goods or services,25 to 34 years,Male,1.3
+2015,Canada,Shopping for goods or services,25 to 34 years,Female,2.1
+2015,Canada,Shopping for goods or services,35 to 44 years,Male,1.7
+2015,Canada,Shopping for goods or services,35 to 44 years,Female,2.1
+2015,Canada,Shopping for goods or services,45 to 54 years,Male,1.7
+2015,Canada,Shopping for goods or services,45 to 54 years,Female,2.5
+2015,Canada,Shopping for goods or services,55 to 64 years,Male,2.1
+2015,Canada,Shopping for goods or services,55 to 64 years,Female,2.9
+2015,Canada,Shopping for goods or services,65 years and over,Male,2.5
+2015,Canada,Shopping for goods or services,65 years and over,Female,2.9
+2015,Atlantic,Unpaid work activities,"Total, 15 years and over",Male,11.3
+2015,Atlantic,Unpaid work activities,"Total, 15 years and over",Female,15.4
+2015,Atlantic,Unpaid work activities,15 to 24 years,Male,5.4
+2015,Atlantic,Unpaid work activities,15 to 24 years,Female,6.3
+2015,Atlantic,Unpaid work activities,25 to 54 years,Male,11.3
+2015,Atlantic,Unpaid work activities,25 to 54 years,Female,16.3
+2015,Atlantic,Unpaid work activities,25 to 34 years,Male,8.8
+2015,Atlantic,Unpaid work activities,25 to 34 years,Female,15.8
+2015,Atlantic,Unpaid work activities,35 to 44 years,Male,12.5
+2015,Atlantic,Unpaid work activities,35 to 44 years,Female,17.1
+2015,Atlantic,Unpaid work activities,45 to 54 years,Male,11.7
+2015,Atlantic,Unpaid work activities,45 to 54 years,Female,16.3
+2015,Atlantic,Unpaid work activities,55 to 64 years,Male,13.3
+2015,Atlantic,Unpaid work activities,55 to 64 years,Female,17.5
+2015,Atlantic,Unpaid work activities,65 years and over,Male,13.3
+2015,Atlantic,Unpaid work activities,65 years and over,Female,16.7
+2015,Atlantic,Household chores,"Total, 15 years and over",Male,8.3
+2015,Atlantic,Household chores,"Total, 15 years and over",Female,10.4
+2015,Atlantic,Household chores,15 to 24 years,Male,4.6
+2015,Atlantic,Household chores,15 to 24 years,Female,3.8
+2015,Atlantic,Household chores,25 to 54 years,Male,7.5
+2015,Atlantic,Household chores,25 to 54 years,Female,10
+2015,Atlantic,Household chores,25 to 34 years,Male,5.4
+2015,Atlantic,Household chores,25 to 34 years,Female,7.9
+2015,Atlantic,Household chores,35 to 44 years,Male,7.1
+2015,Atlantic,Household chores,35 to 44 years,Female,10.4
+2015,Atlantic,Household chores,45 to 54 years,Male,9.6
+2015,Atlantic,Household chores,45 to 54 years,Female,11.7
+2015,Atlantic,Household chores,55 to 64 years,Male,10.8
+2015,Atlantic,Household chores,55 to 64 years,Female,12.9
+2015,Atlantic,Household chores,65 years and over,Male,10
+2015,Atlantic,Household chores,65 years and over,Female,13.3
+2015,Atlantic,Care of household children under 18 years,"Total, 15 years and over",Male,0.8
+2015,Atlantic,Care of household children under 18 years,"Total, 15 years and over",Female,1.7
+2015,Atlantic,Care of household children under 18 years,15 to 24 years,Male,NA
+2015,Atlantic,Care of household children under 18 years,15 to 24 years,Female,NA
+2015,Atlantic,Care of household children under 18 years,25 to 54 years,Male,2.1
+2015,Atlantic,Care of household children under 18 years,25 to 54 years,Female,3.3
+2015,Atlantic,Care of household children under 18 years,25 to 34 years,Male,1.7
+2015,Atlantic,Care of household children under 18 years,25 to 34 years,Female,5.8
+2015,Atlantic,Care of household children under 18 years,35 to 44 years,Male,3.3
+2015,Atlantic,Care of household children under 18 years,35 to 44 years,Female,4.2
+2015,Atlantic,Care of household children under 18 years,45 to 54 years,Male,0.8
+2015,Atlantic,Care of household children under 18 years,45 to 54 years,Female,0.8
+2015,Atlantic,Care of household children under 18 years,55 to 64 years,Male,NA
+2015,Atlantic,Care of household children under 18 years,55 to 64 years,Female,0.4
+2015,Atlantic,Care of household children under 18 years,65 years and over,Male,NA
+2015,Atlantic,Care of household children under 18 years,65 years and over,Female,NA
+2015,Atlantic,Care of household adults,"Total, 15 years and over",Male,NA
+2015,Atlantic,Care of household adults,"Total, 15 years and over",Female,NA
+2015,Atlantic,Care of household adults,15 to 24 years,Male,0
+2015,Atlantic,Care of household adults,15 to 24 years,Female,0
+2015,Atlantic,Care of household adults,25 to 54 years,Male,NA
+2015,Atlantic,Care of household adults,25 to 54 years,Female,NA
+2015,Atlantic,Care of household adults,25 to 34 years,Male,NA
+2015,Atlantic,Care of household adults,25 to 34 years,Female,NA
+2015,Atlantic,Care of household adults,35 to 44 years,Male,0
+2015,Atlantic,Care of household adults,35 to 44 years,Female,NA
+2015,Atlantic,Care of household adults,45 to 54 years,Male,NA
+2015,Atlantic,Care of household adults,45 to 54 years,Female,NA
+2015,Atlantic,Care of household adults,55 to 64 years,Male,NA
+2015,Atlantic,Care of household adults,55 to 64 years,Female,NA
+2015,Atlantic,Care of household adults,65 years and over,Male,NA
+2015,Atlantic,Care of household adults,65 years and over,Female,NA
+2015,Atlantic,Shopping for goods or services,"Total, 15 years and over",Male,1.7
+2015,Atlantic,Shopping for goods or services,"Total, 15 years and over",Female,2.5
+2015,Atlantic,Shopping for goods or services,15 to 24 years,Male,NA
+2015,Atlantic,Shopping for goods or services,15 to 24 years,Female,1.3
+2015,Atlantic,Shopping for goods or services,25 to 54 years,Male,1.3
+2015,Atlantic,Shopping for goods or services,25 to 54 years,Female,2.5
+2015,Atlantic,Shopping for goods or services,25 to 34 years,Male,1.3
+2015,Atlantic,Shopping for goods or services,25 to 34 years,Female,2.1
+2015,Atlantic,Shopping for goods or services,35 to 44 years,Male,1.7
+2015,Atlantic,Shopping for goods or services,35 to 44 years,Female,2.1
+2015,Atlantic,Shopping for goods or services,45 to 54 years,Male,0.8
+2015,Atlantic,Shopping for goods or services,45 to 54 years,Female,3.3
+2015,Atlantic,Shopping for goods or services,55 to 64 years,Male,1.7
+2015,Atlantic,Shopping for goods or services,55 to 64 years,Female,2.9
+2015,Atlantic,Shopping for goods or services,65 years and over,Male,2.9
+2015,Atlantic,Shopping for goods or services,65 years and over,Female,2.5
+2015,Quebec,Unpaid work activities,"Total, 15 years and over",Male,10.4
+2015,Quebec,Unpaid work activities,"Total, 15 years and over",Female,14.6
+2015,Quebec,Unpaid work activities,15 to 24 years,Male,4.6
+2015,Quebec,Unpaid work activities,15 to 24 years,Female,5.8
+2015,Quebec,Unpaid work activities,25 to 54 years,Male,10.8
+2015,Quebec,Unpaid work activities,25 to 54 years,Female,15.8
+2015,Quebec,Unpaid work activities,25 to 34 years,Male,8.8
+2015,Quebec,Unpaid work activities,25 to 34 years,Female,15.8
+2015,Quebec,Unpaid work activities,35 to 44 years,Male,12.9
+2015,Quebec,Unpaid work activities,35 to 44 years,Female,17.1
+2015,Quebec,Unpaid work activities,45 to 54 years,Male,10.8
+2015,Quebec,Unpaid work activities,45 to 54 years,Female,14.6
+2015,Quebec,Unpaid work activities,55 to 64 years,Male,11.7
+2015,Quebec,Unpaid work activities,55 to 64 years,Female,15.8
+2015,Quebec,Unpaid work activities,65 years and over,Male,11.7
+2015,Quebec,Unpaid work activities,65 years and over,Female,16.3
+2015,Quebec,Household chores,"Total, 15 years and over",Male,7.5
+2015,Quebec,Household chores,"Total, 15 years and over",Female,9.6
+2015,Quebec,Household chores,15 to 24 years,Male,3.8
+2015,Quebec,Household chores,15 to 24 years,Female,3.3
+2015,Quebec,Household chores,25 to 54 years,Male,7.1
+2015,Quebec,Household chores,25 to 54 years,Female,9.2
+2015,Quebec,Household chores,25 to 34 years,Male,4.6
+2015,Quebec,Household chores,25 to 34 years,Female,7.9
+2015,Quebec,Household chores,35 to 44 years,Male,7.9
+2015,Quebec,Household chores,35 to 44 years,Female,10
+2015,Quebec,Household chores,45 to 54 years,Male,8.8
+2015,Quebec,Household chores,45 to 54 years,Female,10.4
+2015,Quebec,Household chores,55 to 64 years,Male,9.2
+2015,Quebec,Household chores,55 to 64 years,Female,12.1
+2015,Quebec,Household chores,65 years and over,Male,9.2
+2015,Quebec,Household chores,65 years and over,Female,12.9
+2015,Quebec,Care of household children under 18 years,"Total, 15 years and over",Male,1.3
+2015,Quebec,Care of household children under 18 years,"Total, 15 years and over",Female,2.1
+2015,Quebec,Care of household children under 18 years,15 to 24 years,Male,NA
+2015,Quebec,Care of household children under 18 years,15 to 24 years,Female,NA
+2015,Quebec,Care of household children under 18 years,25 to 54 years,Male,2.1
+2015,Quebec,Care of household children under 18 years,25 to 54 years,Female,3.8
+2015,Quebec,Care of household children under 18 years,25 to 34 years,Male,2.5
+2015,Quebec,Care of household children under 18 years,25 to 34 years,Female,5.8
+2015,Quebec,Care of household children under 18 years,35 to 44 years,Male,2.9
+2015,Quebec,Care of household children under 18 years,35 to 44 years,Female,5
+2015,Quebec,Care of household children under 18 years,45 to 54 years,Male,0.8
+2015,Quebec,Care of household children under 18 years,45 to 54 years,Female,0.8
+2015,Quebec,Care of household children under 18 years,55 to 64 years,Male,NA
+2015,Quebec,Care of household children under 18 years,55 to 64 years,Female,NA
+2015,Quebec,Care of household children under 18 years,65 years and over,Male,NA
+2015,Quebec,Care of household children under 18 years,65 years and over,Female,NA
+2015,Quebec,Care of household adults,"Total, 15 years and over",Male,NA
+2015,Quebec,Care of household adults,"Total, 15 years and over",Female,NA
+2015,Quebec,Care of household adults,15 to 24 years,Male,NA
+2015,Quebec,Care of household adults,15 to 24 years,Female,0
+2015,Quebec,Care of household adults,25 to 54 years,Male,NA
+2015,Quebec,Care of household adults,25 to 54 years,Female,NA
+2015,Quebec,Care of household adults,25 to 34 years,Male,NA
+2015,Quebec,Care of household adults,25 to 34 years,Female,NA
+2015,Quebec,Care of household adults,35 to 44 years,Male,NA
+2015,Quebec,Care of household adults,35 to 44 years,Female,NA
+2015,Quebec,Care of household adults,45 to 54 years,Male,NA
+2015,Quebec,Care of household adults,45 to 54 years,Female,NA
+2015,Quebec,Care of household adults,55 to 64 years,Male,NA
+2015,Quebec,Care of household adults,55 to 64 years,Female,NA
+2015,Quebec,Care of household adults,65 years and over,Male,NA
+2015,Quebec,Care of household adults,65 years and over,Female,NA
+2015,Quebec,Shopping for goods or services,"Total, 15 years and over",Male,1.7
+2015,Quebec,Shopping for goods or services,"Total, 15 years and over",Female,2.5
+2015,Quebec,Shopping for goods or services,15 to 24 years,Male,0.8
+2015,Quebec,Shopping for goods or services,15 to 24 years,Female,1.7
+2015,Quebec,Shopping for goods or services,25 to 54 years,Male,1.3
+2015,Quebec,Shopping for goods or services,25 to 54 years,Female,2.1
+2015,Quebec,Shopping for goods or services,25 to 34 years,Male,1.3
+2015,Quebec,Shopping for goods or services,25 to 34 years,Female,2.1
+2015,Quebec,Shopping for goods or services,35 to 44 years,Male,1.3
+2015,Quebec,Shopping for goods or services,35 to 44 years,Female,2.1
+2015,Quebec,Shopping for goods or services,45 to 54 years,Male,1.3
+2015,Quebec,Shopping for goods or services,45 to 54 years,Female,2.9
+2015,Quebec,Shopping for goods or services,55 to 64 years,Male,2.1
+2015,Quebec,Shopping for goods or services,55 to 64 years,Female,2.5
+2015,Quebec,Shopping for goods or services,65 years and over,Male,2.1
+2015,Quebec,Shopping for goods or services,65 years and over,Female,2.5
+2015,Ontario,Unpaid work activities,"Total, 15 years and over",Male,10
+2015,Ontario,Unpaid work activities,"Total, 15 years and over",Female,15
+2015,Ontario,Unpaid work activities,15 to 24 years,Male,4.6
+2015,Ontario,Unpaid work activities,15 to 24 years,Female,6.3
+2015,Ontario,Unpaid work activities,25 to 54 years,Male,10
+2015,Ontario,Unpaid work activities,25 to 54 years,Female,16.3
+2015,Ontario,Unpaid work activities,25 to 34 years,Male,7.1
+2015,Ontario,Unpaid work activities,25 to 34 years,Female,15.8
+2015,Ontario,Unpaid work activities,35 to 44 years,Male,11.7
+2015,Ontario,Unpaid work activities,35 to 44 years,Female,18.3
+2015,Ontario,Unpaid work activities,45 to 54 years,Male,10.4
+2015,Ontario,Unpaid work activities,45 to 54 years,Female,15
+2015,Ontario,Unpaid work activities,55 to 64 years,Male,11.7
+2015,Ontario,Unpaid work activities,55 to 64 years,Female,17.5
+2015,Ontario,Unpaid work activities,65 years and over,Male,13.3
+2015,Ontario,Unpaid work activities,65 years and over,Female,17.5
+2015,Ontario,Household chores,"Total, 15 years and over",Male,7.1
+2015,Ontario,Household chores,"Total, 15 years and over",Female,10
+2015,Ontario,Household chores,15 to 24 years,Male,2.9
+2015,Ontario,Household chores,15 to 24 years,Female,3.8
+2015,Ontario,Household chores,25 to 54 years,Male,6.3
+2015,Ontario,Household chores,25 to 54 years,Female,9.6
+2015,Ontario,Household chores,25 to 34 years,Male,4.2
+2015,Ontario,Household chores,25 to 34 years,Female,7.9
+2015,Ontario,Household chores,35 to 44 years,Male,6.7
+2015,Ontario,Household chores,35 to 44 years,Female,10.4
+2015,Ontario,Household chores,45 to 54 years,Male,7.5
+2015,Ontario,Household chores,45 to 54 years,Female,10.8
+2015,Ontario,Household chores,55 to 64 years,Male,9.6
+2015,Ontario,Household chores,55 to 64 years,Female,12.9
+2015,Ontario,Household chores,65 years and over,Male,10.4
+2015,Ontario,Household chores,65 years and over,Female,13.8
+2015,Ontario,Care of household children under 18 years,"Total, 15 years and over",Male,1.3
+2015,Ontario,Care of household children under 18 years,"Total, 15 years and over",Female,2.1
+2015,Ontario,Care of household children under 18 years,15 to 24 years,Male,NA
+2015,Ontario,Care of household children under 18 years,15 to 24 years,Female,NA
+2015,Ontario,Care of household children under 18 years,25 to 54 years,Male,2.1
+2015,Ontario,Care of household children under 18 years,25 to 54 years,Female,3.8
+2015,Ontario,Care of household children under 18 years,25 to 34 years,Male,1.7
+2015,Ontario,Care of household children under 18 years,25 to 34 years,Female,5
+2015,Ontario,Care of household children under 18 years,35 to 44 years,Male,3.3
+2015,Ontario,Care of household children under 18 years,35 to 44 years,Female,5.8
+2015,Ontario,Care of household children under 18 years,45 to 54 years,Male,1.3
+2015,Ontario,Care of household children under 18 years,45 to 54 years,Female,1.3
+2015,Ontario,Care of household children under 18 years,55 to 64 years,Male,NA
+2015,Ontario,Care of household children under 18 years,55 to 64 years,Female,0.4
+2015,Ontario,Care of household children under 18 years,65 years and over,Male,NA
+2015,Ontario,Care of household children under 18 years,65 years and over,Female,NA
+2015,Ontario,Care of household adults,"Total, 15 years and over",Male,NA
+2015,Ontario,Care of household adults,"Total, 15 years and over",Female,NA
+2015,Ontario,Care of household adults,15 to 24 years,Male,NA
+2015,Ontario,Care of household adults,15 to 24 years,Female,0
+2015,Ontario,Care of household adults,25 to 54 years,Male,NA
+2015,Ontario,Care of household adults,25 to 54 years,Female,NA
+2015,Ontario,Care of household adults,25 to 34 years,Male,NA
+2015,Ontario,Care of household adults,25 to 34 years,Female,NA
+2015,Ontario,Care of household adults,35 to 44 years,Male,NA
+2015,Ontario,Care of household adults,35 to 44 years,Female,NA
+2015,Ontario,Care of household adults,45 to 54 years,Male,NA
+2015,Ontario,Care of household adults,45 to 54 years,Female,NA
+2015,Ontario,Care of household adults,55 to 64 years,Male,NA
+2015,Ontario,Care of household adults,55 to 64 years,Female,NA
+2015,Ontario,Care of household adults,65 years and over,Male,NA
+2015,Ontario,Care of household adults,65 years and over,Female,NA
+2015,Ontario,Shopping for goods or services,"Total, 15 years and over",Male,1.7
+2015,Ontario,Shopping for goods or services,"Total, 15 years and over",Female,2.5
+2015,Ontario,Shopping for goods or services,15 to 24 years,Male,0.8
+2015,Ontario,Shopping for goods or services,15 to 24 years,Female,1.7
+2015,Ontario,Shopping for goods or services,25 to 54 years,Male,1.3
+2015,Ontario,Shopping for goods or services,25 to 54 years,Female,2.1
+2015,Ontario,Shopping for goods or services,25 to 34 years,Male,1.3
+2015,Ontario,Shopping for goods or services,25 to 34 years,Female,2.5
+2015,Ontario,Shopping for goods or services,35 to 44 years,Male,1.7
+2015,Ontario,Shopping for goods or services,35 to 44 years,Female,2.1
+2015,Ontario,Shopping for goods or services,45 to 54 years,Male,1.7
+2015,Ontario,Shopping for goods or services,45 to 54 years,Female,2.5
+2015,Ontario,Shopping for goods or services,55 to 64 years,Male,1.7
+2015,Ontario,Shopping for goods or services,55 to 64 years,Female,2.9
+2015,Ontario,Shopping for goods or services,65 years and over,Male,2.5
+2015,Ontario,Shopping for goods or services,65 years and over,Female,2.9
+2015,Prairies,Unpaid work activities,"Total, 15 years and over",Male,10.4
+2015,Prairies,Unpaid work activities,"Total, 15 years and over",Female,15.8
+2015,Prairies,Unpaid work activities,15 to 24 years,Male,5
+2015,Prairies,Unpaid work activities,15 to 24 years,Female,8.3
+2015,Prairies,Unpaid work activities,25 to 54 years,Male,10.4
+2015,Prairies,Unpaid work activities,25 to 54 years,Female,17.9
+2015,Prairies,Unpaid work activities,25 to 34 years,Male,7.9
+2015,Prairies,Unpaid work activities,25 to 34 years,Female,17.5
+2015,Prairies,Unpaid work activities,35 to 44 years,Male,11.3
+2015,Prairies,Unpaid work activities,35 to 44 years,Female,20
+2015,Prairies,Unpaid work activities,45 to 54 years,Male,12.1
+2015,Prairies,Unpaid work activities,45 to 54 years,Female,16.3
+2015,Prairies,Unpaid work activities,55 to 64 years,Male,11.7
+2015,Prairies,Unpaid work activities,55 to 64 years,Female,15.4
+2015,Prairies,Unpaid work activities,65 years and over,Male,15
+2015,Prairies,Unpaid work activities,65 years and over,Female,17.1
+2015,Prairies,Household chores,"Total, 15 years and over",Male,7.5
+2015,Prairies,Household chores,"Total, 15 years and over",Female,10.4
+2015,Prairies,Household chores,15 to 24 years,Male,3.3
+2015,Prairies,Household chores,15 to 24 years,Female,6.3
+2015,Prairies,Household chores,25 to 54 years,Male,7.1
+2015,Prairies,Household chores,25 to 54 years,Female,10.4
+2015,Prairies,Household chores,25 to 34 years,Male,5.4
+2015,Prairies,Household chores,25 to 34 years,Female,9.2
+2015,Prairies,Household chores,35 to 44 years,Male,6.3
+2015,Prairies,Household chores,35 to 44 years,Female,10.8
+2015,Prairies,Household chores,45 to 54 years,Male,9.6
+2015,Prairies,Household chores,45 to 54 years,Female,11.7
+2015,Prairies,Household chores,55 to 64 years,Male,9.2
+2015,Prairies,Household chores,55 to 64 years,Female,11.3
+2015,Prairies,Household chores,65 years and over,Male,11.7
+2015,Prairies,Household chores,65 years and over,Female,13.3
+2015,Prairies,Care of household children under 18 years,"Total, 15 years and over",Male,0.8
+2015,Prairies,Care of household children under 18 years,"Total, 15 years and over",Female,2.9
+2015,Prairies,Care of household children under 18 years,15 to 24 years,Male,NA
+2015,Prairies,Care of household children under 18 years,15 to 24 years,Female,0.8
+2015,Prairies,Care of household children under 18 years,25 to 54 years,Male,1.7
+2015,Prairies,Care of household children under 18 years,25 to 54 years,Female,5
+2015,Prairies,Care of household children under 18 years,25 to 34 years,Male,1.3
+2015,Prairies,Care of household children under 18 years,25 to 34 years,Female,5.8
+2015,Prairies,Care of household children under 18 years,35 to 44 years,Male,2.9
+2015,Prairies,Care of household children under 18 years,35 to 44 years,Female,7.1
+2015,Prairies,Care of household children under 18 years,45 to 54 years,Male,0.8
+2015,Prairies,Care of household children under 18 years,45 to 54 years,Female,1.3
+2015,Prairies,Care of household children under 18 years,55 to 64 years,Male,NA
+2015,Prairies,Care of household children under 18 years,55 to 64 years,Female,NA
+2015,Prairies,Care of household children under 18 years,65 years and over,Male,NA
+2015,Prairies,Care of household children under 18 years,65 years and over,Female,NA
+2015,Prairies,Care of household adults,"Total, 15 years and over",Male,NA
+2015,Prairies,Care of household adults,"Total, 15 years and over",Female,NA
+2015,Prairies,Care of household adults,15 to 24 years,Male,NA
+2015,Prairies,Care of household adults,15 to 24 years,Female,0
+2015,Prairies,Care of household adults,25 to 54 years,Male,NA
+2015,Prairies,Care of household adults,25 to 54 years,Female,NA
+2015,Prairies,Care of household adults,25 to 34 years,Male,NA
+2015,Prairies,Care of household adults,25 to 34 years,Female,NA
+2015,Prairies,Care of household adults,35 to 44 years,Male,NA
+2015,Prairies,Care of household adults,35 to 44 years,Female,NA
+2015,Prairies,Care of household adults,45 to 54 years,Male,NA
+2015,Prairies,Care of household adults,45 to 54 years,Female,NA
+2015,Prairies,Care of household adults,55 to 64 years,Male,NA
+2015,Prairies,Care of household adults,55 to 64 years,Female,NA
+2015,Prairies,Care of household adults,65 years and over,Male,NA
+2015,Prairies,Care of household adults,65 years and over,Female,NA
+2015,Prairies,Shopping for goods or services,"Total, 15 years and over",Male,1.7
+2015,Prairies,Shopping for goods or services,"Total, 15 years and over",Female,2.1
+2015,Prairies,Shopping for goods or services,15 to 24 years,Male,1.7
+2015,Prairies,Shopping for goods or services,15 to 24 years,Female,0.8
+2015,Prairies,Shopping for goods or services,25 to 54 years,Male,1.3
+2015,Prairies,Shopping for goods or services,25 to 54 years,Female,2.1
+2015,Prairies,Shopping for goods or services,25 to 34 years,Male,0.8
+2015,Prairies,Shopping for goods or services,25 to 34 years,Female,2.1
+2015,Prairies,Shopping for goods or services,35 to 44 years,Male,2.1
+2015,Prairies,Shopping for goods or services,35 to 44 years,Female,2.1
+2015,Prairies,Shopping for goods or services,45 to 54 years,Male,1.3
+2015,Prairies,Shopping for goods or services,45 to 54 years,Female,2.5
+2015,Prairies,Shopping for goods or services,55 to 64 years,Male,2.1
+2015,Prairies,Shopping for goods or services,55 to 64 years,Female,2.5
+2015,Prairies,Shopping for goods or services,65 years and over,Male,2.9
+2015,Prairies,Shopping for goods or services,65 years and over,Female,2.9
+2015,British Columbia,Unpaid work activities,"Total, 15 years and over",Male,10.4
+2015,British Columbia,Unpaid work activities,"Total, 15 years and over",Female,14.2
+2015,British Columbia,Unpaid work activities,15 to 24 years,Male,3.3
+2015,British Columbia,Unpaid work activities,15 to 24 years,Female,7.9
+2015,British Columbia,Unpaid work activities,25 to 54 years,Male,10.8
+2015,British Columbia,Unpaid work activities,25 to 54 years,Female,15.4
+2015,British Columbia,Unpaid work activities,25 to 34 years,Male,8.3
+2015,British Columbia,Unpaid work activities,25 to 34 years,Female,14.2
+2015,British Columbia,Unpaid work activities,35 to 44 years,Male,10.8
+2015,British Columbia,Unpaid work activities,35 to 44 years,Female,16.3
+2015,British Columbia,Unpaid work activities,45 to 54 years,Male,13.3
+2015,British Columbia,Unpaid work activities,45 to 54 years,Female,16.3
+2015,British Columbia,Unpaid work activities,55 to 64 years,Male,12.5
+2015,British Columbia,Unpaid work activities,55 to 64 years,Female,14.6
+2015,British Columbia,Unpaid work activities,65 years and over,Male,13.3
+2015,British Columbia,Unpaid work activities,65 years and over,Female,15.8
+2015,British Columbia,Household chores,"Total, 15 years and over",Male,7.5
+2015,British Columbia,Household chores,"Total, 15 years and over",Female,9.6
+2015,British Columbia,Household chores,15 to 24 years,Male,2.1
+2015,British Columbia,Household chores,15 to 24 years,Female,3.8
+2015,British Columbia,Household chores,25 to 54 years,Male,7.1
+2015,British Columbia,Household chores,25 to 54 years,Female,9.6
+2015,British Columbia,Household chores,25 to 34 years,Male,5
+2015,British Columbia,Household chores,25 to 34 years,Female,8.3
+2015,British Columbia,Household chores,35 to 44 years,Male,5.8
+2015,British Columbia,Household chores,35 to 44 years,Female,8.8
+2015,British Columbia,Household chores,45 to 54 years,Male,10.4
+2015,British Columbia,Household chores,45 to 54 years,Female,12.1
+2015,British Columbia,Household chores,55 to 64 years,Male,9.6
+2015,British Columbia,Household chores,55 to 64 years,Female,10.8
+2015,British Columbia,Household chores,65 years and over,Male,10
+2015,British Columbia,Household chores,65 years and over,Female,12.5
+2015,British Columbia,Care of household children under 18 years,"Total, 15 years and over",Male,1.3
+2015,British Columbia,Care of household children under 18 years,"Total, 15 years and over",Female,1.7
+2015,British Columbia,Care of household children under 18 years,15 to 24 years,Male,0
+2015,British Columbia,Care of household children under 18 years,15 to 24 years,Female,NA
+2015,British Columbia,Care of household children under 18 years,25 to 54 years,Male,2.1
+2015,British Columbia,Care of household children under 18 years,25 to 54 years,Female,2.9
+2015,British Columbia,Care of household children under 18 years,25 to 34 years,Male,1.7
+2015,British Columbia,Care of household children under 18 years,25 to 34 years,Female,3.3
+2015,British Columbia,Care of household children under 18 years,35 to 44 years,Male,3.8
+2015,British Columbia,Care of household children under 18 years,35 to 44 years,Female,5
+2015,British Columbia,Care of household children under 18 years,45 to 54 years,Male,0.8
+2015,British Columbia,Care of household children under 18 years,45 to 54 years,Female,1.3
+2015,British Columbia,Care of household children under 18 years,55 to 64 years,Male,NA
+2015,British Columbia,Care of household children under 18 years,55 to 64 years,Female,NA
+2015,British Columbia,Care of household children under 18 years,65 years and over,Male,NA
+2015,British Columbia,Care of household children under 18 years,65 years and over,Female,NA
+2015,British Columbia,Care of household adults,"Total, 15 years and over",Male,NA
+2015,British Columbia,Care of household adults,"Total, 15 years and over",Female,NA
+2015,British Columbia,Care of household adults,15 to 24 years,Male,NA
+2015,British Columbia,Care of household adults,15 to 24 years,Female,0
+2015,British Columbia,Care of household adults,25 to 54 years,Male,NA
+2015,British Columbia,Care of household adults,25 to 54 years,Female,NA
+2015,British Columbia,Care of household adults,25 to 34 years,Male,0
+2015,British Columbia,Care of household adults,25 to 34 years,Female,NA
+2015,British Columbia,Care of household adults,35 to 44 years,Male,NA
+2015,British Columbia,Care of household adults,35 to 44 years,Female,NA
+2015,British Columbia,Care of household adults,45 to 54 years,Male,NA
+2015,British Columbia,Care of household adults,45 to 54 years,Female,NA
+2015,British Columbia,Care of household adults,55 to 64 years,Male,NA
+2015,British Columbia,Care of household adults,55 to 64 years,Female,NA
+2015,British Columbia,Care of household adults,65 years and over,Male,NA
+2015,British Columbia,Care of household adults,65 years and over,Female,NA
+2015,British Columbia,Shopping for goods or services,"Total, 15 years and over",Male,1.7
+2015,British Columbia,Shopping for goods or services,"Total, 15 years and over",Female,2.5
+2015,British Columbia,Shopping for goods or services,15 to 24 years,Male,NA
+2015,British Columbia,Shopping for goods or services,15 to 24 years,Female,3.8
+2015,British Columbia,Shopping for goods or services,25 to 54 years,Male,1.3
+2015,British Columbia,Shopping for goods or services,25 to 54 years,Female,2.1
+2015,British Columbia,Shopping for goods or services,25 to 34 years,Male,1.3
+2015,British Columbia,Shopping for goods or services,25 to 34 years,Female,1.7
+2015,British Columbia,Shopping for goods or services,35 to 44 years,Male,0.8
+2015,British Columbia,Shopping for goods or services,35 to 44 years,Female,2.1
+2015,British Columbia,Shopping for goods or services,45 to 54 years,Male,2.1
+2015,British Columbia,Shopping for goods or services,45 to 54 years,Female,2.5
+2015,British Columbia,Shopping for goods or services,55 to 64 years,Male,2.5
+2015,British Columbia,Shopping for goods or services,55 to 64 years,Female,2.5
+2015,British Columbia,Shopping for goods or services,65 years and over,Male,2.5
+2015,British Columbia,Shopping for goods or services,65 years and over,Female,2.5
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-5-1.csv b/tests/assets/progress-calculation/data/temp/indicator_5-5-1.csv
new file mode 100644
index 00000000..1b313865
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_5-5-1.csv
@@ -0,0 +1,207 @@
+Year,Geography,Government,Elected officials,Value
+2015,Canada,National,Members of Parliament,25.3
+2016,Canada,National,Members of Parliament,26.1
+2017,Canada,National,Members of Parliament,27.2
+2018,Canada,National,Members of Parliament,27
+2019,Canada,National,Members of Parliament,27.2
+2020,Canada,National,Members of Parliament,29
+2021,Canada,National,Members of Parliament,29.4
+2015,Canada,National,Members of Cabinet,30.8
+2016,Canada,National,Members of Cabinet,50
+2017,Canada,National,Members of Cabinet,50
+2018,Canada,National,Members of Cabinet,50
+2019,Canada,National,Members of Cabinet,48.6
+2020,Canada,National,Members of Cabinet,48.6
+2021,Canada,National,Members of Cabinet,48.6
+2015,Newfoundland and Labrador,National,Members of Parliament,28.6
+2016,Newfoundland and Labrador,National,Members of Parliament,42.9
+2017,Newfoundland and Labrador,National,Members of Parliament,42.9
+2018,Newfoundland and Labrador,National,Members of Parliament,28.6
+2019,Newfoundland and Labrador,National,Members of Parliament,28.6
+2020,Newfoundland and Labrador,National,Members of Parliament,28.6
+2021,Newfoundland and Labrador,National,Members of Parliament,28.6
+2015,Newfoundland and Labrador,National,Members of Cabinet,0
+2016,Newfoundland and Labrador,National,Members of Cabinet,100
+2017,Newfoundland and Labrador,National,Members of Cabinet,100
+2018,Newfoundland and Labrador,National,Members of Cabinet,0
+2019,Newfoundland and Labrador,National,Members of Cabinet,0
+2020,Newfoundland and Labrador,National,Members of Cabinet,0
+2021,Newfoundland and Labrador,National,Members of Cabinet,0
+2015,Prince Edward Island,National,Members of Parliament,25
+2016,Prince Edward Island,National,Members of Parliament,0
+2017,Prince Edward Island,National,Members of Parliament,0
+2018,Prince Edward Island,National,Members of Parliament,0
+2019,Prince Edward Island,National,Members of Parliament,0
+2020,Prince Edward Island,National,Members of Parliament,0
+2021,Prince Edward Island,National,Members of Parliament,0
+2015,Prince Edward Island,National,Members of Cabinet,100
+2016,Prince Edward Island,National,Members of Cabinet,0
+2017,Prince Edward Island,National,Members of Cabinet,0
+2018,Prince Edward Island,National,Members of Cabinet,0
+2019,Prince Edward Island,National,Members of Cabinet,0
+2020,Prince Edward Island,National,Members of Cabinet,0
+2021,Prince Edward Island,National,Members of Cabinet,0
+2015,Nova Scotia,National,Members of Parliament,9.1
+2016,Nova Scotia,National,Members of Parliament,9.1
+2017,Nova Scotia,National,Members of Parliament,9.1
+2018,Nova Scotia,National,Members of Parliament,9.1
+2019,Nova Scotia,National,Members of Parliament,10
+2020,Nova Scotia,National,Members of Parliament,18.2
+2021,Nova Scotia,National,Members of Parliament,18.2
+2015,Nova Scotia,National,Members of Cabinet,0
+2016,Nova Scotia,National,Members of Cabinet,0
+2017,Nova Scotia,National,Members of Cabinet,0
+2018,Nova Scotia,National,Members of Cabinet,0
+2019,Nova Scotia,National,Members of Cabinet,100
+2020,Nova Scotia,National,Members of Cabinet,100
+2021,Nova Scotia,National,Members of Cabinet,100
+2015,New Brunswick,National,Members of Parliament,10
+2016,New Brunswick,National,Members of Parliament,30
+2017,New Brunswick,National,Members of Parliament,30
+2018,New Brunswick,National,Members of Parliament,30
+2019,New Brunswick,National,Members of Parliament,30
+2020,New Brunswick,National,Members of Parliament,20
+2021,New Brunswick,National,Members of Parliament,20
+2015,New Brunswick,National,Members of Cabinet,0
+2016,New Brunswick,National,Members of Cabinet,0
+2017,New Brunswick,National,Members of Cabinet,0
+2018,New Brunswick,National,Members of Cabinet,50
+2019,New Brunswick,National,Members of Cabinet,50
+2020,New Brunswick,National,Members of Cabinet,0
+2021,New Brunswick,National,Members of Cabinet,0
+2015,Quebec,National,Members of Parliament,37.3
+2016,Quebec,National,Members of Parliament,24.4
+2017,Quebec,National,Members of Parliament,25.6
+2018,Quebec,National,Members of Parliament,25.6
+2019,Quebec,National,Members of Parliament,27.3
+2020,Quebec,National,Members of Parliament,33.3
+2021,Quebec,National,Members of Parliament,33.3
+2015,Quebec,National,Members of Cabinet,0
+2016,Quebec,National,Members of Cabinet,42.9
+2017,Quebec,National,Members of Cabinet,42.9
+2018,Quebec,National,Members of Cabinet,42.9
+2019,Quebec,National,Members of Cabinet,33.3
+2020,Quebec,National,Members of Cabinet,27.3
+2021,Quebec,National,Members of Cabinet,27.3
+2015,Ontario,National,Members of Parliament,19.6
+2016,Ontario,National,Members of Parliament,31.4
+2017,Ontario,National,Members of Parliament,33.1
+2018,Ontario,National,Members of Parliament,34.2
+2019,Ontario,National,Members of Parliament,33.9
+2020,Ontario,National,Members of Parliament,31.4
+2021,Ontario,National,Members of Parliament,32.5
+2015,Ontario,National,Members of Cabinet,20
+2016,Ontario,National,Members of Cabinet,72.7
+2017,Ontario,National,Members of Cabinet,75
+2018,Ontario,National,Members of Cabinet,75
+2019,Ontario,National,Members of Cabinet,71.4
+2020,Ontario,National,Members of Cabinet,70.6
+2021,Ontario,National,Members of Cabinet,75
+2015,Manitoba,National,Members of Parliament,35.7
+2016,Manitoba,National,Members of Parliament,21.4
+2017,Manitoba,National,Members of Parliament,21.4
+2018,Manitoba,National,Members of Parliament,21.4
+2019,Manitoba,National,Members of Parliament,21.4
+2020,Manitoba,National,Members of Parliament,28.6
+2021,Manitoba,National,Members of Parliament,28.6
+2015,Manitoba,National,Members of Cabinet,100
+2016,Manitoba,National,Members of Cabinet,50
+2017,Manitoba,National,Members of Cabinet,0
+2018,Manitoba,National,Members of Cabinet,0
+2019,Manitoba,National,Members of Cabinet,0
+2020,Manitoba,National,Members of Cabinet,0
+2021,Manitoba,National,Members of Cabinet,0
+2015,Saskatchewan,National,Members of Parliament,14.3
+2016,Saskatchewan,National,Members of Parliament,28.6
+2017,Saskatchewan,National,Members of Parliament,28.6
+2018,Saskatchewan,National,Members of Parliament,35.7
+2019,Saskatchewan,National,Members of Parliament,35.7
+2020,Saskatchewan,National,Members of Parliament,21.4
+2021,Saskatchewan,National,Members of Parliament,21.4
+2015,Saskatchewan,National,Members of Cabinet,50
+2016,Saskatchewan,National,Members of Cabinet,0
+2017,Saskatchewan,National,Members of Cabinet,0
+2018,Saskatchewan,National,Members of Cabinet,0
+2019,Saskatchewan,National,Members of Cabinet,0
+2020,Saskatchewan,National,Members of Cabinet,0
+2021,Saskatchewan,National,Members of Cabinet,0
+2015,Alberta,National,Members of Parliament,17.9
+2016,Alberta,National,Members of Parliament,15.2
+2017,Alberta,National,Members of Parliament,17.6
+2018,Alberta,National,Members of Parliament,14.7
+2019,Alberta,National,Members of Parliament,14.7
+2020,Alberta,National,Members of Parliament,17.6
+2021,Alberta,National,Members of Parliament,17.6
+2015,Alberta,National,Members of Cabinet,33.3
+2016,Alberta,National,Members of Cabinet,0
+2017,Alberta,National,Members of Cabinet,0
+2018,Alberta,National,Members of Cabinet,0
+2019,Alberta,National,Members of Cabinet,0
+2020,Alberta,National,Members of Cabinet,0
+2021,Alberta,National,Members of Cabinet,0
+2015,British Columbia,National,Members of Parliament,30.6
+2016,British Columbia,National,Members of Parliament,28.6
+2017,British Columbia,National,Members of Parliament,28.6
+2018,British Columbia,National,Members of Parliament,26.2
+2019,British Columbia,National,Members of Parliament,24.4
+2020,British Columbia,National,Members of Parliament,33.3
+2021,British Columbia,National,Members of Parliament,33.3
+2015,British Columbia,National,Members of Cabinet,40
+2016,British Columbia,National,Members of Cabinet,66.7
+2017,British Columbia,National,Members of Cabinet,66.7
+2018,British Columbia,National,Members of Cabinet,66.7
+2019,British Columbia,National,Members of Cabinet,50
+2020,British Columbia,National,Members of Cabinet,50
+2021,British Columbia,National,Members of Cabinet,50
+2015,Yukon,National,Members of Parliament,0
+2016,Yukon,National,Members of Parliament,0
+2017,Yukon,National,Members of Parliament,0
+2018,Yukon,National,Members of Parliament,0
+2019,Yukon,National,Members of Parliament,0
+2020,Yukon,National,Members of Parliament,0
+2021,Yukon,National,Members of Parliament,0
+2015,Yukon,National,Members of Cabinet,0
+2016,Yukon,National,Members of Cabinet,0
+2017,Yukon,National,Members of Cabinet,0
+2018,Yukon,National,Members of Cabinet,0
+2019,Yukon,National,Members of Cabinet,0
+2020,Yukon,National,Members of Cabinet,0
+2021,Yukon,National,Members of Cabinet,0
+2015,Northwest Territories,National,Members of Parliament,0
+2016,Northwest Territories,National,Members of Parliament,0
+2017,Northwest Territories,National,Members of Parliament,0
+2018,Northwest Territories,National,Members of Parliament,0
+2019,Northwest Territories,National,Members of Parliament,0
+2020,Northwest Territories,National,Members of Parliament,0
+2021,Northwest Territories,National,Members of Parliament,0
+2015,Northwest Territories,National,Members of Cabinet,0
+2016,Northwest Territories,National,Members of Cabinet,0
+2017,Northwest Territories,National,Members of Cabinet,0
+2018,Northwest Territories,National,Members of Cabinet,0
+2019,Northwest Territories,National,Members of Cabinet,0
+2020,Northwest Territories,National,Members of Cabinet,0
+2021,Northwest Territories,National,Members of Cabinet,0
+2015,Nunavut,National,Members of Parliament,100
+2016,Nunavut,National,Members of Parliament,0
+2017,Nunavut,National,Members of Parliament,0
+2018,Nunavut,National,Members of Parliament,0
+2019,Nunavut,National,Members of Parliament,0
+2020,Nunavut,National,Members of Parliament,100
+2021,Nunavut,National,Members of Parliament,100
+2015,Nunavut,National,Members of Cabinet,100
+2016,Nunavut,National,Members of Cabinet,0
+2017,Nunavut,National,Members of Cabinet,0
+2018,Nunavut,National,Members of Cabinet,0
+2019,Nunavut,National,Members of Cabinet,0
+2020,Nunavut,National,Members of Cabinet,0
+2021,Nunavut,National,Members of Cabinet,0
+2015,Canada,Local,Chiefs in First Nation communities,19.5
+2015,Canada,Local,First Nations council members,30.5
+2016,Canada,Local,Chiefs in First Nation communities,19.7
+2016,Canada,Local,First Nations council members,30.7
+2017,Canada,Local,Chiefs in First Nation communities,18.8
+2017,Canada,Local,First Nations council members,28.6
+2018,Canada,Local,Chiefs in First Nation communities,20.4
+2018,Canada,Local,First Nations council members,28.2
+2019,Canada,Local,Chiefs in First Nation communities,18.5
+2019,Canada,Local,First Nations council members,27.4
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-5-2.csv b/tests/assets/progress-calculation/data/temp/indicator_5-5-2.csv
new file mode 100644
index 00000000..72616c11
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_5-5-2.csv
@@ -0,0 +1,386 @@
+Year,Geography,Occupation,Value
+2015,"","",35.1
+2016,"","",34.6
+2017,"","",34.4
+2018,"","",34.8
+2019,"","",35.2
+2020,"","",35.9
+2021,"","",35.6
+2015,Canada,Senior management occupations,31.5
+2015,Canada,Specialized middle management occupations,47.2
+2015,Canada,Middle management occupations in retail and wholesale trade and customer services,41.8
+2015,Canada,"Middle management occupations in trades, transportation, production and utilities",17
+2015,Newfoundland and Labrador,Management occupations,38.9
+2015,Newfoundland and Labrador,Senior management occupations,
+2015,Newfoundland and Labrador,Specialized middle management occupations,48.2
+2015,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,41
+2015,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",17.9
+2015,Prince Edward Island,Management occupations,35.4
+2015,Prince Edward Island,Senior management occupations,
+2015,Prince Edward Island,Specialized middle management occupations,50
+2015,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,44
+2015,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",13.6
+2015,Nova Scotia,Management occupations,37.9
+2015,Nova Scotia,Senior management occupations,
+2015,Nova Scotia,Specialized middle management occupations,47.1
+2015,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,44.6
+2015,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",14.3
+2015,New Brunswick,Management occupations,36.8
+2015,New Brunswick,Senior management occupations,
+2015,New Brunswick,Specialized middle management occupations,45.3
+2015,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,42.9
+2015,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",15.3
+2015,Quebec,Management occupations,33.7
+2015,Quebec,Senior management occupations,36
+2015,Quebec,Specialized middle management occupations,49.2
+2015,Quebec,Middle management occupations in retail and wholesale trade and customer services,35.9
+2015,Quebec,"Middle management occupations in trades, transportation, production and utilities",15.7
+2015,Ontario,Management occupations,36.9
+2015,Ontario,Senior management occupations,28.4
+2015,Ontario,Specialized middle management occupations,48.1
+2015,Ontario,Middle management occupations in retail and wholesale trade and customer services,43.2
+2015,Ontario,"Middle management occupations in trades, transportation, production and utilities",15.3
+2015,Manitoba,Management occupations,31.5
+2015,Manitoba,Senior management occupations,30
+2015,Manitoba,Specialized middle management occupations,47.9
+2015,Manitoba,Middle management occupations in retail and wholesale trade and customer services,39.6
+2015,Manitoba,"Middle management occupations in trades, transportation, production and utilities",17
+2015,Saskatchewan,Management occupations,30.5
+2015,Saskatchewan,Senior management occupations,
+2015,Saskatchewan,Specialized middle management occupations,50.4
+2015,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,45.1
+2015,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",19.6
+2015,Alberta,Management occupations,33.2
+2015,Alberta,Senior management occupations,37.5
+2015,Alberta,Specialized middle management occupations,41.8
+2015,Alberta,Middle management occupations in retail and wholesale trade and customer services,45.6
+2015,Alberta,"Middle management occupations in trades, transportation, production and utilities",19.1
+2015,British Columbia,Management occupations,35.9
+2015,British Columbia,Senior management occupations,28.6
+2015,British Columbia,Specialized middle management occupations,45.2
+2015,British Columbia,Middle management occupations in retail and wholesale trade and customer services,42.9
+2015,British Columbia,"Middle management occupations in trades, transportation, production and utilities",19.2
+2016,Canada,Senior management occupations,36.9
+2016,Canada,Specialized middle management occupations,46.8
+2016,Canada,Middle management occupations in retail and wholesale trade and customer services,40.3
+2016,Canada,"Middle management occupations in trades, transportation, production and utilities",16.7
+2016,Newfoundland and Labrador,Management occupations,37.9
+2016,Newfoundland and Labrador,Senior management occupations,
+2016,Newfoundland and Labrador,Specialized middle management occupations,44.2
+2016,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,40.4
+2016,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",23.3
+2016,Prince Edward Island,Management occupations,33.9
+2016,Prince Edward Island,Senior management occupations,
+2016,Prince Edward Island,Specialized middle management occupations,53.3
+2016,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,47.4
+2016,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",12.5
+2016,Nova Scotia,Management occupations,40.7
+2016,Nova Scotia,Senior management occupations,45.5
+2016,Nova Scotia,Specialized middle management occupations,53.9
+2016,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,45.1
+2016,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",15.5
+2016,New Brunswick,Management occupations,38.5
+2016,New Brunswick,Senior management occupations,
+2016,New Brunswick,Specialized middle management occupations,54.7
+2016,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,41.1
+2016,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",18.1
+2016,Quebec,Management occupations,35.5
+2016,Quebec,Senior management occupations,40.2
+2016,Quebec,Specialized middle management occupations,46.7
+2016,Quebec,Middle management occupations in retail and wholesale trade and customer services,41.6
+2016,Quebec,"Middle management occupations in trades, transportation, production and utilities",16.6
+2016,Ontario,Management occupations,35.1
+2016,Ontario,Senior management occupations,35.7
+2016,Ontario,Specialized middle management occupations,46
+2016,Ontario,Middle management occupations in retail and wholesale trade and customer services,38.7
+2016,Ontario,"Middle management occupations in trades, transportation, production and utilities",15.8
+2016,Manitoba,Management occupations,30
+2016,Manitoba,Senior management occupations,
+2016,Manitoba,Specialized middle management occupations,48.9
+2016,Manitoba,Middle management occupations in retail and wholesale trade and customer services,36.5
+2016,Manitoba,"Middle management occupations in trades, transportation, production and utilities",15.9
+2016,Saskatchewan,Management occupations,31
+2016,Saskatchewan,Senior management occupations,50
+2016,Saskatchewan,Specialized middle management occupations,53.5
+2016,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,43
+2016,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",19.6
+2016,Alberta,Management occupations,32.2
+2016,Alberta,Senior management occupations,38.6
+2016,Alberta,Specialized middle management occupations,43.9
+2016,Alberta,Middle management occupations in retail and wholesale trade and customer services,42.3
+2016,Alberta,"Middle management occupations in trades, transportation, production and utilities",16.3
+2016,British Columbia,Management occupations,34.8
+2016,British Columbia,Senior management occupations,32.8
+2016,British Columbia,Specialized middle management occupations,47.4
+2016,British Columbia,Middle management occupations in retail and wholesale trade and customer services,40
+2016,British Columbia,"Middle management occupations in trades, transportation, production and utilities",18.2
+2017,Canada,Senior management occupations,28.6
+2017,Canada,Specialized middle management occupations,47.4
+2017,Canada,Middle management occupations in retail and wholesale trade and customer services,38.5
+2017,Canada,"Middle management occupations in trades, transportation, production and utilities",17.6
+2017,Newfoundland and Labrador,Management occupations,39.3
+2017,Newfoundland and Labrador,Senior management occupations,
+2017,Newfoundland and Labrador,Specialized middle management occupations,47.9
+2017,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,48.4
+2017,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",17
+2017,Prince Edward Island,Management occupations,37.9
+2017,Prince Edward Island,Senior management occupations,
+2017,Prince Edward Island,Specialized middle management occupations,50
+2017,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,50
+2017,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",13
+2017,Nova Scotia,Management occupations,37.3
+2017,Nova Scotia,Senior management occupations,
+2017,Nova Scotia,Specialized middle management occupations,57.5
+2017,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,35.8
+2017,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",12.6
+2017,New Brunswick,Management occupations,35
+2017,New Brunswick,Senior management occupations,
+2017,New Brunswick,Specialized middle management occupations,46
+2017,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,41.8
+2017,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",12
+2017,Quebec,Management occupations,32.6
+2017,Quebec,Senior management occupations,36.4
+2017,Quebec,Specialized middle management occupations,41.4
+2017,Quebec,Middle management occupations in retail and wholesale trade and customer services,36.5
+2017,Quebec,"Middle management occupations in trades, transportation, production and utilities",18
+2017,Ontario,Management occupations,35.7
+2017,Ontario,Senior management occupations,25.2
+2017,Ontario,Specialized middle management occupations,47.9
+2017,Ontario,Middle management occupations in retail and wholesale trade and customer services,38
+2017,Ontario,"Middle management occupations in trades, transportation, production and utilities",17.6
+2017,Manitoba,Management occupations,29.6
+2017,Manitoba,Senior management occupations,
+2017,Manitoba,Specialized middle management occupations,43.2
+2017,Manitoba,Middle management occupations in retail and wholesale trade and customer services,39.6
+2017,Manitoba,"Middle management occupations in trades, transportation, production and utilities",17
+2017,Saskatchewan,Management occupations,31.5
+2017,Saskatchewan,Senior management occupations,55
+2017,Saskatchewan,Specialized middle management occupations,56.1
+2017,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,39.2
+2017,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",19.5
+2017,Alberta,Management occupations,32.1
+2017,Alberta,Senior management occupations,
+2017,Alberta,Specialized middle management occupations,47
+2017,Alberta,Middle management occupations in retail and wholesale trade and customer services,37.6
+2017,Alberta,"Middle management occupations in trades, transportation, production and utilities",18.2
+2017,British Columbia,Management occupations,36.8
+2017,British Columbia,Senior management occupations,
+2017,British Columbia,Specialized middle management occupations,55.4
+2017,British Columbia,Middle management occupations in retail and wholesale trade and customer services,41.8
+2017,British Columbia,"Middle management occupations in trades, transportation, production and utilities",17
+2018,Canada,Senior management occupations,32
+2018,Canada,Specialized middle management occupations,48.3
+2018,Canada,Middle management occupations in retail and wholesale trade and customer services,38.3
+2018,Canada,"Middle management occupations in trades, transportation, production and utilities",18
+2018,Newfoundland and Labrador,Management occupations,45.1
+2018,Newfoundland and Labrador,Senior management occupations,
+2018,Newfoundland and Labrador,Specialized middle management occupations,55.6
+2018,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,53.4
+2018,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",14.7
+2018,Prince Edward Island,Management occupations,35.4
+2018,Prince Edward Island,Senior management occupations,
+2018,Prince Edward Island,Specialized middle management occupations,53.3
+2018,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,45.5
+2018,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",14.3
+2018,Nova Scotia,Management occupations,39.9
+2018,Nova Scotia,Senior management occupations,
+2018,Nova Scotia,Specialized middle management occupations,55.9
+2018,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,46.1
+2018,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",16.5
+2018,New Brunswick,Management occupations,35.4
+2018,New Brunswick,Senior management occupations,
+2018,New Brunswick,Specialized middle management occupations,49.3
+2018,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,38
+2018,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",14.9
+2018,Quebec,Management occupations,36.1
+2018,Quebec,Senior management occupations,36.8
+2018,Quebec,Specialized middle management occupations,52
+2018,Quebec,Middle management occupations in retail and wholesale trade and customer services,36
+2018,Quebec,"Middle management occupations in trades, transportation, production and utilities",19.5
+2018,Ontario,Management occupations,35.5
+2018,Ontario,Senior management occupations,31.5
+2018,Ontario,Specialized middle management occupations,47.6
+2018,Ontario,Middle management occupations in retail and wholesale trade and customer services,37.4
+2018,Ontario,"Middle management occupations in trades, transportation, production and utilities",16.2
+2018,Manitoba,Management occupations,31.6
+2018,Manitoba,Senior management occupations,
+2018,Manitoba,Specialized middle management occupations,50.7
+2018,Manitoba,Middle management occupations in retail and wholesale trade and customer services,41.3
+2018,Manitoba,"Middle management occupations in trades, transportation, production and utilities",16
+2018,Saskatchewan,Management occupations,31.3
+2018,Saskatchewan,Senior management occupations,
+2018,Saskatchewan,Specialized middle management occupations,56.3
+2018,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,41.3
+2018,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",19.5
+2018,Alberta,Management occupations,32.1
+2018,Alberta,Senior management occupations,40.9
+2018,Alberta,Specialized middle management occupations,40.8
+2018,Alberta,Middle management occupations in retail and wholesale trade and customer services,40.7
+2018,Alberta,"Middle management occupations in trades, transportation, production and utilities",20.5
+2018,British Columbia,Management occupations,33.8
+2018,British Columbia,Senior management occupations,
+2018,British Columbia,Specialized middle management occupations,46.9
+2018,British Columbia,Middle management occupations in retail and wholesale trade and customer services,38.7
+2018,British Columbia,"Middle management occupations in trades, transportation, production and utilities",17.7
+2019,Canada,Senior management occupations,31.6
+2019,Canada,Specialized middle management occupations,51.3
+2019,Canada,Middle management occupations in retail and wholesale trade and customer services,39.2
+2019,Canada,"Middle management occupations in trades, transportation, production and utilities",16
+2019,Newfoundland and Labrador,Management occupations,36
+2019,Newfoundland and Labrador,Senior management occupations,
+2019,Newfoundland and Labrador,Specialized middle management occupations,50
+2019,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,41.2
+2019,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",
+2019,Prince Edward Island,Management occupations,35
+2019,Prince Edward Island,Senior management occupations,
+2019,Prince Edward Island,Specialized middle management occupations,46.2
+2019,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,50
+2019,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",23.1
+2019,Nova Scotia,Management occupations,39.2
+2019,Nova Scotia,Senior management occupations,
+2019,Nova Scotia,Specialized middle management occupations,56.1
+2019,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,42.5
+2019,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",16.5
+2019,New Brunswick,Management occupations,38
+2019,New Brunswick,Senior management occupations,
+2019,New Brunswick,Specialized middle management occupations,53.2
+2019,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,41.7
+2019,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",16.9
+2019,Quebec,Management occupations,35.8
+2019,Quebec,Senior management occupations,45.4
+2019,Quebec,Specialized middle management occupations,49.3
+2019,Quebec,Middle management occupations in retail and wholesale trade and customer services,38.6
+2019,Quebec,"Middle management occupations in trades, transportation, production and utilities",16.8
+2019,Ontario,Management occupations,36.2
+2019,Ontario,Senior management occupations,28.8
+2019,Ontario,Specialized middle management occupations,52.3
+2019,Ontario,Middle management occupations in retail and wholesale trade and customer services,38.9
+2019,Ontario,"Middle management occupations in trades, transportation, production and utilities",14.5
+2019,Manitoba,Management occupations,30.4
+2019,Manitoba,Senior management occupations,
+2019,Manitoba,Specialized middle management occupations,47.3
+2019,Manitoba,Middle management occupations in retail and wholesale trade and customer services,43.6
+2019,Manitoba,"Middle management occupations in trades, transportation, production and utilities",14.7
+2019,Saskatchewan,Management occupations,29.4
+2019,Saskatchewan,Senior management occupations,50
+2019,Saskatchewan,Specialized middle management occupations,51.1
+2019,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,36.8
+2019,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",18.7
+2019,Alberta,Management occupations,32.4
+2019,Alberta,Senior management occupations,28
+2019,Alberta,Specialized middle management occupations,52.7
+2019,Alberta,Middle management occupations in retail and wholesale trade and customer services,37.6
+2019,Alberta,"Middle management occupations in trades, transportation, production and utilities",16.1
+2019,British Columbia,Management occupations,35.6
+2019,British Columbia,Senior management occupations,
+2019,British Columbia,Specialized middle management occupations,49.8
+2019,British Columbia,Middle management occupations in retail and wholesale trade and customer services,40.3
+2019,British Columbia,"Middle management occupations in trades, transportation, production and utilities",17.9
+2020,Canada,Senior management occupations,28.6
+2020,Canada,Specialized middle management occupations,49.3
+2020,Canada,Middle management occupations in retail and wholesale trade and customer services,39.6
+2020,Canada,"Middle management occupations in trades, transportation, production and utilities",17.6
+2020,Newfoundland and Labrador,Management occupations,38.5
+2020,Newfoundland and Labrador,Senior management occupations,
+2020,Newfoundland and Labrador,Specialized middle management occupations,54.5
+2020,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,43.1
+2020,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",
+2020,Prince Edward Island,Management occupations,37.7
+2020,Prince Edward Island,Senior management occupations,
+2020,Prince Edward Island,Specialized middle management occupations,62.5
+2020,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,54.5
+2020,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",16.7
+2020,Nova Scotia,Management occupations,40.3
+2020,Nova Scotia,Senior management occupations,42.9
+2020,Nova Scotia,Specialized middle management occupations,54
+2020,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,46.8
+2020,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",17.6
+2020,New Brunswick,Management occupations,34.1
+2020,New Brunswick,Senior management occupations,
+2020,New Brunswick,Specialized middle management occupations,51.8
+2020,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,36.4
+2020,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",10.5
+2020,Quebec,Management occupations,36.2
+2020,Quebec,Senior management occupations,42.7
+2020,Quebec,Specialized middle management occupations,51.5
+2020,Quebec,Middle management occupations in retail and wholesale trade and customer services,35.1
+2020,Quebec,"Middle management occupations in trades, transportation, production and utilities",17.4
+2020,Ontario,Management occupations,36.1
+2020,Ontario,Senior management occupations,22.4
+2020,Ontario,Specialized middle management occupations,47.4
+2020,Ontario,Middle management occupations in retail and wholesale trade and customer services,40.4
+2020,Ontario,"Middle management occupations in trades, transportation, production and utilities",16.5
+2020,Manitoba,Management occupations,30.6
+2020,Manitoba,Senior management occupations,46.7
+2020,Manitoba,Specialized middle management occupations,47.3
+2020,Manitoba,Middle management occupations in retail and wholesale trade and customer services,40.2
+2020,Manitoba,"Middle management occupations in trades, transportation, production and utilities",16.4
+2020,Saskatchewan,Management occupations,32.7
+2020,Saskatchewan,Senior management occupations,50
+2020,Saskatchewan,Specialized middle management occupations,54.9
+2020,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,41
+2020,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",19.5
+2020,Alberta,Management occupations,33.2
+2020,Alberta,Senior management occupations,
+2020,Alberta,Specialized middle management occupations,49.1
+2020,Alberta,Middle management occupations in retail and wholesale trade and customer services,36.4
+2020,Alberta,"Middle management occupations in trades, transportation, production and utilities",20.2
+2020,British Columbia,Management occupations,38.6
+2020,British Columbia,Senior management occupations,32.2
+2020,British Columbia,Specialized middle management occupations,50.4
+2020,British Columbia,Middle management occupations in retail and wholesale trade and customer services,43.4
+2020,British Columbia,"Middle management occupations in trades, transportation, production and utilities",18.7
+2021,Canada,Senior management occupations,30.9
+2021,Canada,Specialized middle management occupations,49.1
+2021,Canada,Middle management occupations in retail and wholesale trade and customer services,40
+2021,Canada,"Middle management occupations in trades, transportation, production and utilities",17
+2021,Newfoundland and Labrador,Management occupations,36.2
+2021,Newfoundland and Labrador,Senior management occupations,
+2021,Newfoundland and Labrador,Specialized middle management occupations,45.5
+2021,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,37.3
+2021,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",
+2021,Prince Edward Island,Management occupations,35.3
+2021,Prince Edward Island,Senior management occupations,
+2021,Prince Edward Island,Specialized middle management occupations,50
+2021,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,45.8
+2021,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",16
+2021,Nova Scotia,Management occupations,45.7
+2021,Nova Scotia,Senior management occupations,
+2021,Nova Scotia,Specialized middle management occupations,55.9
+2021,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,52.8
+2021,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",22
+2021,New Brunswick,Management occupations,35.2
+2021,New Brunswick,Senior management occupations,
+2021,New Brunswick,Specialized middle management occupations,52.1
+2021,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,36.5
+2021,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",11
+2021,Quebec,Management occupations,35.9
+2021,Quebec,Senior management occupations,34.7
+2021,Quebec,Specialized middle management occupations,51.6
+2021,Quebec,Middle management occupations in retail and wholesale trade and customer services,36.1
+2021,Quebec,"Middle management occupations in trades, transportation, production and utilities",17.4
+2021,Ontario,Management occupations,36.5
+2021,Ontario,Senior management occupations,29
+2021,Ontario,Specialized middle management occupations,48.6
+2021,Ontario,Middle management occupations in retail and wholesale trade and customer services,39.5
+2021,Ontario,"Middle management occupations in trades, transportation, production and utilities",17.8
+2021,Manitoba,Management occupations,32.9
+2021,Manitoba,Senior management occupations,27.8
+2021,Manitoba,Specialized middle management occupations,50.6
+2021,Manitoba,Middle management occupations in retail and wholesale trade and customer services,40
+2021,Manitoba,"Middle management occupations in trades, transportation, production and utilities",18.8
+2021,Saskatchewan,Management occupations,29.9
+2021,Saskatchewan,Senior management occupations,
+2021,Saskatchewan,Specialized middle management occupations,49.6
+2021,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,38.1
+2021,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",17.6
+2021,Alberta,Management occupations,34.4
+2021,Alberta,Senior management occupations,39.3
+2021,Alberta,Specialized middle management occupations,50.3
+2021,Alberta,Middle management occupations in retail and wholesale trade and customer services,41.7
+2021,Alberta,"Middle management occupations in trades, transportation, production and utilities",15.3
+2021,British Columbia,Management occupations,34.2
+2021,British Columbia,Senior management occupations,22.9
+2021,British Columbia,Specialized middle management occupations,43.2
+2021,British Columbia,Middle management occupations in retail and wholesale trade and customer services,44
+2021,British Columbia,"Middle management occupations in trades, transportation, production and utilities",15.3
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-b-1.csv b/tests/assets/progress-calculation/data/temp/indicator_5-b-1.csv
new file mode 100644
index 00000000..729efc20
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_5-b-1.csv
@@ -0,0 +1,53 @@
+Year,Geography,GeoCode,Value
+2015,,NA,86.1
+2015,Atlantic Region,NA,83.8
+2015,Newfoundland and Labrador,10,86.4
+2015,Prince Edward Island,11,83.8
+2015,Nova Scotia,12,83.2
+2015,New Brunswick,13,82.8
+2015,Quebec,24,79
+2015,Ontario,35,88.1
+2015,Prairie Region,NA,91.4
+2015,Manitoba,46,85.1
+2015,Saskatchewan,47,91.1
+2015,Alberta,48,93.4
+2015,British Columbia,59,88.5
+2016,,NA,87.9
+2016,Atlantic Region,NA,85.6
+2016,Newfoundland and Labrador,10,87.6
+2016,Prince Edward Island,11,85
+2016,Nova Scotia,12,86.8
+2016,New Brunswick,13,82.8
+2016,Quebec,24,82
+2016,Ontario,35,90.2
+2016,Prairie Region,NA,91.1
+2016,Manitoba,46,86
+2016,Saskatchewan,47,90.5
+2016,Alberta,48,92.9
+2016,British Columbia,59,89.7
+2017,,NA,89.4
+2017,Atlantic Region,NA,87.7
+2017,Newfoundland and Labrador,10,88.7
+2017,Prince Edward Island,11,87
+2017,Nova Scotia,12,87.3
+2017,New Brunswick,13,87.6
+2017,Quebec,24,84.5
+2017,Ontario,35,90.6
+2017,Prairie Region,NA,93
+2017,Manitoba,46,90.2
+2017,Saskatchewan,47,93.4
+2017,Alberta,48,93.7
+2017,British Columbia,59,91.8
+2019,,NA,91.3
+2019,Atlantic Region,NA,90.1
+2019,Newfoundland and Labrador,10,90.3
+2019,Prince Edward Island,11,90.2
+2019,Nova Scotia,12,90.6
+2019,New Brunswick,13,89.2
+2019,Quebec,24,87.6
+2019,Ontario,35,91.8
+2019,Prairie Region,NA,94.7
+2019,Manitoba,46,91.2
+2019,Saskatchewan,47,93.9
+2019,Alberta,48,96.1
+2019,British Columbia,59,92.9
diff --git a/tests/assets/progress-calculation/data/temp/indicator_6-1-1.csv b/tests/assets/progress-calculation/data/temp/indicator_6-1-1.csv
new file mode 100644
index 00000000..7b04462b
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_6-1-1.csv
@@ -0,0 +1,22 @@
+Year,Value
+2000,98.17
+2001,98.18
+2002,98.18
+2003,98.18
+2004,98.18
+2005,98.24
+2006,98.30
+2007,98.36
+2008,98.42
+2009,98.48
+2010,98.54
+2011,98.60
+2012,98.65
+2013,98.71
+2014,98.76
+2015,98.82
+2016,98.87
+2017,98.93
+2018,98.98
+2019,99.04
+2020,99.04
diff --git a/tests/assets/progress-calculation/data/temp/indicator_7-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_7-2-1.csv
new file mode 100644
index 00000000..c4497154
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_7-2-1.csv
@@ -0,0 +1,2 @@
+Year,Value
+2018,16.3
diff --git a/tests/assets/progress-calculation/data/temp/indicator_7-3-1.csv b/tests/assets/progress-calculation/data/temp/indicator_7-3-1.csv
new file mode 100644
index 00000000..e28fa63c
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_7-3-1.csv
@@ -0,0 +1,6 @@
+Year,Value
+2015,6.441310972258255
+2016,6.1914493713636825
+2017,6.163151365418677
+2018,6.1738575817360735
+2019,6.075555474999031
diff --git a/tests/assets/progress-calculation/data/temp/indicator_8-10-1.csv b/tests/assets/progress-calculation/data/temp/indicator_8-10-1.csv
new file mode 100644
index 00000000..dfb76bb4
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_8-10-1.csv
@@ -0,0 +1,11 @@
+Year,Units,Value
+2016,"Number of commercial bank branches per 100,000 adults",22.25
+2017,"Number of commercial bank branches per 100,000 adults",20.75
+2018,"Number of commercial bank branches per 100,000 adults",20.13
+2019,"Number of commercial bank branches per 100,000 adults",19.73
+2020,"Number of commercial bank branches per 100,000 adults",20.17
+2016,"Number of automated teller machines (ATMs) per 100,000 adults",223.89
+2017,"Number of automated teller machines (ATMs) per 100,000 adults",228.42
+2018,"Number of automated teller machines (ATMs) per 100,000 adults",219.96
+2019,"Number of automated teller machines (ATMs) per 100,000 adults",214.12
+2020,"Number of automated teller machines (ATMs) per 100,000 adults",210.23
diff --git a/tests/assets/progress-calculation/data/temp/indicator_8-8-1.csv b/tests/assets/progress-calculation/data/temp/indicator_8-8-1.csv
new file mode 100644
index 00000000..df51a751
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_8-8-1.csv
@@ -0,0 +1,19 @@
+Year,Units,Sex,Value
+2017,"Number of fatality claims, by sex",Male,920
+2017,"Number of fatality claims, by sex",Female,31
+2017,"Number of fatality claims, by sex",Unknown,0
+2018,"Number of fatality claims, by sex",Male,997
+2018,"Number of fatality claims, by sex",Female,30
+2018,"Number of fatality claims, by sex",Unknown,0
+2019,"Number of fatality claims, by sex",Male,882
+2019,"Number of fatality claims, by sex",Female,43
+2019,"Number of fatality claims, by sex",Unknown,0
+2017,"Number of lost time claims, by sex",Male,152240
+2017,"Number of lost time claims, by sex",Female,99319
+2017,"Number of lost time claims, by sex",Unknown,66
+2018,"Number of lost time claims, by sex",Male,158969
+2018,"Number of lost time claims, by sex",Female,105443
+2018,"Number of lost time claims, by sex",Unknown,26
+2019,"Number of lost time claims, by sex",Male,160801
+2019,"Number of lost time claims, by sex",Female,110948
+2019,"Number of lost time claims, by sex",Unknown,57
diff --git a/tests/assets/progress-calculation/data/temp/indicator_9-2-2.csv b/tests/assets/progress-calculation/data/temp/indicator_9-2-2.csv
new file mode 100644
index 00000000..e48e4af1
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_9-2-2.csv
@@ -0,0 +1,9775 @@
+Year,Geography,Type of employee,Industry,GeoCode,Value
+2015,"","","",,9.49
+2016,"","","",,9.28
+2017,"","","",,9.27
+2018,"","","",,9.33
+2019,"","","",,9.31
+2020,"","","",,9.33
+2015,Canada,All employees,Non-durable goods,,3.85
+2015,Canada,All employees,Food manufacturing,,1.42
+2015,Canada,All employees,Animal food manufacturing,,0.06
+2015,Canada,All employees,Grain and oilseed milling,,0.05
+2015,Canada,All employees,Sugar and confectionery product manufacturing,,0.07
+2015,Canada,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.11
+2015,Canada,All employees,Dairy product manufacturing,,0.15
+2015,Canada,All employees,Meat product manufacturing,,0.36
+2015,Canada,All employees,Seafood product preparation and packaging,,0.15
+2015,Canada,All employees,Bakeries and tortilla manufacturing,,0.28
+2015,Canada,All employees,Other food manufacturing,,0.2
+2015,Canada,All employees,Beverage and tobacco product manufacturing,,0.22
+2015,Canada,All employees,Beverage manufacturing,,0.2
+2015,Canada,All employees,Tobacco manufacturing,,0.02
+2015,Canada,All employees,Cannabis product manufacturing,,
+2015,Canada,All employees,Textile mills,,0.05
+2015,Canada,All employees,"Fibre, yarn and thread mills",,0.01
+2015,Canada,All employees,Fabric mills,,0.03
+2015,Canada,All employees,Textile and fabric finishing and fabric coating,,0.01
+2015,Canada,All employees,Textile product mills,,0.06
+2015,Canada,All employees,Textile furnishings mills,,0.02
+2015,Canada,All employees,Other textile product mills,,0.04
+2015,Canada,All employees,Clothing manufacturing,,0.13
+2015,Canada,All employees,Clothing knitting mills,,0.01
+2015,Canada,All employees,Cut and sew clothing manufacturing,,0.1
+2015,Canada,All employees,Clothing accessories and other clothing manufacturing,,0.01
+2015,Canada,All employees,Leather and allied product manufacturing,,0.02
+2015,Canada,All employees,Leather and hide tanning and finishing,,0
+2015,Canada,All employees,Footwear manufacturing,,0.01
+2015,Canada,All employees,Other leather and allied product manufacturing,,0.01
+2015,Canada,All employees,Paper manufacturing,,0.35
+2015,Canada,All employees,"Pulp, paper and paperboard mills",,0.17
+2015,Canada,All employees,Converted paper product manufacturing,,0.18
+2015,Canada,All employees,Printing and related support activities,,0.31
+2015,Canada,All employees,Petroleum and coal product manufacturing,,0.12
+2015,Canada,All employees,Chemical manufacturing,,0.56
+2015,Canada,All employees,Basic chemical manufacturing,,0.08
+2015,Canada,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.04
+2015,Canada,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
+2015,Canada,All employees,Pharmaceutical and medicine manufacturing,,0.17
+2015,Canada,All employees,"Paint, coating and adhesive manufacturing",,0.05
+2015,Canada,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.1
+2015,Canada,All employees,Other chemical product manufacturing,,0.07
+2015,Canada,All employees,Plastics and rubber products manufacturing,,0.61
+2015,Canada,All employees,Plastic product manufacturing,,0.51
+2015,Canada,All employees,Rubber product manufacturing,,0.1
+2015,Canada,All employees,Durable goods,,5.64
+2015,Canada,All employees,Wood product manufacturing,,0.58
+2015,Canada,All employees,Sawmills and wood preservation,,0.23
+2015,Canada,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.11
+2015,Canada,All employees,Other wood product manufacturing,,0.24
+2015,Canada,All employees,Non-metallic mineral product manufacturing,,0.33
+2015,Canada,All employees,Clay product and refractory manufacturing,,0.01
+2015,Canada,All employees,Glass and glass product manufacturing,,0.05
+2015,Canada,All employees,Cement and concrete product manufacturing,,0.2
+2015,Canada,All employees,Lime and gypsum product manufacturing,,0.01
+2015,Canada,All employees,Other non-metallic mineral product manufacturing,,0.06
+2015,Canada,All employees,Primary metal manufacturing,,0.36
+2015,Canada,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.11
+2015,Canada,All employees,Steel product manufacturing from purchased steel,,0.05
+2015,Canada,All employees,Alumina and aluminum production and processing,,0.06
+2015,Canada,All employees,Non-ferrous metal (except aluminum) production and processing,,0.09
+2015,Canada,All employees,Foundries,,0.06
+2015,Canada,All employees,Fabricated metal product manufacturing,,0.98
+2015,Canada,All employees,Forging and stamping,,0.04
+2015,Canada,All employees,Cutlery and hand tool manufacturing,,0.02
+2015,Canada,All employees,Architectural and structural metals manufacturing,,0.38
+2015,Canada,All employees,"Boiler, tank and shipping container manufacturing",,0.08
+2015,Canada,All employees,Hardware manufacturing,,0.03
+2015,Canada,All employees,Spring and wire product manufacturing,,0.03
+2015,Canada,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.21
+2015,Canada,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2015,Canada,All employees,Other fabricated metal product manufacturing,,0.12
+2015,Canada,All employees,Machinery manufacturing,,0.84
+2015,Canada,All employees,"Agricultural, construction and mining machinery manufacturing",,0.2
+2015,Canada,All employees,Industrial machinery manufacturing,,0.09
+2015,Canada,All employees,Commercial and service industry machinery manufacturing,,0.09
+2015,Canada,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.09
+2015,Canada,All employees,Metalworking machinery manufacturing,,0.13
+2015,Canada,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.05
+2015,Canada,All employees,Other general-purpose machinery manufacturing,,0.19
+2015,Canada,All employees,Computer and electronic product manufacturing,,0.35
+2015,Canada,All employees,Computer and peripheral equipment manufacturing,,0.03
+2015,Canada,All employees,Communications equipment manufacturing,,0.09
+2015,Canada,All employees,Audio and video equipment manufacturing,,0.01
+2015,Canada,All employees,Semiconductor and other electronic component manufacturing,,0.08
+2015,Canada,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.13
+2015,Canada,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
+2015,Canada,All employees,"Electrical equipment, appliance and component manufacturing",,0.21
+2015,Canada,All employees,Electric lighting equipment manufacturing,,0.03
+2015,Canada,All employees,Household appliance manufacturing,,0.01
+2015,Canada,All employees,Electrical equipment manufacturing,,0.1
+2015,Canada,All employees,Other electrical equipment and component manufacturing,,0.07
+2015,Canada,All employees,Transportation equipment manufacturing,,1.21
+2015,Canada,All employees,Motor vehicle manufacturing,,0.26
+2015,Canada,All employees,Motor vehicle body and trailer manufacturing,,0.08
+2015,Canada,All employees,Motor vehicle parts manufacturing,,0.45
+2015,Canada,All employees,Aerospace product and parts manufacturing,,0.3
+2015,Canada,All employees,Railroad rolling stock manufacturing,,0.03
+2015,Canada,All employees,Ship and boat building,,0.04
+2015,Canada,All employees,Other transportation equipment manufacturing,,0.05
+2015,Canada,All employees,Furniture and related product manufacturing,,0.4
+2015,Canada,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.25
+2015,Canada,All employees,Office furniture (including fixtures) manufacturing,,0.13
+2015,Canada,All employees,Other furniture-related product manufacturing,,0.03
+2015,Canada,All employees,Miscellaneous manufacturing,,0.36
+2015,Canada,All employees,Medical equipment and supplies manufacturing,,0.11
+2015,Canada,All employees,Other miscellaneous manufacturing,,0.25
+2015,Canada,Salaried employees paid a fixed salary,Manufacturing,,2.61
+2015,Canada,Salaried employees paid a fixed salary,Non-durable goods,,1.15
+2015,Canada,Salaried employees paid a fixed salary,Food manufacturing,,0.27
+2015,Canada,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2015,Canada,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,0.02
+2015,Canada,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,0.03
+2015,Canada,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.05
+2015,Canada,Salaried employees paid a fixed salary,Other food manufacturing,,0.06
+2015,Canada,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Beverage manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Tobacco manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Textile mills,,0.01
+2015,Canada,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2015,Canada,Salaried employees paid a fixed salary,Fabric mills,,0.01
+2015,Canada,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
+2015,Canada,Salaried employees paid a fixed salary,Textile product mills,,
+2015,Canada,Salaried employees paid a fixed salary,Clothing manufacturing,,0.03
+2015,Canada,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
+2015,Canada,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2015,Canada,Salaried employees paid a fixed salary,Footwear manufacturing,,0
+2015,Canada,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,0
+2015,Canada,Salaried employees paid a fixed salary,Paper manufacturing,,0.11
+2015,Canada,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2015,Canada,Salaried employees paid a fixed salary,Printing and related support activities,,0.08
+2015,Canada,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Chemical manufacturing,,0.31
+2015,Canada,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2015,Canada,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2015,Canada,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,0.04
+2015,Canada,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Durable goods,,1.46
+2015,Canada,Salaried employees paid a fixed salary,Wood product manufacturing,,0.08
+2015,Canada,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.03
+2015,Canada,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,0.02
+2015,Canada,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.03
+2015,Canada,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.07
+2015,Canada,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,0.04
+2015,Canada,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.13
+2015,Canada,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2015,Canada,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2015,Canada,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2015,Canada,Salaried employees paid a fixed salary,Foundries,,0.01
+2015,Canada,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.18
+2015,Canada,Salaried employees paid a fixed salary,Forging and stamping,,
+2015,Canada,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.07
+2015,Canada,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,0.02
+2015,Canada,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2015,Canada,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,0.01
+2015,Canada,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,0.03
+2015,Canada,Salaried employees paid a fixed salary,Machinery manufacturing,,0.28
+2015,Canada,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,0.06
+2015,Canada,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,0.03
+2015,Canada,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2015,Canada,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,0.04
+2015,Canada,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2015,Canada,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.21
+2015,Canada,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Communications equipment manufacturing,,0.06
+2015,Canada,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,0.04
+2015,Canada,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Canada,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2015,Canada,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Ship and boat building,,
+2015,Canada,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.03
+2015,Canada,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.02
+2015,Canada,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.15
+2015,Canada,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2015,Canada,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.09
+2015,Canada,Employees paid by the hour,Manufacturing,,6.44
+2015,Canada,Employees paid by the hour,Non-durable goods,,2.56
+2015,Canada,Employees paid by the hour,Food manufacturing,,1.1
+2015,Canada,Employees paid by the hour,Animal food manufacturing,,
+2015,Canada,Employees paid by the hour,Grain and oilseed milling,,
+2015,Canada,Employees paid by the hour,Sugar and confectionery product manufacturing,,
+2015,Canada,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,0.09
+2015,Canada,Employees paid by the hour,Dairy product manufacturing,,
+2015,Canada,Employees paid by the hour,Meat product manufacturing,,
+2015,Canada,Employees paid by the hour,Seafood product preparation and packaging,,0.11
+2015,Canada,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.22
+2015,Canada,Employees paid by the hour,Other food manufacturing,,0.13
+2015,Canada,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2015,Canada,Employees paid by the hour,Beverage manufacturing,,
+2015,Canada,Employees paid by the hour,Tobacco manufacturing,,
+2015,Canada,Employees paid by the hour,Cannabis product manufacturing,,
+2015,Canada,Employees paid by the hour,Textile mills,,0.03
+2015,Canada,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2015,Canada,Employees paid by the hour,Fabric mills,,0.02
+2015,Canada,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
+2015,Canada,Employees paid by the hour,Textile product mills,,0.04
+2015,Canada,Employees paid by the hour,Clothing manufacturing,,0.08
+2015,Canada,Employees paid by the hour,Cut and sew clothing manufacturing,,0.06
+2015,Canada,Employees paid by the hour,Leather and allied product manufacturing,,0.02
+2015,Canada,Employees paid by the hour,Leather and hide tanning and finishing,,
+2015,Canada,Employees paid by the hour,Footwear manufacturing,,0.01
+2015,Canada,Employees paid by the hour,Other leather and allied product manufacturing,,0.01
+2015,Canada,Employees paid by the hour,Paper manufacturing,,0.24
+2015,Canada,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2015,Canada,Employees paid by the hour,Printing and related support activities,,0.21
+2015,Canada,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2015,Canada,Employees paid by the hour,Chemical manufacturing,,0.23
+2015,Canada,Employees paid by the hour,Basic chemical manufacturing,,
+2015,Canada,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2015,Canada,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2015,Canada,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2015,Canada,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,0.05
+2015,Canada,Employees paid by the hour,Other chemical product manufacturing,,
+2015,Canada,Employees paid by the hour,Rubber product manufacturing,,
+2015,Canada,Employees paid by the hour,Durable goods,,3.88
+2015,Canada,Employees paid by the hour,Wood product manufacturing,,0.46
+2015,Canada,Employees paid by the hour,Sawmills and wood preservation,,0.19
+2015,Canada,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.09
+2015,Canada,Employees paid by the hour,Other wood product manufacturing,,0.19
+2015,Canada,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.24
+2015,Canada,Employees paid by the hour,Clay product and refractory manufacturing,,
+2015,Canada,Employees paid by the hour,Glass and glass product manufacturing,,
+2015,Canada,Employees paid by the hour,Cement and concrete product manufacturing,,0.15
+2015,Canada,Employees paid by the hour,Lime and gypsum product manufacturing,,
+2015,Canada,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2015,Canada,Employees paid by the hour,Primary metal manufacturing,,0.22
+2015,Canada,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2015,Canada,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2015,Canada,Employees paid by the hour,Alumina and aluminum production and processing,,
+2015,Canada,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2015,Canada,Employees paid by the hour,Foundries,,0.04
+2015,Canada,Employees paid by the hour,Fabricated metal product manufacturing,,0.72
+2015,Canada,Employees paid by the hour,Forging and stamping,,
+2015,Canada,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2015,Canada,Employees paid by the hour,Architectural and structural metals manufacturing,,0.29
+2015,Canada,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,0.06
+2015,Canada,Employees paid by the hour,Hardware manufacturing,,
+2015,Canada,Employees paid by the hour,Spring and wire product manufacturing,,
+2015,Canada,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2015,Canada,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,0.05
+2015,Canada,Employees paid by the hour,Other fabricated metal product manufacturing,,0.09
+2015,Canada,Employees paid by the hour,Machinery manufacturing,,0.53
+2015,Canada,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,0.14
+2015,Canada,Employees paid by the hour,Industrial machinery manufacturing,,0.05
+2015,Canada,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2015,Canada,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2015,Canada,Employees paid by the hour,Metalworking machinery manufacturing,,0.09
+2015,Canada,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2015,Canada,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2015,Canada,Employees paid by the hour,Computer and electronic product manufacturing,,0.13
+2015,Canada,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
+2015,Canada,Employees paid by the hour,Communications equipment manufacturing,,0.03
+2015,Canada,Employees paid by the hour,Audio and video equipment manufacturing,,
+2015,Canada,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,0.04
+2015,Canada,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Canada,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2015,Canada,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2015,Canada,Employees paid by the hour,Household appliance manufacturing,,
+2015,Canada,Employees paid by the hour,Electrical equipment manufacturing,,
+2015,Canada,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2015,Canada,Employees paid by the hour,Transportation equipment manufacturing,,
+2015,Canada,Employees paid by the hour,Motor vehicle manufacturing,,
+2015,Canada,Employees paid by the hour,Motor vehicle parts manufacturing,,
+2015,Canada,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2015,Canada,Employees paid by the hour,Ship and boat building,,0.04
+2015,Canada,Employees paid by the hour,Other transportation equipment manufacturing,,
+2015,Canada,Employees paid by the hour,Furniture and related product manufacturing,,0.34
+2015,Canada,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
+2015,Canada,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2015,Canada,Employees paid by the hour,Other furniture-related product manufacturing,,
+2015,Canada,Employees paid by the hour,Miscellaneous manufacturing,,0.18
+2015,Canada,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2015,Canada,Employees paid by the hour,Other miscellaneous manufacturing,,0.13
+2015,Newfoundland and Labrador,All employees,Manufacturing,10,5.86
+2015,Newfoundland and Labrador,All employees,Non-durable goods,,4.39
+2015,Newfoundland and Labrador,All employees,Food manufacturing,,3.44
+2015,Newfoundland and Labrador,All employees,Seafood product preparation and packaging,,2.89
+2015,Newfoundland and Labrador,All employees,Cannabis product manufacturing,,
+2015,Newfoundland and Labrador,All employees,Durable goods,,1.47
+2015,Newfoundland and Labrador,All employees,Sawmills and wood preservation,,
+2015,Newfoundland and Labrador,All employees,Ship and boat building,,0.2
+2015,Newfoundland and Labrador,All employees,Other miscellaneous manufacturing,,0.06
+2015,Newfoundland and Labrador,Salaried employees paid a fixed salary,Manufacturing,,
+2015,Newfoundland and Labrador,Salaried employees paid a fixed salary,Non-durable goods,,
+2015,Newfoundland and Labrador,Salaried employees paid a fixed salary,Food manufacturing,,
+2015,Newfoundland and Labrador,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,Newfoundland and Labrador,Salaried employees paid a fixed salary,Durable goods,,
+2015,Newfoundland and Labrador,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2015,Newfoundland and Labrador,Employees paid by the hour,Manufacturing,,
+2015,Newfoundland and Labrador,Employees paid by the hour,Non-durable goods,,
+2015,Newfoundland and Labrador,Employees paid by the hour,Food manufacturing,,
+2015,Newfoundland and Labrador,Employees paid by the hour,Cannabis product manufacturing,,
+2015,Newfoundland and Labrador,Employees paid by the hour,Durable goods,,
+2015,Newfoundland and Labrador,Employees paid by the hour,Other miscellaneous manufacturing,,
+2015,Prince Edward Island,All employees,Manufacturing,11,7.67
+2015,Prince Edward Island,All employees,Non-durable goods,,5.03
+2015,Prince Edward Island,All employees,Food manufacturing,,3.59
+2015,Prince Edward Island,All employees,Seafood product preparation and packaging,,
+2015,Prince Edward Island,All employees,Cannabis product manufacturing,,
+2015,Prince Edward Island,All employees,Printing and related support activities,,
+2015,Prince Edward Island,All employees,Durable goods,,2.64
+2015,Prince Edward Island,Salaried employees paid a fixed salary,Manufacturing,,2.34
+2015,Prince Edward Island,Salaried employees paid a fixed salary,Food manufacturing,,
+2015,Prince Edward Island,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2015,Prince Edward Island,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,Prince Edward Island,Salaried employees paid a fixed salary,Durable goods,,
+2015,Prince Edward Island,Employees paid by the hour,Manufacturing,,5.09
+2015,Prince Edward Island,Employees paid by the hour,Food manufacturing,,
+2015,Prince Edward Island,Employees paid by the hour,Seafood product preparation and packaging,,
+2015,Prince Edward Island,Employees paid by the hour,Cannabis product manufacturing,,
+2015,Prince Edward Island,Employees paid by the hour,Durable goods,,
+2015,Nova Scotia,All employees,Manufacturing,12,7.45
+2015,Nova Scotia,All employees,Non-durable goods,,4.56
+2015,Nova Scotia,All employees,Food manufacturing,,2.02
+2015,Nova Scotia,All employees,Animal food manufacturing,,
+2015,Nova Scotia,All employees,Dairy product manufacturing,,0.22
+2015,Nova Scotia,All employees,Meat product manufacturing,,
+2015,Nova Scotia,All employees,Seafood product preparation and packaging,,1.12
+2015,Nova Scotia,All employees,Bakeries and tortilla manufacturing,,0.24
+2015,Nova Scotia,All employees,Beverage and tobacco product manufacturing,,0.21
+2015,Nova Scotia,All employees,Cannabis product manufacturing,,
+2015,Nova Scotia,All employees,Fabric mills,,
+2015,Nova Scotia,All employees,Clothing manufacturing,,0.12
+2015,Nova Scotia,All employees,Paper manufacturing,,0.26
+2015,Nova Scotia,All employees,"Pulp, paper and paperboard mills",,
+2015,Nova Scotia,All employees,Printing and related support activities,,0.17
+2015,Nova Scotia,All employees,Plastics and rubber products manufacturing,,1.3
+2015,Nova Scotia,All employees,Durable goods,,2.89
+2015,Nova Scotia,All employees,Wood product manufacturing,,0.46
+2015,Nova Scotia,All employees,Sawmills and wood preservation,,0.23
+2015,Nova Scotia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.09
+2015,Nova Scotia,All employees,Other wood product manufacturing,,0.14
+2015,Nova Scotia,All employees,Non-metallic mineral product manufacturing,,0.17
+2015,Nova Scotia,All employees,Cement and concrete product manufacturing,,0.15
+2015,Nova Scotia,All employees,Other non-metallic mineral product manufacturing,,
+2015,Nova Scotia,All employees,Fabricated metal product manufacturing,,0.51
+2015,Nova Scotia,All employees,Spring and wire product manufacturing,,
+2015,Nova Scotia,All employees,Machinery manufacturing,,0.24
+2015,Nova Scotia,All employees,Commercial and service industry machinery manufacturing,,0.08
+2015,Nova Scotia,All employees,Other general-purpose machinery manufacturing,,0.03
+2015,Nova Scotia,All employees,Transportation equipment manufacturing,,0.98
+2015,Nova Scotia,All employees,Aerospace product and parts manufacturing,,0.46
+2015,Nova Scotia,All employees,Ship and boat building,,0.46
+2015,Nova Scotia,All employees,Miscellaneous manufacturing,,0.14
+2015,Nova Scotia,All employees,Medical equipment and supplies manufacturing,,0.04
+2015,Nova Scotia,All employees,Other miscellaneous manufacturing,,0.1
+2015,Nova Scotia,Salaried employees paid a fixed salary,Manufacturing,,1.82
+2015,Nova Scotia,Salaried employees paid a fixed salary,Non-durable goods,,1.1
+2015,Nova Scotia,Salaried employees paid a fixed salary,Food manufacturing,,0.41
+2015,Nova Scotia,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Paper manufacturing,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Printing and related support activities,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Durable goods,,0.72
+2015,Nova Scotia,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.18
+2015,Nova Scotia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2015,Nova Scotia,Salaried employees paid a fixed salary,Ship and boat building,,0.05
+2015,Nova Scotia,Employees paid by the hour,Manufacturing,,5.26
+2015,Nova Scotia,Employees paid by the hour,Non-durable goods,,3.26
+2015,Nova Scotia,Employees paid by the hour,Food manufacturing,,1.49
+2015,Nova Scotia,Employees paid by the hour,Animal food manufacturing,,
+2015,Nova Scotia,Employees paid by the hour,Seafood product preparation and packaging,,
+2015,Nova Scotia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2015,Nova Scotia,Employees paid by the hour,Cannabis product manufacturing,,
+2015,Nova Scotia,Employees paid by the hour,Paper manufacturing,,
+2015,Nova Scotia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2015,Nova Scotia,Employees paid by the hour,Printing and related support activities,,
+2015,Nova Scotia,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2015,Nova Scotia,Employees paid by the hour,Durable goods,,2.01
+2015,Nova Scotia,Employees paid by the hour,Wood product manufacturing,,
+2015,Nova Scotia,Employees paid by the hour,Sawmills and wood preservation,,
+2015,Nova Scotia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2015,Nova Scotia,Employees paid by the hour,Cement and concrete product manufacturing,,
+2015,Nova Scotia,Employees paid by the hour,Fabricated metal product manufacturing,,
+2015,Nova Scotia,Employees paid by the hour,Machinery manufacturing,,
+2015,Nova Scotia,Employees paid by the hour,Transportation equipment manufacturing,,0.76
+2015,Nova Scotia,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2015,Nova Scotia,Employees paid by the hour,Ship and boat building,,0.38
+2015,New Brunswick,All employees,Manufacturing,13,9.54
+2015,New Brunswick,All employees,Non-durable goods,,5.54
+2015,New Brunswick,All employees,Food manufacturing,,3.66
+2015,New Brunswick,All employees,Seafood product preparation and packaging,,1.48
+2015,New Brunswick,All employees,Beverage and tobacco product manufacturing,,0.22
+2015,New Brunswick,All employees,Cannabis product manufacturing,,
+2015,New Brunswick,All employees,"Fibre, yarn and thread mills",,
+2015,New Brunswick,All employees,Paper manufacturing,,0.85
+2015,New Brunswick,All employees,"Pulp, paper and paperboard mills",,0.7
+2015,New Brunswick,All employees,Converted paper product manufacturing,,0.15
+2015,New Brunswick,All employees,Printing and related support activities,,0.08
+2015,New Brunswick,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
+2015,New Brunswick,All employees,Durable goods,,4
+2015,New Brunswick,All employees,Wood product manufacturing,,1.42
+2015,New Brunswick,All employees,Sawmills and wood preservation,,0.82
+2015,New Brunswick,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.17
+2015,New Brunswick,All employees,Other wood product manufacturing,,0.44
+2015,New Brunswick,All employees,Non-metallic mineral product manufacturing,,0.3
+2015,New Brunswick,All employees,Other non-metallic mineral product manufacturing,,0.11
+2015,New Brunswick,All employees,Fabricated metal product manufacturing,,0.75
+2015,New Brunswick,All employees,Architectural and structural metals manufacturing,,0.48
+2015,New Brunswick,All employees,Machinery manufacturing,,0.31
+2015,New Brunswick,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.15
+2015,New Brunswick,All employees,Other general-purpose machinery manufacturing,,0.06
+2015,New Brunswick,All employees,Computer and electronic product manufacturing,,
+2015,New Brunswick,All employees,Furniture and related product manufacturing,,0.24
+2015,New Brunswick,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.22
+2015,New Brunswick,All employees,Miscellaneous manufacturing,,0.5
+2015,New Brunswick,All employees,Medical equipment and supplies manufacturing,,0.04
+2015,New Brunswick,All employees,Other miscellaneous manufacturing,,0.47
+2015,New Brunswick,Salaried employees paid a fixed salary,Manufacturing,,2.26
+2015,New Brunswick,Salaried employees paid a fixed salary,Non-durable goods,,
+2015,New Brunswick,Salaried employees paid a fixed salary,Food manufacturing,,
+2015,New Brunswick,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,New Brunswick,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2015,New Brunswick,Salaried employees paid a fixed salary,Paper manufacturing,,
+2015,New Brunswick,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2015,New Brunswick,Salaried employees paid a fixed salary,Durable goods,,1
+2015,New Brunswick,Salaried employees paid a fixed salary,Wood product manufacturing,,0.18
+2015,New Brunswick,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2015,New Brunswick,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2015,New Brunswick,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2015,New Brunswick,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2015,New Brunswick,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2015,New Brunswick,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2015,New Brunswick,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2015,New Brunswick,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2015,New Brunswick,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2015,New Brunswick,Employees paid by the hour,Manufacturing,,6.95
+2015,New Brunswick,Employees paid by the hour,Non-durable goods,,
+2015,New Brunswick,Employees paid by the hour,Food manufacturing,,
+2015,New Brunswick,Employees paid by the hour,Cannabis product manufacturing,,
+2015,New Brunswick,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2015,New Brunswick,Employees paid by the hour,Paper manufacturing,,
+2015,New Brunswick,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2015,New Brunswick,Employees paid by the hour,Durable goods,,2.84
+2015,New Brunswick,Employees paid by the hour,Wood product manufacturing,,1.19
+2015,New Brunswick,Employees paid by the hour,Sawmills and wood preservation,,
+2015,New Brunswick,Employees paid by the hour,Other wood product manufacturing,,
+2015,New Brunswick,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2015,New Brunswick,Employees paid by the hour,Fabricated metal product manufacturing,,
+2015,New Brunswick,Employees paid by the hour,Machinery manufacturing,,
+2015,New Brunswick,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2015,New Brunswick,Employees paid by the hour,Computer and electronic product manufacturing,,
+2015,New Brunswick,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2015,New Brunswick,Employees paid by the hour,Other miscellaneous manufacturing,,
+2015,Quebec,All employees,Manufacturing,24,11.57
+2015,Quebec,All employees,Non-durable goods,,4.86
+2015,Quebec,All employees,Food manufacturing,,1.61
+2015,Quebec,All employees,Animal food manufacturing,,0.07
+2015,Quebec,All employees,Grain and oilseed milling,,0.03
+2015,Quebec,All employees,Sugar and confectionery product manufacturing,,0.09
+2015,Quebec,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.13
+2015,Quebec,All employees,Dairy product manufacturing,,0.25
+2015,Quebec,All employees,Meat product manufacturing,,0.47
+2015,Quebec,All employees,Seafood product preparation and packaging,,0.04
+2015,Quebec,All employees,Bakeries and tortilla manufacturing,,0.32
+2015,Quebec,All employees,Other food manufacturing,,0.19
+2015,Quebec,All employees,Beverage and tobacco product manufacturing,,0.22
+2015,Quebec,All employees,Cannabis product manufacturing,,
+2015,Quebec,All employees,Textile mills,,0.11
+2015,Quebec,All employees,"Fibre, yarn and thread mills",,0.01
+2015,Quebec,All employees,Fabric mills,,0.08
+2015,Quebec,All employees,Textile and fabric finishing and fabric coating,,0.01
+2015,Quebec,All employees,Textile product mills,,0.09
+2015,Quebec,All employees,Textile furnishings mills,,0.04
+2015,Quebec,All employees,Other textile product mills,,0.05
+2015,Quebec,All employees,Clothing manufacturing,,0.31
+2015,Quebec,All employees,Clothing knitting mills,,0.03
+2015,Quebec,All employees,Cut and sew clothing manufacturing,,0.26
+2015,Quebec,All employees,Clothing accessories and other clothing manufacturing,,0.02
+2015,Quebec,All employees,Leather and allied product manufacturing,,0.04
+2015,Quebec,All employees,Leather and hide tanning and finishing,,0
+2015,Quebec,All employees,Footwear manufacturing,,0.03
+2015,Quebec,All employees,Other leather and allied product manufacturing,,0.01
+2015,Quebec,All employees,Paper manufacturing,,0.62
+2015,Quebec,All employees,"Pulp, paper and paperboard mills",,0.25
+2015,Quebec,All employees,Converted paper product manufacturing,,0.37
+2015,Quebec,All employees,Printing and related support activities,,0.35
+2015,Quebec,All employees,Petroleum and coal product manufacturing,,0.1
+2015,Quebec,All employees,Chemical manufacturing,,0.65
+2015,Quebec,All employees,Basic chemical manufacturing,,0.08
+2015,Quebec,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.03
+2015,Quebec,All employees,Pharmaceutical and medicine manufacturing,,0.22
+2015,Quebec,All employees,"Paint, coating and adhesive manufacturing",,0.07
+2015,Quebec,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.11
+2015,Quebec,All employees,Other chemical product manufacturing,,0.09
+2015,Quebec,All employees,Plastics and rubber products manufacturing,,0.77
+2015,Quebec,All employees,Plastic product manufacturing,,0.62
+2015,Quebec,All employees,Rubber product manufacturing,,0.15
+2015,Quebec,All employees,Durable goods,,6.7
+2015,Quebec,All employees,Wood product manufacturing,,0.8
+2015,Quebec,All employees,Sawmills and wood preservation,,0.28
+2015,Quebec,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
+2015,Quebec,All employees,Other wood product manufacturing,,0.38
+2015,Quebec,All employees,Non-metallic mineral product manufacturing,,0.42
+2015,Quebec,All employees,Clay product and refractory manufacturing,,0.02
+2015,Quebec,All employees,Glass and glass product manufacturing,,0.07
+2015,Quebec,All employees,Cement and concrete product manufacturing,,0.24
+2015,Quebec,All employees,Lime and gypsum product manufacturing,,0.02
+2015,Quebec,All employees,Other non-metallic mineral product manufacturing,,0.07
+2015,Quebec,All employees,Primary metal manufacturing,,0.46
+2015,Quebec,All employees,Iron and steel mills and ferro-alloy manufacturing,,
+2015,Quebec,All employees,Steel product manufacturing from purchased steel,,
+2015,Quebec,All employees,Alumina and aluminum production and processing,,0.17
+2015,Quebec,All employees,Non-ferrous metal (except aluminum) production and processing,,0.12
+2015,Quebec,All employees,Foundries,,0.09
+2015,Quebec,All employees,Fabricated metal product manufacturing,,1.16
+2015,Quebec,All employees,Forging and stamping,,0.07
+2015,Quebec,All employees,Cutlery and hand tool manufacturing,,0.03
+2015,Quebec,All employees,Architectural and structural metals manufacturing,,0.47
+2015,Quebec,All employees,"Boiler, tank and shipping container manufacturing",,0.07
+2015,Quebec,All employees,Hardware manufacturing,,0.01
+2015,Quebec,All employees,Spring and wire product manufacturing,,0.04
+2015,Quebec,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.26
+2015,Quebec,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2015,Quebec,All employees,Other fabricated metal product manufacturing,,0.15
+2015,Quebec,All employees,Machinery manufacturing,,0.83
+2015,Quebec,All employees,"Agricultural, construction and mining machinery manufacturing",,0.11
+2015,Quebec,All employees,Industrial machinery manufacturing,,0.13
+2015,Quebec,All employees,Commercial and service industry machinery manufacturing,,0.16
+2015,Quebec,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.13
+2015,Quebec,All employees,Metalworking machinery manufacturing,,0.06
+2015,Quebec,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.07
+2015,Quebec,All employees,Other general-purpose machinery manufacturing,,0.17
+2015,Quebec,All employees,Computer and electronic product manufacturing,,0.41
+2015,Quebec,All employees,Communications equipment manufacturing,,0.09
+2015,Quebec,All employees,Audio and video equipment manufacturing,,0.01
+2015,Quebec,All employees,Semiconductor and other electronic component manufacturing,,0.12
+2015,Quebec,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.15
+2015,Quebec,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
+2015,Quebec,All employees,"Electrical equipment, appliance and component manufacturing",,0.3
+2015,Quebec,All employees,Electric lighting equipment manufacturing,,0.06
+2015,Quebec,All employees,Household appliance manufacturing,,0.02
+2015,Quebec,All employees,Electrical equipment manufacturing,,0.13
+2015,Quebec,All employees,Other electrical equipment and component manufacturing,,0.08
+2015,Quebec,All employees,Transportation equipment manufacturing,,1.26
+2015,Quebec,All employees,Motor vehicle body and trailer manufacturing,,0.11
+2015,Quebec,All employees,Motor vehicle parts manufacturing,,0.1
+2015,Quebec,All employees,Aerospace product and parts manufacturing,,0.76
+2015,Quebec,All employees,Other transportation equipment manufacturing,,0.11
+2015,Quebec,All employees,Furniture and related product manufacturing,,0.6
+2015,Quebec,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.41
+2015,Quebec,All employees,Office furniture (including fixtures) manufacturing,,0.15
+2015,Quebec,All employees,Other furniture-related product manufacturing,,0.03
+2015,Quebec,All employees,Miscellaneous manufacturing,,0.47
+2015,Quebec,All employees,Medical equipment and supplies manufacturing,,0.13
+2015,Quebec,All employees,Other miscellaneous manufacturing,,0.35
+2015,Quebec,Salaried employees paid a fixed salary,Manufacturing,,2.98
+2015,Quebec,Salaried employees paid a fixed salary,Non-durable goods,,1.25
+2015,Quebec,Salaried employees paid a fixed salary,Food manufacturing,,0.29
+2015,Quebec,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2015,Quebec,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Other food manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Textile mills,,0.03
+2015,Quebec,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2015,Quebec,Salaried employees paid a fixed salary,Fabric mills,,
+2015,Quebec,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
+2015,Quebec,Salaried employees paid a fixed salary,Textile product mills,,
+2015,Quebec,Salaried employees paid a fixed salary,Textile furnishings mills,,
+2015,Quebec,Salaried employees paid a fixed salary,Other textile product mills,,
+2015,Quebec,Salaried employees paid a fixed salary,Clothing manufacturing,,0.08
+2015,Quebec,Salaried employees paid a fixed salary,Clothing knitting mills,,
+2015,Quebec,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Clothing accessories and other clothing manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2015,Quebec,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Paper manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2015,Quebec,Salaried employees paid a fixed salary,Printing and related support activities,,0.08
+2015,Quebec,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Chemical manufacturing,,0.3
+2015,Quebec,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2015,Quebec,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
+2015,Quebec,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2015,Quebec,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.13
+2015,Quebec,Salaried employees paid a fixed salary,Plastic product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Durable goods,,1.72
+2015,Quebec,Salaried employees paid a fixed salary,Wood product manufacturing,,0.1
+2015,Quebec,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2015,Quebec,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2015,Quebec,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.04
+2015,Quebec,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.1
+2015,Quebec,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2015,Quebec,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2015,Quebec,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2015,Quebec,Salaried employees paid a fixed salary,Foundries,,
+2015,Quebec,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.18
+2015,Quebec,Salaried employees paid a fixed salary,Forging and stamping,,
+2015,Quebec,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2015,Quebec,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Machinery manufacturing,,0.28
+2015,Quebec,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2015,Quebec,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2015,Quebec,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2015,Quebec,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Quebec,Salaried employees paid a fixed salary,Manufacturing and reproducing magnetic and optical media,,
+2015,Quebec,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2015,Quebec,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.39
+2015,Quebec,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2015,Quebec,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2015,Quebec,Employees paid by the hour,Manufacturing,,8.03
+2015,Quebec,Employees paid by the hour,Non-durable goods,,3.43
+2015,Quebec,Employees paid by the hour,Food manufacturing,,1.29
+2015,Quebec,Employees paid by the hour,Animal food manufacturing,,
+2015,Quebec,Employees paid by the hour,Grain and oilseed milling,,
+2015,Quebec,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2015,Quebec,Employees paid by the hour,Dairy product manufacturing,,
+2015,Quebec,Employees paid by the hour,Meat product manufacturing,,
+2015,Quebec,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2015,Quebec,Employees paid by the hour,Other food manufacturing,,
+2015,Quebec,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2015,Quebec,Employees paid by the hour,Cannabis product manufacturing,,
+2015,Quebec,Employees paid by the hour,Textile mills,,0.07
+2015,Quebec,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2015,Quebec,Employees paid by the hour,Fabric mills,,
+2015,Quebec,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
+2015,Quebec,Employees paid by the hour,Textile product mills,,
+2015,Quebec,Employees paid by the hour,Textile furnishings mills,,
+2015,Quebec,Employees paid by the hour,Other textile product mills,,
+2015,Quebec,Employees paid by the hour,Clothing manufacturing,,0.2
+2015,Quebec,Employees paid by the hour,Clothing knitting mills,,
+2015,Quebec,Employees paid by the hour,Cut and sew clothing manufacturing,,0.16
+2015,Quebec,Employees paid by the hour,Clothing accessories and other clothing manufacturing,,
+2015,Quebec,Employees paid by the hour,Leather and hide tanning and finishing,,
+2015,Quebec,Employees paid by the hour,Footwear manufacturing,,
+2015,Quebec,Employees paid by the hour,Other leather and allied product manufacturing,,
+2015,Quebec,Employees paid by the hour,Paper manufacturing,,
+2015,Quebec,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2015,Quebec,Employees paid by the hour,Printing and related support activities,,0.24
+2015,Quebec,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2015,Quebec,Employees paid by the hour,Chemical manufacturing,,0.33
+2015,Quebec,Employees paid by the hour,Basic chemical manufacturing,,
+2015,Quebec,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2015,Quebec,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2015,Quebec,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
+2015,Quebec,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2015,Quebec,Employees paid by the hour,Other chemical product manufacturing,,
+2015,Quebec,Employees paid by the hour,Plastics and rubber products manufacturing,,0.61
+2015,Quebec,Employees paid by the hour,Plastic product manufacturing,,
+2015,Quebec,Employees paid by the hour,Rubber product manufacturing,,
+2015,Quebec,Employees paid by the hour,Durable goods,,4.6
+2015,Quebec,Employees paid by the hour,Wood product manufacturing,,0.65
+2015,Quebec,Employees paid by the hour,Sawmills and wood preservation,,
+2015,Quebec,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.11
+2015,Quebec,Employees paid by the hour,Other wood product manufacturing,,0.3
+2015,Quebec,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.29
+2015,Quebec,Employees paid by the hour,Clay product and refractory manufacturing,,
+2015,Quebec,Employees paid by the hour,Glass and glass product manufacturing,,
+2015,Quebec,Employees paid by the hour,Cement and concrete product manufacturing,,
+2015,Quebec,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2015,Quebec,Employees paid by the hour,Primary metal manufacturing,,
+2015,Quebec,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2015,Quebec,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2015,Quebec,Employees paid by the hour,Alumina and aluminum production and processing,,
+2015,Quebec,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2015,Quebec,Employees paid by the hour,Foundries,,
+2015,Quebec,Employees paid by the hour,Fabricated metal product manufacturing,,0.88
+2015,Quebec,Employees paid by the hour,Forging and stamping,,
+2015,Quebec,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2015,Quebec,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2015,Quebec,Employees paid by the hour,Hardware manufacturing,,
+2015,Quebec,Employees paid by the hour,Spring and wire product manufacturing,,
+2015,Quebec,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2015,Quebec,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2015,Quebec,Employees paid by the hour,Machinery manufacturing,,0.51
+2015,Quebec,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2015,Quebec,Employees paid by the hour,Industrial machinery manufacturing,,
+2015,Quebec,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2015,Quebec,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2015,Quebec,Employees paid by the hour,Metalworking machinery manufacturing,,
+2015,Quebec,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2015,Quebec,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2015,Quebec,Employees paid by the hour,Communications equipment manufacturing,,
+2015,Quebec,Employees paid by the hour,Audio and video equipment manufacturing,,
+2015,Quebec,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2015,Quebec,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Quebec,Employees paid by the hour,Manufacturing and reproducing magnetic and optical media,,
+2015,Quebec,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2015,Quebec,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2015,Quebec,Employees paid by the hour,Household appliance manufacturing,,
+2015,Quebec,Employees paid by the hour,Electrical equipment manufacturing,,
+2015,Quebec,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2015,Quebec,Employees paid by the hour,Transportation equipment manufacturing,,0.84
+2015,Quebec,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2015,Quebec,Employees paid by the hour,Other transportation equipment manufacturing,,
+2015,Quebec,Employees paid by the hour,Furniture and related product manufacturing,,
+2015,Quebec,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2015,Quebec,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2015,Quebec,Employees paid by the hour,Miscellaneous manufacturing,,
+2015,Quebec,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2015,Quebec,Employees paid by the hour,Other miscellaneous manufacturing,,
+2015,Ontario,All employees,Manufacturing,35,10.95
+2015,Ontario,All employees,Non-durable goods,,4.11
+2015,Ontario,All employees,Food manufacturing,,1.35
+2015,Ontario,All employees,Animal food manufacturing,,0.06
+2015,Ontario,All employees,Grain and oilseed milling,,0.07
+2015,Ontario,All employees,Sugar and confectionery product manufacturing,,0.08
+2015,Ontario,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.11
+2015,Ontario,All employees,Dairy product manufacturing,,0.14
+2015,Ontario,All employees,Meat product manufacturing,,0.29
+2015,Ontario,All employees,Seafood product preparation and packaging,,0.01
+2015,Ontario,All employees,Bakeries and tortilla manufacturing,,0.35
+2015,Ontario,All employees,Other food manufacturing,,0.24
+2015,Ontario,All employees,Beverage and tobacco product manufacturing,,0.26
+2015,Ontario,All employees,Cannabis product manufacturing,,
+2015,Ontario,All employees,Textile mills,,0.05
+2015,Ontario,All employees,"Fibre, yarn and thread mills",,0.01
+2015,Ontario,All employees,Fabric mills,,0.02
+2015,Ontario,All employees,Textile and fabric finishing and fabric coating,,0.02
+2015,Ontario,All employees,Textile product mills,,0.07
+2015,Ontario,All employees,Textile furnishings mills,,0.02
+2015,Ontario,All employees,Other textile product mills,,0.05
+2015,Ontario,All employees,Clothing manufacturing,,0.08
+2015,Ontario,All employees,Clothing knitting mills,,0.01
+2015,Ontario,All employees,Cut and sew clothing manufacturing,,0.06
+2015,Ontario,All employees,Clothing accessories and other clothing manufacturing,,0.02
+2015,Ontario,All employees,Leather and allied product manufacturing,,0.02
+2015,Ontario,All employees,Leather and hide tanning and finishing,,0.01
+2015,Ontario,All employees,Footwear manufacturing,,0
+2015,Ontario,All employees,Other leather and allied product manufacturing,,0.01
+2015,Ontario,All employees,Paper manufacturing,,0.27
+2015,Ontario,All employees,"Pulp, paper and paperboard mills",,0.08
+2015,Ontario,All employees,Converted paper product manufacturing,,0.19
+2015,Ontario,All employees,Printing and related support activities,,0.38
+2015,Ontario,All employees,Petroleum and coal product manufacturing,,0.1
+2015,Ontario,All employees,Chemical manufacturing,,0.73
+2015,Ontario,All employees,Basic chemical manufacturing,,0.08
+2015,Ontario,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.07
+2015,Ontario,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
+2015,Ontario,All employees,Pharmaceutical and medicine manufacturing,,0.25
+2015,Ontario,All employees,"Paint, coating and adhesive manufacturing",,0.07
+2015,Ontario,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.17
+2015,Ontario,All employees,Other chemical product manufacturing,,0.09
+2015,Ontario,All employees,Plastics and rubber products manufacturing,,0.79
+2015,Ontario,All employees,Plastic product manufacturing,,0.69
+2015,Ontario,All employees,Rubber product manufacturing,,0.09
+2015,Ontario,All employees,Durable goods,,6.84
+2015,Ontario,All employees,Wood product manufacturing,,0.27
+2015,Ontario,All employees,Sawmills and wood preservation,,0.05
+2015,Ontario,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.05
+2015,Ontario,All employees,Other wood product manufacturing,,0.17
+2015,Ontario,All employees,Non-metallic mineral product manufacturing,,0.34
+2015,Ontario,All employees,Clay product and refractory manufacturing,,0.02
+2015,Ontario,All employees,Glass and glass product manufacturing,,0.06
+2015,Ontario,All employees,Cement and concrete product manufacturing,,0.19
+2015,Ontario,All employees,Lime and gypsum product manufacturing,,0.01
+2015,Ontario,All employees,Other non-metallic mineral product manufacturing,,0.06
+2015,Ontario,All employees,Primary metal manufacturing,,0.47
+2015,Ontario,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.22
+2015,Ontario,All employees,Steel product manufacturing from purchased steel,,0.06
+2015,Ontario,All employees,Alumina and aluminum production and processing,,0.05
+2015,Ontario,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
+2015,Ontario,All employees,Foundries,,0.07
+2015,Ontario,All employees,Fabricated metal product manufacturing,,1.09
+2015,Ontario,All employees,Forging and stamping,,0.06
+2015,Ontario,All employees,Cutlery and hand tool manufacturing,,0.03
+2015,Ontario,All employees,Architectural and structural metals manufacturing,,0.36
+2015,Ontario,All employees,"Boiler, tank and shipping container manufacturing",,0.07
+2015,Ontario,All employees,Hardware manufacturing,,0.06
+2015,Ontario,All employees,Spring and wire product manufacturing,,0.03
+2015,Ontario,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.24
+2015,Ontario,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.09
+2015,Ontario,All employees,Other fabricated metal product manufacturing,,0.15
+2015,Ontario,All employees,Machinery manufacturing,,1.01
+2015,Ontario,All employees,"Agricultural, construction and mining machinery manufacturing",,0.13
+2015,Ontario,All employees,Industrial machinery manufacturing,,0.11
+2015,Ontario,All employees,Commercial and service industry machinery manufacturing,,0.12
+2015,Ontario,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
+2015,Ontario,All employees,Metalworking machinery manufacturing,,0.27
+2015,Ontario,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.06
+2015,Ontario,All employees,Other general-purpose machinery manufacturing,,0.25
+2015,Ontario,All employees,Computer and electronic product manufacturing,,0.5
+2015,Ontario,All employees,Computer and peripheral equipment manufacturing,,0.05
+2015,Ontario,All employees,Communications equipment manufacturing,,0.15
+2015,Ontario,All employees,Audio and video equipment manufacturing,,0.01
+2015,Ontario,All employees,Semiconductor and other electronic component manufacturing,,0.1
+2015,Ontario,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.17
+2015,Ontario,All employees,"Electrical equipment, appliance and component manufacturing",,0.27
+2015,Ontario,All employees,Electric lighting equipment manufacturing,,0.03
+2015,Ontario,All employees,Household appliance manufacturing,,0.02
+2015,Ontario,All employees,Electrical equipment manufacturing,,0.13
+2015,Ontario,All employees,Other electrical equipment and component manufacturing,,0.09
+2015,Ontario,All employees,Transportation equipment manufacturing,,2.03
+2015,Ontario,All employees,Motor vehicle manufacturing,,0.59
+2015,Ontario,All employees,Motor vehicle body and trailer manufacturing,,0.06
+2015,Ontario,All employees,Motor vehicle parts manufacturing,,1.07
+2015,Ontario,All employees,Aerospace product and parts manufacturing,,0.19
+2015,Ontario,All employees,Railroad rolling stock manufacturing,,0.05
+2015,Ontario,All employees,Furniture and related product manufacturing,,0.46
+2015,Ontario,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
+2015,Ontario,All employees,Office furniture (including fixtures) manufacturing,,0.22
+2015,Ontario,All employees,Other furniture-related product manufacturing,,0.03
+2015,Ontario,All employees,Miscellaneous manufacturing,,0.4
+2015,Ontario,All employees,Medical equipment and supplies manufacturing,,0.14
+2015,Ontario,All employees,Other miscellaneous manufacturing,,0.26
+2015,Ontario,Salaried employees paid a fixed salary,Manufacturing,,3.08
+2015,Ontario,Salaried employees paid a fixed salary,Non-durable goods,,1.31
+2015,Ontario,Salaried employees paid a fixed salary,Food manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2015,Ontario,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Other food manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Textile mills,,0.01
+2015,Ontario,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2015,Ontario,Salaried employees paid a fixed salary,Fabric mills,,
+2015,Ontario,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0.01
+2015,Ontario,Salaried employees paid a fixed salary,Textile furnishings mills,,
+2015,Ontario,Salaried employees paid a fixed salary,Other textile product mills,,
+2015,Ontario,Salaried employees paid a fixed salary,Clothing manufacturing,,0.02
+2015,Ontario,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
+2015,Ontario,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2015,Ontario,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Paper manufacturing,,0.1
+2015,Ontario,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2015,Ontario,Salaried employees paid a fixed salary,Printing and related support activities,,0.1
+2015,Ontario,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Chemical manufacturing,,0.41
+2015,Ontario,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2015,Ontario,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2015,Ontario,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
+2015,Ontario,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2015,Ontario,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.18
+2015,Ontario,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.16
+2015,Ontario,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Durable goods,,1.77
+2015,Ontario,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2015,Ontario,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2015,Ontario,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.02
+2015,Ontario,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2015,Ontario,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2015,Ontario,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2015,Ontario,Salaried employees paid a fixed salary,Foundries,,
+2015,Ontario,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.21
+2015,Ontario,Salaried employees paid a fixed salary,Forging and stamping,,
+2015,Ontario,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2015,Ontario,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2015,Ontario,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
+2015,Ontario,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Machinery manufacturing,,0.33
+2015,Ontario,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2015,Ontario,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2015,Ontario,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2015,Ontario,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.32
+2015,Ontario,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Ontario,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2015,Ontario,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Railroad rolling stock manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2015,Ontario,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2015,Ontario,Employees paid by the hour,Manufacturing,,7.35
+2015,Ontario,Employees paid by the hour,Non-durable goods,,2.63
+2015,Ontario,Employees paid by the hour,Food manufacturing,,
+2015,Ontario,Employees paid by the hour,Animal food manufacturing,,
+2015,Ontario,Employees paid by the hour,Grain and oilseed milling,,
+2015,Ontario,Employees paid by the hour,Sugar and confectionery product manufacturing,,
+2015,Ontario,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2015,Ontario,Employees paid by the hour,Dairy product manufacturing,,
+2015,Ontario,Employees paid by the hour,Meat product manufacturing,,
+2015,Ontario,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2015,Ontario,Employees paid by the hour,Other food manufacturing,,
+2015,Ontario,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2015,Ontario,Employees paid by the hour,Cannabis product manufacturing,,
+2015,Ontario,Employees paid by the hour,Textile mills,,0.03
+2015,Ontario,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2015,Ontario,Employees paid by the hour,Fabric mills,,
+2015,Ontario,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
+2015,Ontario,Employees paid by the hour,Textile furnishings mills,,
+2015,Ontario,Employees paid by the hour,Other textile product mills,,
+2015,Ontario,Employees paid by the hour,Clothing manufacturing,,0.05
+2015,Ontario,Employees paid by the hour,Leather and allied product manufacturing,,0.01
+2015,Ontario,Employees paid by the hour,Leather and hide tanning and finishing,,
+2015,Ontario,Employees paid by the hour,Footwear manufacturing,,
+2015,Ontario,Employees paid by the hour,Other leather and allied product manufacturing,,
+2015,Ontario,Employees paid by the hour,Paper manufacturing,,0.17
+2015,Ontario,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2015,Ontario,Employees paid by the hour,Printing and related support activities,,0.25
+2015,Ontario,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2015,Ontario,Employees paid by the hour,Chemical manufacturing,,0.3
+2015,Ontario,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2015,Ontario,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2015,Ontario,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
+2015,Ontario,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2015,Ontario,Employees paid by the hour,Other chemical product manufacturing,,
+2015,Ontario,Employees paid by the hour,Plastics and rubber products manufacturing,,0.57
+2015,Ontario,Employees paid by the hour,Plastic product manufacturing,,0.5
+2015,Ontario,Employees paid by the hour,Rubber product manufacturing,,
+2015,Ontario,Employees paid by the hour,Durable goods,,4.72
+2015,Ontario,Employees paid by the hour,Wood product manufacturing,,
+2015,Ontario,Employees paid by the hour,Sawmills and wood preservation,,
+2015,Ontario,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2015,Ontario,Employees paid by the hour,Other wood product manufacturing,,0.13
+2015,Ontario,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2015,Ontario,Employees paid by the hour,Clay product and refractory manufacturing,,
+2015,Ontario,Employees paid by the hour,Glass and glass product manufacturing,,
+2015,Ontario,Employees paid by the hour,Cement and concrete product manufacturing,,
+2015,Ontario,Employees paid by the hour,Lime and gypsum product manufacturing,,
+2015,Ontario,Employees paid by the hour,Primary metal manufacturing,,
+2015,Ontario,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2015,Ontario,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2015,Ontario,Employees paid by the hour,Alumina and aluminum production and processing,,
+2015,Ontario,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2015,Ontario,Employees paid by the hour,Foundries,,
+2015,Ontario,Employees paid by the hour,Fabricated metal product manufacturing,,0.79
+2015,Ontario,Employees paid by the hour,Forging and stamping,,
+2015,Ontario,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2015,Ontario,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2015,Ontario,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2015,Ontario,Employees paid by the hour,Hardware manufacturing,,
+2015,Ontario,Employees paid by the hour,Spring and wire product manufacturing,,
+2015,Ontario,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2015,Ontario,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
+2015,Ontario,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2015,Ontario,Employees paid by the hour,Machinery manufacturing,,0.62
+2015,Ontario,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2015,Ontario,Employees paid by the hour,Industrial machinery manufacturing,,
+2015,Ontario,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2015,Ontario,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2015,Ontario,Employees paid by the hour,Metalworking machinery manufacturing,,
+2015,Ontario,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2015,Ontario,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2015,Ontario,Employees paid by the hour,Computer and electronic product manufacturing,,0.17
+2015,Ontario,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
+2015,Ontario,Employees paid by the hour,Communications equipment manufacturing,,
+2015,Ontario,Employees paid by the hour,Audio and video equipment manufacturing,,
+2015,Ontario,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2015,Ontario,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Ontario,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2015,Ontario,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2015,Ontario,Employees paid by the hour,Household appliance manufacturing,,
+2015,Ontario,Employees paid by the hour,Electrical equipment manufacturing,,
+2015,Ontario,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2015,Ontario,Employees paid by the hour,Transportation equipment manufacturing,,
+2015,Ontario,Employees paid by the hour,Motor vehicle manufacturing,,
+2015,Ontario,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2015,Ontario,Employees paid by the hour,Motor vehicle parts manufacturing,,
+2015,Ontario,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2015,Ontario,Employees paid by the hour,Railroad rolling stock manufacturing,,
+2015,Ontario,Employees paid by the hour,Furniture and related product manufacturing,,
+2015,Ontario,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2015,Ontario,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2015,Ontario,Employees paid by the hour,Miscellaneous manufacturing,,
+2015,Ontario,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2015,Ontario,Employees paid by the hour,Other miscellaneous manufacturing,,
+2015,Manitoba,All employees,Manufacturing,46,9.35
+2015,Manitoba,All employees,Non-durable goods,,3.86
+2015,Manitoba,All employees,Food manufacturing,,1.71
+2015,Manitoba,All employees,Animal food manufacturing,,
+2015,Manitoba,All employees,Meat product manufacturing,,0.89
+2015,Manitoba,All employees,Bakeries and tortilla manufacturing,,0.19
+2015,Manitoba,All employees,Beverage and tobacco product manufacturing,,0.14
+2015,Manitoba,All employees,Cannabis product manufacturing,,
+2015,Manitoba,All employees,Textile and fabric finishing and fabric coating,,
+2015,Manitoba,All employees,Other textile product mills,,
+2015,Manitoba,All employees,Cut and sew clothing manufacturing,,0.12
+2015,Manitoba,All employees,Leather and hide tanning and finishing,,
+2015,Manitoba,All employees,Paper manufacturing,,0.18
+2015,Manitoba,All employees,"Pulp, paper and paperboard mills",,
+2015,Manitoba,All employees,Printing and related support activities,,0.54
+2015,Manitoba,All employees,Chemical manufacturing,,0.44
+2015,Manitoba,All employees,Basic chemical manufacturing,,0.06
+2015,Manitoba,All employees,Durable goods,,5.49
+2015,Manitoba,All employees,Wood product manufacturing,,0.39
+2015,Manitoba,All employees,Sawmills and wood preservation,,
+2015,Manitoba,All employees,"Veneer, plywood and engineered wood product manufacturing",,
+2015,Manitoba,All employees,Other wood product manufacturing,,0.27
+2015,Manitoba,All employees,Non-metallic mineral product manufacturing,,0.24
+2015,Manitoba,All employees,Cement and concrete product manufacturing,,0.19
+2015,Manitoba,All employees,Other non-metallic mineral product manufacturing,,0.02
+2015,Manitoba,All employees,Primary metal manufacturing,,0.6
+2015,Manitoba,All employees,Foundries,,0.13
+2015,Manitoba,All employees,Fabricated metal product manufacturing,,0.75
+2015,Manitoba,All employees,Architectural and structural metals manufacturing,,0.31
+2015,Manitoba,All employees,"Boiler, tank and shipping container manufacturing",,0.13
+2015,Manitoba,All employees,Spring and wire product manufacturing,,0.02
+2015,Manitoba,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.05
+2015,Manitoba,All employees,Machinery manufacturing,,1.06
+2015,Manitoba,All employees,"Agricultural, construction and mining machinery manufacturing",,0.68
+2015,Manitoba,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
+2015,Manitoba,All employees,Other general-purpose machinery manufacturing,,0.16
+2015,Manitoba,All employees,Computer and electronic product manufacturing,,0.08
+2015,Manitoba,All employees,Semiconductor and other electronic component manufacturing,,0.03
+2015,Manitoba,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Manitoba,All employees,Electrical equipment manufacturing,,0.1
+2015,Manitoba,All employees,Transportation equipment manufacturing,,1.45
+2015,Manitoba,All employees,Motor vehicle body and trailer manufacturing,,0.22
+2015,Manitoba,All employees,Aerospace product and parts manufacturing,,0.73
+2015,Manitoba,All employees,Furniture and related product manufacturing,,0.52
+2015,Manitoba,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.46
+2015,Manitoba,All employees,Office furniture (including fixtures) manufacturing,,0.04
+2015,Manitoba,All employees,Other furniture-related product manufacturing,,0.01
+2015,Manitoba,All employees,Miscellaneous manufacturing,,0.3
+2015,Manitoba,All employees,Medical equipment and supplies manufacturing,,0.09
+2015,Manitoba,All employees,Other miscellaneous manufacturing,,0.22
+2015,Manitoba,Salaried employees paid a fixed salary,Manufacturing,,2.5
+2015,Manitoba,Salaried employees paid a fixed salary,Non-durable goods,,0.87
+2015,Manitoba,Salaried employees paid a fixed salary,Food manufacturing,,0.28
+2015,Manitoba,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
+2015,Manitoba,Salaried employees paid a fixed salary,Other textile product mills,,
+2015,Manitoba,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Paper manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2015,Manitoba,Salaried employees paid a fixed salary,Printing and related support activities,,
+2015,Manitoba,Salaried employees paid a fixed salary,Chemical manufacturing,,0.2
+2015,Manitoba,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Durable goods,,1.63
+2015,Manitoba,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2015,Manitoba,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2015,Manitoba,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.14
+2015,Manitoba,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Machinery manufacturing,,0.29
+2015,Manitoba,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2015,Manitoba,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2015,Manitoba,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Manitoba,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.62
+2015,Manitoba,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.05
+2015,Manitoba,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.04
+2015,Manitoba,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2015,Manitoba,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2015,Manitoba,Employees paid by the hour,Manufacturing,,6.48
+2015,Manitoba,Employees paid by the hour,Non-durable goods,,2.86
+2015,Manitoba,Employees paid by the hour,Food manufacturing,,1.39
+2015,Manitoba,Employees paid by the hour,Animal food manufacturing,,
+2015,Manitoba,Employees paid by the hour,Meat product manufacturing,,
+2015,Manitoba,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2015,Manitoba,Employees paid by the hour,Cannabis product manufacturing,,
+2015,Manitoba,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
+2015,Manitoba,Employees paid by the hour,Other textile product mills,,
+2015,Manitoba,Employees paid by the hour,Clothing manufacturing,,
+2015,Manitoba,Employees paid by the hour,Cut and sew clothing manufacturing,,
+2015,Manitoba,Employees paid by the hour,Leather and hide tanning and finishing,,
+2015,Manitoba,Employees paid by the hour,Paper manufacturing,,
+2015,Manitoba,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2015,Manitoba,Employees paid by the hour,Printing and related support activities,,
+2015,Manitoba,Employees paid by the hour,Chemical manufacturing,,0.22
+2015,Manitoba,Employees paid by the hour,Basic chemical manufacturing,,
+2015,Manitoba,Employees paid by the hour,Durable goods,,3.62
+2015,Manitoba,Employees paid by the hour,Wood product manufacturing,,
+2015,Manitoba,Employees paid by the hour,Sawmills and wood preservation,,
+2015,Manitoba,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2015,Manitoba,Employees paid by the hour,Other wood product manufacturing,,
+2015,Manitoba,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2015,Manitoba,Employees paid by the hour,Cement and concrete product manufacturing,,
+2015,Manitoba,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2015,Manitoba,Employees paid by the hour,Primary metal manufacturing,,
+2015,Manitoba,Employees paid by the hour,Fabricated metal product manufacturing,,0.54
+2015,Manitoba,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2015,Manitoba,Employees paid by the hour,Machinery manufacturing,,0.73
+2015,Manitoba,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2015,Manitoba,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2015,Manitoba,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2015,Manitoba,Employees paid by the hour,Computer and electronic product manufacturing,,
+2015,Manitoba,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Manitoba,Employees paid by the hour,Electrical equipment manufacturing,,
+2015,Manitoba,Employees paid by the hour,Transportation equipment manufacturing,,0.81
+2015,Manitoba,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2015,Manitoba,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2015,Manitoba,Employees paid by the hour,Furniture and related product manufacturing,,0.44
+2015,Manitoba,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.4
+2015,Manitoba,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2015,Manitoba,Employees paid by the hour,Other furniture-related product manufacturing,,
+2015,Manitoba,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2015,Manitoba,Employees paid by the hour,Other miscellaneous manufacturing,,
+2015,Saskatchewan,All employees,Manufacturing,47,5.1
+2015,Saskatchewan,All employees,Non-durable goods,,1.78
+2015,Saskatchewan,All employees,Food manufacturing,,0.82
+2015,Saskatchewan,All employees,Animal food manufacturing,,0.09
+2015,Saskatchewan,All employees,Grain and oilseed milling,,0.18
+2015,Saskatchewan,All employees,Meat product manufacturing,,0.33
+2015,Saskatchewan,All employees,Beverage and tobacco product manufacturing,,0.13
+2015,Saskatchewan,All employees,Cannabis product manufacturing,,
+2015,Saskatchewan,All employees,Printing and related support activities,,0.13
+2015,Saskatchewan,All employees,Chemical manufacturing,,0.28
+2015,Saskatchewan,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.14
+2015,Saskatchewan,All employees,Durable goods,,3.32
+2015,Saskatchewan,All employees,Wood product manufacturing,,0.32
+2015,Saskatchewan,All employees,Sawmills and wood preservation,,0.1
+2015,Saskatchewan,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.12
+2015,Saskatchewan,All employees,Other wood product manufacturing,,0.1
+2015,Saskatchewan,All employees,Cement and concrete product manufacturing,,0.19
+2015,Saskatchewan,All employees,Fabricated metal product manufacturing,,0.7
+2015,Saskatchewan,All employees,Architectural and structural metals manufacturing,,0.3
+2015,Saskatchewan,All employees,"Coating, engraving, cold and heat treating and allied activities",,
+2015,Saskatchewan,All employees,Machinery manufacturing,,1.13
+2015,Saskatchewan,All employees,"Agricultural, construction and mining machinery manufacturing",,0.81
+2015,Saskatchewan,All employees,Computer and electronic product manufacturing,,
+2015,Saskatchewan,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Saskatchewan,All employees,Motor vehicle body and trailer manufacturing,,0.17
+2015,Saskatchewan,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.15
+2015,Saskatchewan,All employees,Miscellaneous manufacturing,,0.14
+2015,Saskatchewan,All employees,Medical equipment and supplies manufacturing,,0.06
+2015,Saskatchewan,All employees,Other miscellaneous manufacturing,,0.08
+2015,Saskatchewan,Salaried employees paid a fixed salary,Manufacturing,,1.41
+2015,Saskatchewan,Salaried employees paid a fixed salary,Non-durable goods,,0.59
+2015,Saskatchewan,Salaried employees paid a fixed salary,Food manufacturing,,0.16
+2015,Saskatchewan,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2015,Saskatchewan,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2015,Saskatchewan,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,Saskatchewan,Salaried employees paid a fixed salary,Printing and related support activities,,
+2015,Saskatchewan,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2015,Saskatchewan,Salaried employees paid a fixed salary,Durable goods,,0.82
+2015,Saskatchewan,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.12
+2015,Saskatchewan,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2015,Saskatchewan,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2015,Saskatchewan,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2015,Saskatchewan,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2015,Saskatchewan,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Saskatchewan,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.04
+2015,Saskatchewan,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2015,Saskatchewan,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2015,Saskatchewan,Employees paid by the hour,Manufacturing,,3.47
+2015,Saskatchewan,Employees paid by the hour,Non-durable goods,,1.11
+2015,Saskatchewan,Employees paid by the hour,Food manufacturing,,0.62
+2015,Saskatchewan,Employees paid by the hour,Grain and oilseed milling,,
+2015,Saskatchewan,Employees paid by the hour,Meat product manufacturing,,
+2015,Saskatchewan,Employees paid by the hour,Cannabis product manufacturing,,
+2015,Saskatchewan,Employees paid by the hour,Printing and related support activities,,
+2015,Saskatchewan,Employees paid by the hour,Chemical manufacturing,,
+2015,Saskatchewan,Employees paid by the hour,Durable goods,,2.37
+2015,Saskatchewan,Employees paid by the hour,Fabricated metal product manufacturing,,0.54
+2015,Saskatchewan,Employees paid by the hour,Machinery manufacturing,,
+2015,Saskatchewan,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2015,Saskatchewan,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2015,Saskatchewan,Employees paid by the hour,Computer and electronic product manufacturing,,
+2015,Saskatchewan,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Saskatchewan,Employees paid by the hour,Transportation equipment manufacturing,,0.17
+2015,Saskatchewan,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2015,Saskatchewan,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2015,Alberta,All employees,Manufacturing,48,6.44
+2015,Alberta,All employees,Non-durable goods,,2.54
+2015,Alberta,All employees,Food manufacturing,,0.91
+2015,Alberta,All employees,Animal food manufacturing,,0.07
+2015,Alberta,All employees,Grain and oilseed milling,,0.04
+2015,Alberta,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.04
+2015,Alberta,All employees,Meat product manufacturing,,0.43
+2015,Alberta,All employees,Bakeries and tortilla manufacturing,,0.14
+2015,Alberta,All employees,Other food manufacturing,,0.13
+2015,Alberta,All employees,Beverage and tobacco product manufacturing,,0.12
+2015,Alberta,All employees,Cannabis product manufacturing,,
+2015,Alberta,All employees,Cut and sew clothing manufacturing,,
+2015,Alberta,All employees,Other leather and allied product manufacturing,,
+2015,Alberta,All employees,Paper manufacturing,,0.17
+2015,Alberta,All employees,"Pulp, paper and paperboard mills",,0.14
+2015,Alberta,All employees,Converted paper product manufacturing,,0.03
+2015,Alberta,All employees,Printing and related support activities,,0.23
+2015,Alberta,All employees,Petroleum and coal product manufacturing,,0.29
+2015,Alberta,All employees,Chemical manufacturing,,0.5
+2015,Alberta,All employees,Basic chemical manufacturing,,0.14
+2015,Alberta,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.14
+2015,Alberta,All employees,Other chemical product manufacturing,,0.09
+2015,Alberta,All employees,Plastics and rubber products manufacturing,,0.28
+2015,Alberta,All employees,Durable goods,,3.9
+2015,Alberta,All employees,Wood product manufacturing,,0.51
+2015,Alberta,All employees,Sawmills and wood preservation,,0.18
+2015,Alberta,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
+2015,Alberta,All employees,Other wood product manufacturing,,0.19
+2015,Alberta,All employees,Non-metallic mineral product manufacturing,,0.31
+2015,Alberta,All employees,Glass and glass product manufacturing,,
+2015,Alberta,All employees,Cement and concrete product manufacturing,,0.2
+2015,Alberta,All employees,Other non-metallic mineral product manufacturing,,0.06
+2015,Alberta,All employees,Primary metal manufacturing,,0.15
+2015,Alberta,All employees,Fabricated metal product manufacturing,,1.17
+2015,Alberta,All employees,Forging and stamping,,
+2015,Alberta,All employees,Architectural and structural metals manufacturing,,0.48
+2015,Alberta,All employees,"Boiler, tank and shipping container manufacturing",,0.18
+2015,Alberta,All employees,Spring and wire product manufacturing,,0.03
+2015,Alberta,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.21
+2015,Alberta,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.09
+2015,Alberta,All employees,Other fabricated metal product manufacturing,,0.17
+2015,Alberta,All employees,Machinery manufacturing,,0.96
+2015,Alberta,All employees,"Agricultural, construction and mining machinery manufacturing",,0.53
+2015,Alberta,All employees,Industrial machinery manufacturing,,0.02
+2015,Alberta,All employees,Commercial and service industry machinery manufacturing,,0.02
+2015,Alberta,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
+2015,Alberta,All employees,Metalworking machinery manufacturing,,0.04
+2015,Alberta,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.02
+2015,Alberta,All employees,Other general-purpose machinery manufacturing,,0.26
+2015,Alberta,All employees,Computer and electronic product manufacturing,,0.16
+2015,Alberta,All employees,Computer and peripheral equipment manufacturing,,0.02
+2015,Alberta,All employees,Communications equipment manufacturing,,0.02
+2015,Alberta,All employees,Semiconductor and other electronic component manufacturing,,0.03
+2015,Alberta,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.09
+2015,Alberta,All employees,"Electrical equipment, appliance and component manufacturing",,0.12
+2015,Alberta,All employees,Electrical equipment manufacturing,,0.07
+2015,Alberta,All employees,Other electrical equipment and component manufacturing,,0.04
+2015,Alberta,All employees,Transportation equipment manufacturing,,0.11
+2015,Alberta,All employees,Motor vehicle body and trailer manufacturing,,0.06
+2015,Alberta,All employees,Motor vehicle parts manufacturing,,0.02
+2015,Alberta,All employees,Aerospace product and parts manufacturing,,
+2015,Alberta,All employees,Furniture and related product manufacturing,,0.19
+2015,Alberta,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.12
+2015,Alberta,All employees,Office furniture (including fixtures) manufacturing,,0.04
+2015,Alberta,All employees,Other furniture-related product manufacturing,,0.03
+2015,Alberta,All employees,Miscellaneous manufacturing,,0.23
+2015,Alberta,All employees,Medical equipment and supplies manufacturing,,0.09
+2015,Alberta,All employees,Other miscellaneous manufacturing,,0.14
+2015,Alberta,Salaried employees paid a fixed salary,Manufacturing,,2.24
+2015,Alberta,Salaried employees paid a fixed salary,Non-durable goods,,
+2015,Alberta,Salaried employees paid a fixed salary,Food manufacturing,,0.18
+2015,Alberta,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2015,Alberta,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Paper manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2015,Alberta,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Printing and related support activities,,
+2015,Alberta,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2015,Alberta,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.07
+2015,Alberta,Salaried employees paid a fixed salary,Durable goods,,1.07
+2015,Alberta,Salaried employees paid a fixed salary,Wood product manufacturing,,0.08
+2015,Alberta,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2015,Alberta,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.03
+2015,Alberta,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.25
+2015,Alberta,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.1
+2015,Alberta,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2015,Alberta,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2015,Alberta,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2015,Alberta,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2015,Alberta,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Alberta,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2015,Alberta,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2015,Alberta,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2015,Alberta,Employees paid by the hour,Manufacturing,,3.98
+2015,Alberta,Employees paid by the hour,Non-durable goods,,
+2015,Alberta,Employees paid by the hour,Food manufacturing,,0.7
+2015,Alberta,Employees paid by the hour,Grain and oilseed milling,,
+2015,Alberta,Employees paid by the hour,Meat product manufacturing,,
+2015,Alberta,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2015,Alberta,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2015,Alberta,Employees paid by the hour,Cannabis product manufacturing,,
+2015,Alberta,Employees paid by the hour,Paper manufacturing,,
+2015,Alberta,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2015,Alberta,Employees paid by the hour,Converted paper product manufacturing,,
+2015,Alberta,Employees paid by the hour,Printing and related support activities,,
+2015,Alberta,Employees paid by the hour,Chemical manufacturing,,
+2015,Alberta,Employees paid by the hour,Basic chemical manufacturing,,
+2015,Alberta,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2015,Alberta,Employees paid by the hour,Other chemical product manufacturing,,
+2015,Alberta,Employees paid by the hour,Plastics and rubber products manufacturing,,0.2
+2015,Alberta,Employees paid by the hour,Durable goods,,2.62
+2015,Alberta,Employees paid by the hour,Wood product manufacturing,,0.4
+2015,Alberta,Employees paid by the hour,Sawmills and wood preservation,,
+2015,Alberta,Employees paid by the hour,Other wood product manufacturing,,0.15
+2015,Alberta,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2015,Alberta,Employees paid by the hour,Cement and concrete product manufacturing,,
+2015,Alberta,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2015,Alberta,Employees paid by the hour,Fabricated metal product manufacturing,,0.85
+2015,Alberta,Employees paid by the hour,Architectural and structural metals manufacturing,,0.35
+2015,Alberta,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2015,Alberta,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2015,Alberta,Employees paid by the hour,Machinery manufacturing,,
+2015,Alberta,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2015,Alberta,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2015,Alberta,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2015,Alberta,Employees paid by the hour,Computer and electronic product manufacturing,,
+2015,Alberta,Employees paid by the hour,Communications equipment manufacturing,,
+2015,Alberta,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,Alberta,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2015,Alberta,Employees paid by the hour,Electrical equipment manufacturing,,
+2015,Alberta,Employees paid by the hour,Transportation equipment manufacturing,,
+2015,Alberta,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2015,Alberta,Employees paid by the hour,Motor vehicle parts manufacturing,,
+2015,Alberta,Employees paid by the hour,Furniture and related product manufacturing,,
+2015,Alberta,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2015,Alberta,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2015,Alberta,Employees paid by the hour,Other furniture-related product manufacturing,,
+2015,Alberta,Employees paid by the hour,Miscellaneous manufacturing,,
+2015,Alberta,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2015,Alberta,Employees paid by the hour,Other miscellaneous manufacturing,,
+2015,British Columbia,All employees,Manufacturing,59,6.9
+2015,British Columbia,All employees,Non-durable goods,,2.8
+2015,British Columbia,All employees,Food manufacturing,,1.2
+2015,British Columbia,All employees,Animal food manufacturing,,0.04
+2015,British Columbia,All employees,Grain and oilseed milling,,0.01
+2015,British Columbia,All employees,Sugar and confectionery product manufacturing,,0.06
+2015,British Columbia,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.07
+2015,British Columbia,All employees,Dairy product manufacturing,,0.11
+2015,British Columbia,All employees,Meat product manufacturing,,0.23
+2015,British Columbia,All employees,Seafood product preparation and packaging,,0.18
+2015,British Columbia,All employees,Bakeries and tortilla manufacturing,,0.28
+2015,British Columbia,All employees,Other food manufacturing,,0.22
+2015,British Columbia,All employees,Beverage and tobacco product manufacturing,,0.26
+2015,British Columbia,All employees,Cannabis product manufacturing,,
+2015,British Columbia,All employees,Fabric mills,,
+2015,British Columbia,All employees,Textile product mills,,0.04
+2015,British Columbia,All employees,Textile furnishings mills,,0.01
+2015,British Columbia,All employees,Other textile product mills,,0.03
+2015,British Columbia,All employees,Clothing manufacturing,,0.1
+2015,British Columbia,All employees,Cut and sew clothing manufacturing,,0.08
+2015,British Columbia,All employees,Other leather and allied product manufacturing,,0
+2015,British Columbia,All employees,Paper manufacturing,,0.41
+2015,British Columbia,All employees,"Pulp, paper and paperboard mills",,0.31
+2015,British Columbia,All employees,Converted paper product manufacturing,,0.1
+2015,British Columbia,All employees,Printing and related support activities,,0.21
+2015,British Columbia,All employees,Petroleum and coal product manufacturing,,0.04
+2015,British Columbia,All employees,Chemical manufacturing,,0.27
+2015,British Columbia,All employees,Basic chemical manufacturing,,0.03
+2015,British Columbia,All employees,Pharmaceutical and medicine manufacturing,,0.1
+2015,British Columbia,All employees,"Paint, coating and adhesive manufacturing",,0.03
+2015,British Columbia,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.05
+2015,British Columbia,All employees,Other chemical product manufacturing,,0.03
+2015,British Columbia,All employees,Plastics and rubber products manufacturing,,0.26
+2015,British Columbia,All employees,Plastic product manufacturing,,
+2015,British Columbia,All employees,Durable goods,,4.1
+2015,British Columbia,All employees,Wood product manufacturing,,1.27
+2015,British Columbia,All employees,Sawmills and wood preservation,,0.72
+2015,British Columbia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.22
+2015,British Columbia,All employees,Other wood product manufacturing,,0.33
+2015,British Columbia,All employees,Non-metallic mineral product manufacturing,,0.28
+2015,British Columbia,All employees,Glass and glass product manufacturing,,0.06
+2015,British Columbia,All employees,Cement and concrete product manufacturing,,0.16
+2015,British Columbia,All employees,Other non-metallic mineral product manufacturing,,0.03
+2015,British Columbia,All employees,Primary metal manufacturing,,0.19
+2015,British Columbia,All employees,Fabricated metal product manufacturing,,0.56
+2015,British Columbia,All employees,Forging and stamping,,0.01
+2015,British Columbia,All employees,Cutlery and hand tool manufacturing,,0.01
+2015,British Columbia,All employees,Architectural and structural metals manufacturing,,0.29
+2015,British Columbia,All employees,"Boiler, tank and shipping container manufacturing",,0.03
+2015,British Columbia,All employees,Spring and wire product manufacturing,,0.01
+2015,British Columbia,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.1
+2015,British Columbia,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
+2015,British Columbia,All employees,Other fabricated metal product manufacturing,,0.06
+2015,British Columbia,All employees,Machinery manufacturing,,0.42
+2015,British Columbia,All employees,"Agricultural, construction and mining machinery manufacturing",,0.06
+2015,British Columbia,All employees,Industrial machinery manufacturing,,0.08
+2015,British Columbia,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
+2015,British Columbia,All employees,Metalworking machinery manufacturing,,0.04
+2015,British Columbia,All employees,Other general-purpose machinery manufacturing,,0.11
+2015,British Columbia,All employees,Computer and electronic product manufacturing,,0.27
+2015,British Columbia,All employees,Computer and peripheral equipment manufacturing,,0.04
+2015,British Columbia,All employees,Communications equipment manufacturing,,0.04
+2015,British Columbia,All employees,Semiconductor and other electronic component manufacturing,,0.07
+2015,British Columbia,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.11
+2015,British Columbia,All employees,"Electrical equipment, appliance and component manufacturing",,0.15
+2015,British Columbia,All employees,Electrical equipment manufacturing,,0.04
+2015,British Columbia,All employees,Other electrical equipment and component manufacturing,,0.08
+2015,British Columbia,All employees,Transportation equipment manufacturing,,0.34
+2015,British Columbia,All employees,Motor vehicle body and trailer manufacturing,,0.08
+2015,British Columbia,All employees,Aerospace product and parts manufacturing,,0.1
+2015,British Columbia,All employees,Ship and boat building,,0.08
+2015,British Columbia,All employees,Furniture and related product manufacturing,,0.3
+2015,British Columbia,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.24
+2015,British Columbia,All employees,Office furniture (including fixtures) manufacturing,,0.03
+2015,British Columbia,All employees,Other furniture-related product manufacturing,,0.03
+2015,British Columbia,All employees,Miscellaneous manufacturing,,0.32
+2015,British Columbia,All employees,Medical equipment and supplies manufacturing,,0.1
+2015,British Columbia,All employees,Other miscellaneous manufacturing,,0.22
+2015,British Columbia,Salaried employees paid a fixed salary,Manufacturing,,1.68
+2015,British Columbia,Salaried employees paid a fixed salary,Non-durable goods,,0.71
+2015,British Columbia,Salaried employees paid a fixed salary,Food manufacturing,,0.18
+2015,British Columbia,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2015,British Columbia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Paper manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2015,British Columbia,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Printing and related support activities,,
+2015,British Columbia,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2015,British Columbia,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Plastic product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Durable goods,,0.97
+2015,British Columbia,Salaried employees paid a fixed salary,Wood product manufacturing,,0.2
+2015,British Columbia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.11
+2015,British Columbia,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2015,British Columbia,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.1
+2015,British Columbia,Salaried employees paid a fixed salary,Forging and stamping,,
+2015,British Columbia,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2015,British Columbia,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2015,British Columbia,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2015,British Columbia,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,British Columbia,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.07
+2015,British Columbia,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Ship and boat building,,
+2015,British Columbia,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2015,British Columbia,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2015,British Columbia,Employees paid by the hour,Manufacturing,,4.87
+2015,British Columbia,Employees paid by the hour,Non-durable goods,,1.97
+2015,British Columbia,Employees paid by the hour,Food manufacturing,,0.98
+2015,British Columbia,Employees paid by the hour,Animal food manufacturing,,
+2015,British Columbia,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2015,British Columbia,Employees paid by the hour,Meat product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Seafood product preparation and packaging,,
+2015,British Columbia,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.22
+2015,British Columbia,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Cannabis product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Clothing manufacturing,,
+2015,British Columbia,Employees paid by the hour,Other leather and allied product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Paper manufacturing,,
+2015,British Columbia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2015,British Columbia,Employees paid by the hour,Converted paper product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Printing and related support activities,,
+2015,British Columbia,Employees paid by the hour,Basic chemical manufacturing,,
+2015,British Columbia,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2015,British Columbia,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2015,British Columbia,Employees paid by the hour,Other chemical product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2015,British Columbia,Employees paid by the hour,Plastic product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Durable goods,,2.9
+2015,British Columbia,Employees paid by the hour,Wood product manufacturing,,1.02
+2015,British Columbia,Employees paid by the hour,Sawmills and wood preservation,,0.58
+2015,British Columbia,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2015,British Columbia,Employees paid by the hour,Other wood product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Glass and glass product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Cement and concrete product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Primary metal manufacturing,,
+2015,British Columbia,Employees paid by the hour,Fabricated metal product manufacturing,,0.41
+2015,British Columbia,Employees paid by the hour,Forging and stamping,,
+2015,British Columbia,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2015,British Columbia,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2015,British Columbia,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2015,British Columbia,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2015,British Columbia,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Machinery manufacturing,,
+2015,British Columbia,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2015,British Columbia,Employees paid by the hour,Industrial machinery manufacturing,,
+2015,British Columbia,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2015,British Columbia,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2015,British Columbia,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2015,British Columbia,Employees paid by the hour,Electrical equipment manufacturing,,
+2015,British Columbia,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2015,British Columbia,Employees paid by the hour,Transportation equipment manufacturing,,0.26
+2015,British Columbia,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2015,British Columbia,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2015,British Columbia,Employees paid by the hour,Ship and boat building,,
+2015,British Columbia,Employees paid by the hour,Furniture and related product manufacturing,,
+2015,British Columbia,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2015,British Columbia,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2015,British Columbia,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2015,British Columbia,Employees paid by the hour,Other miscellaneous manufacturing,,
+2015,Yukon,All employees,Cannabis product manufacturing,,
+2015,Yukon,All employees,Durable goods,,
+2015,Yukon,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,Yukon,Salaried employees paid a fixed salary,Durable goods,,
+2015,Yukon,Employees paid by the hour,Cannabis product manufacturing,,
+2015,Yukon,Employees paid by the hour,Durable goods,,
+2015,Northwest Territories,All employees,Cannabis product manufacturing,,
+2015,Northwest Territories,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,Northwest Territories,Employees paid by the hour,Cannabis product manufacturing,,
+2015,Nunavut,All employees,Cannabis product manufacturing,,
+2015,Nunavut,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2015,Nunavut,Employees paid by the hour,Cannabis product manufacturing,,
+2016,Canada,All employees,Non-durable goods,,3.8
+2016,Canada,All employees,Food manufacturing,,1.39
+2016,Canada,All employees,Animal food manufacturing,,0.06
+2016,Canada,All employees,Grain and oilseed milling,,0.04
+2016,Canada,All employees,Sugar and confectionery product manufacturing,,0.06
+2016,Canada,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.11
+2016,Canada,All employees,Dairy product manufacturing,,0.14
+2016,Canada,All employees,Meat product manufacturing,,0.35
+2016,Canada,All employees,Seafood product preparation and packaging,,0.14
+2016,Canada,All employees,Bakeries and tortilla manufacturing,,0.28
+2016,Canada,All employees,Other food manufacturing,,0.19
+2016,Canada,All employees,Beverage and tobacco product manufacturing,,0.23
+2016,Canada,All employees,Beverage manufacturing,,0.22
+2016,Canada,All employees,Tobacco manufacturing,,0.02
+2016,Canada,All employees,Cannabis product manufacturing,,
+2016,Canada,All employees,Textile mills,,0.05
+2016,Canada,All employees,"Fibre, yarn and thread mills",,0.01
+2016,Canada,All employees,Fabric mills,,0.03
+2016,Canada,All employees,Textile and fabric finishing and fabric coating,,0.01
+2016,Canada,All employees,Textile product mills,,0.06
+2016,Canada,All employees,Textile furnishings mills,,0.02
+2016,Canada,All employees,Other textile product mills,,0.04
+2016,Canada,All employees,Clothing manufacturing,,0.12
+2016,Canada,All employees,Clothing knitting mills,,0.01
+2016,Canada,All employees,Cut and sew clothing manufacturing,,0.1
+2016,Canada,All employees,Clothing accessories and other clothing manufacturing,,0.01
+2016,Canada,All employees,Leather and allied product manufacturing,,0.02
+2016,Canada,All employees,Leather and hide tanning and finishing,,0
+2016,Canada,All employees,Footwear manufacturing,,0.01
+2016,Canada,All employees,Other leather and allied product manufacturing,,0.01
+2016,Canada,All employees,Paper manufacturing,,0.33
+2016,Canada,All employees,"Pulp, paper and paperboard mills",,0.15
+2016,Canada,All employees,Converted paper product manufacturing,,0.19
+2016,Canada,All employees,Printing and related support activities,,0.31
+2016,Canada,All employees,Petroleum and coal product manufacturing,,0.12
+2016,Canada,All employees,Chemical manufacturing,,0.56
+2016,Canada,All employees,Basic chemical manufacturing,,0.07
+2016,Canada,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.04
+2016,Canada,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
+2016,Canada,All employees,Pharmaceutical and medicine manufacturing,,0.18
+2016,Canada,All employees,"Paint, coating and adhesive manufacturing",,0.05
+2016,Canada,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.1
+2016,Canada,All employees,Other chemical product manufacturing,,0.07
+2016,Canada,All employees,Plastics and rubber products manufacturing,,0.61
+2016,Canada,All employees,Plastic product manufacturing,,0.51
+2016,Canada,All employees,Rubber product manufacturing,,0.1
+2016,Canada,All employees,Durable goods,,5.48
+2016,Canada,All employees,Wood product manufacturing,,0.58
+2016,Canada,All employees,Sawmills and wood preservation,,0.23
+2016,Canada,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.11
+2016,Canada,All employees,Other wood product manufacturing,,0.24
+2016,Canada,All employees,Non-metallic mineral product manufacturing,,0.31
+2016,Canada,All employees,Clay product and refractory manufacturing,,0.01
+2016,Canada,All employees,Glass and glass product manufacturing,,0.05
+2016,Canada,All employees,Cement and concrete product manufacturing,,0.18
+2016,Canada,All employees,Lime and gypsum product manufacturing,,0.01
+2016,Canada,All employees,Other non-metallic mineral product manufacturing,,0.06
+2016,Canada,All employees,Primary metal manufacturing,,0.34
+2016,Canada,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.1
+2016,Canada,All employees,Steel product manufacturing from purchased steel,,0.04
+2016,Canada,All employees,Alumina and aluminum production and processing,,0.06
+2016,Canada,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
+2016,Canada,All employees,Foundries,,0.06
+2016,Canada,All employees,Fabricated metal product manufacturing,,0.95
+2016,Canada,All employees,Forging and stamping,,0.04
+2016,Canada,All employees,Cutlery and hand tool manufacturing,,0.02
+2016,Canada,All employees,Architectural and structural metals manufacturing,,0.37
+2016,Canada,All employees,"Boiler, tank and shipping container manufacturing",,0.07
+2016,Canada,All employees,Hardware manufacturing,,0.03
+2016,Canada,All employees,Spring and wire product manufacturing,,0.03
+2016,Canada,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.2
+2016,Canada,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2016,Canada,All employees,Other fabricated metal product manufacturing,,0.13
+2016,Canada,All employees,Machinery manufacturing,,0.8
+2016,Canada,All employees,"Agricultural, construction and mining machinery manufacturing",,0.17
+2016,Canada,All employees,Industrial machinery manufacturing,,0.09
+2016,Canada,All employees,Commercial and service industry machinery manufacturing,,0.09
+2016,Canada,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.09
+2016,Canada,All employees,Metalworking machinery manufacturing,,0.13
+2016,Canada,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.04
+2016,Canada,All employees,Other general-purpose machinery manufacturing,,0.18
+2016,Canada,All employees,Computer and electronic product manufacturing,,0.35
+2016,Canada,All employees,Computer and peripheral equipment manufacturing,,0.03
+2016,Canada,All employees,Communications equipment manufacturing,,0.08
+2016,Canada,All employees,Audio and video equipment manufacturing,,0.01
+2016,Canada,All employees,Semiconductor and other electronic component manufacturing,,0.09
+2016,Canada,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.12
+2016,Canada,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
+2016,Canada,All employees,"Electrical equipment, appliance and component manufacturing",,0.2
+2016,Canada,All employees,Electric lighting equipment manufacturing,,0.03
+2016,Canada,All employees,Household appliance manufacturing,,0.01
+2016,Canada,All employees,Electrical equipment manufacturing,,0.09
+2016,Canada,All employees,Other electrical equipment and component manufacturing,,0.07
+2016,Canada,All employees,Transportation equipment manufacturing,,1.2
+2016,Canada,All employees,Motor vehicle manufacturing,,0.27
+2016,Canada,All employees,Motor vehicle body and trailer manufacturing,,0.08
+2016,Canada,All employees,Motor vehicle parts manufacturing,,0.45
+2016,Canada,All employees,Aerospace product and parts manufacturing,,0.29
+2016,Canada,All employees,Railroad rolling stock manufacturing,,0.02
+2016,Canada,All employees,Ship and boat building,,0.05
+2016,Canada,All employees,Other transportation equipment manufacturing,,0.05
+2016,Canada,All employees,Furniture and related product manufacturing,,0.41
+2016,Canada,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.25
+2016,Canada,All employees,Office furniture (including fixtures) manufacturing,,0.13
+2016,Canada,All employees,Other furniture-related product manufacturing,,0.03
+2016,Canada,All employees,Miscellaneous manufacturing,,0.35
+2016,Canada,All employees,Medical equipment and supplies manufacturing,,0.11
+2016,Canada,All employees,Other miscellaneous manufacturing,,0.24
+2016,Canada,Salaried employees paid a fixed salary,Manufacturing,,2.49
+2016,Canada,Salaried employees paid a fixed salary,Non-durable goods,,1.11
+2016,Canada,Salaried employees paid a fixed salary,Food manufacturing,,0.27
+2016,Canada,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2016,Canada,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,0.03
+2016,Canada,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.05
+2016,Canada,Salaried employees paid a fixed salary,Other food manufacturing,,0.04
+2016,Canada,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Beverage manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Tobacco manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Textile mills,,0.01
+2016,Canada,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,0
+2016,Canada,Salaried employees paid a fixed salary,Fabric mills,,0.01
+2016,Canada,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
+2016,Canada,Salaried employees paid a fixed salary,Textile product mills,,0.01
+2016,Canada,Salaried employees paid a fixed salary,Clothing manufacturing,,0.03
+2016,Canada,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,0.02
+2016,Canada,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
+2016,Canada,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2016,Canada,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Paper manufacturing,,0.13
+2016,Canada,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2016,Canada,Salaried employees paid a fixed salary,Printing and related support activities,,0.07
+2016,Canada,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Chemical manufacturing,,0.27
+2016,Canada,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2016,Canada,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2016,Canada,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,0.04
+2016,Canada,Salaried employees paid a fixed salary,Other chemical product manufacturing,,0.03
+2016,Canada,Salaried employees paid a fixed salary,Rubber product manufacturing,,0.02
+2016,Canada,Salaried employees paid a fixed salary,Durable goods,,1.38
+2016,Canada,Salaried employees paid a fixed salary,Wood product manufacturing,,0.08
+2016,Canada,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.03
+2016,Canada,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,0.02
+2016,Canada,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.02
+2016,Canada,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.07
+2016,Canada,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,0.04
+2016,Canada,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.09
+2016,Canada,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2016,Canada,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2016,Canada,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2016,Canada,Salaried employees paid a fixed salary,Foundries,,0.01
+2016,Canada,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.22
+2016,Canada,Salaried employees paid a fixed salary,Forging and stamping,,
+2016,Canada,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.09
+2016,Canada,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,0.02
+2016,Canada,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
+2016,Canada,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,0.02
+2016,Canada,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,0.03
+2016,Canada,Salaried employees paid a fixed salary,Machinery manufacturing,,0.23
+2016,Canada,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,0.04
+2016,Canada,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2016,Canada,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,0.03
+2016,Canada,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2016,Canada,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,0.05
+2016,Canada,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.18
+2016,Canada,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Communications equipment manufacturing,,0.04
+2016,Canada,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,0.04
+2016,Canada,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,0.07
+2016,Canada,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.09
+2016,Canada,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.25
+2016,Canada,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,0.09
+2016,Canada,Salaried employees paid a fixed salary,Ship and boat building,,
+2016,Canada,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.06
+2016,Canada,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.03
+2016,Canada,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,0.02
+2016,Canada,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.1
+2016,Canada,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2016,Canada,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.06
+2016,Canada,Employees paid by the hour,Manufacturing,,6.41
+2016,Canada,Employees paid by the hour,Non-durable goods,,2.57
+2016,Canada,Employees paid by the hour,Food manufacturing,,1.09
+2016,Canada,Employees paid by the hour,Animal food manufacturing,,
+2016,Canada,Employees paid by the hour,Grain and oilseed milling,,
+2016,Canada,Employees paid by the hour,Sugar and confectionery product manufacturing,,
+2016,Canada,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2016,Canada,Employees paid by the hour,Dairy product manufacturing,,
+2016,Canada,Employees paid by the hour,Meat product manufacturing,,0.29
+2016,Canada,Employees paid by the hour,Seafood product preparation and packaging,,0.11
+2016,Canada,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.22
+2016,Canada,Employees paid by the hour,Other food manufacturing,,0.14
+2016,Canada,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2016,Canada,Employees paid by the hour,Beverage manufacturing,,
+2016,Canada,Employees paid by the hour,Tobacco manufacturing,,
+2016,Canada,Employees paid by the hour,Cannabis product manufacturing,,
+2016,Canada,Employees paid by the hour,Textile mills,,0.03
+2016,Canada,Employees paid by the hour,"Fibre, yarn and thread mills",,0.01
+2016,Canada,Employees paid by the hour,Fabric mills,,0.02
+2016,Canada,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
+2016,Canada,Employees paid by the hour,Textile product mills,,0.04
+2016,Canada,Employees paid by the hour,Clothing manufacturing,,0.08
+2016,Canada,Employees paid by the hour,Cut and sew clothing manufacturing,,0.06
+2016,Canada,Employees paid by the hour,Leather and allied product manufacturing,,0.02
+2016,Canada,Employees paid by the hour,Leather and hide tanning and finishing,,
+2016,Canada,Employees paid by the hour,Footwear manufacturing,,0.01
+2016,Canada,Employees paid by the hour,Other leather and allied product manufacturing,,
+2016,Canada,Employees paid by the hour,Paper manufacturing,,0.2
+2016,Canada,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2016,Canada,Employees paid by the hour,Printing and related support activities,,0.22
+2016,Canada,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2016,Canada,Employees paid by the hour,Chemical manufacturing,,0.28
+2016,Canada,Employees paid by the hour,Basic chemical manufacturing,,
+2016,Canada,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2016,Canada,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2016,Canada,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2016,Canada,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,0.06
+2016,Canada,Employees paid by the hour,Other chemical product manufacturing,,0.04
+2016,Canada,Employees paid by the hour,Rubber product manufacturing,,0.08
+2016,Canada,Employees paid by the hour,Durable goods,,3.84
+2016,Canada,Employees paid by the hour,Wood product manufacturing,,0.47
+2016,Canada,Employees paid by the hour,Sawmills and wood preservation,,0.19
+2016,Canada,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.09
+2016,Canada,Employees paid by the hour,Other wood product manufacturing,,0.19
+2016,Canada,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.23
+2016,Canada,Employees paid by the hour,Clay product and refractory manufacturing,,
+2016,Canada,Employees paid by the hour,Glass and glass product manufacturing,,
+2016,Canada,Employees paid by the hour,Cement and concrete product manufacturing,,0.14
+2016,Canada,Employees paid by the hour,Lime and gypsum product manufacturing,,
+2016,Canada,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2016,Canada,Employees paid by the hour,Primary metal manufacturing,,0.24
+2016,Canada,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2016,Canada,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2016,Canada,Employees paid by the hour,Alumina and aluminum production and processing,,
+2016,Canada,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2016,Canada,Employees paid by the hour,Foundries,,0.04
+2016,Canada,Employees paid by the hour,Fabricated metal product manufacturing,,0.66
+2016,Canada,Employees paid by the hour,Forging and stamping,,
+2016,Canada,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2016,Canada,Employees paid by the hour,Architectural and structural metals manufacturing,,0.25
+2016,Canada,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,0.05
+2016,Canada,Employees paid by the hour,Hardware manufacturing,,
+2016,Canada,Employees paid by the hour,Spring and wire product manufacturing,,
+2016,Canada,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.15
+2016,Canada,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,0.05
+2016,Canada,Employees paid by the hour,Other fabricated metal product manufacturing,,0.08
+2016,Canada,Employees paid by the hour,Machinery manufacturing,,0.55
+2016,Canada,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,0.13
+2016,Canada,Employees paid by the hour,Industrial machinery manufacturing,,
+2016,Canada,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2016,Canada,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2016,Canada,Employees paid by the hour,Metalworking machinery manufacturing,,0.09
+2016,Canada,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2016,Canada,Employees paid by the hour,Other general-purpose machinery manufacturing,,0.12
+2016,Canada,Employees paid by the hour,Computer and electronic product manufacturing,,0.15
+2016,Canada,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
+2016,Canada,Employees paid by the hour,Communications equipment manufacturing,,0.04
+2016,Canada,Employees paid by the hour,Audio and video equipment manufacturing,,
+2016,Canada,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,0.04
+2016,Canada,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Canada,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.1
+2016,Canada,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2016,Canada,Employees paid by the hour,Household appliance manufacturing,,
+2016,Canada,Employees paid by the hour,Electrical equipment manufacturing,,
+2016,Canada,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2016,Canada,Employees paid by the hour,Transportation equipment manufacturing,,0.93
+2016,Canada,Employees paid by the hour,Motor vehicle manufacturing,,
+2016,Canada,Employees paid by the hour,Motor vehicle parts manufacturing,,
+2016,Canada,Employees paid by the hour,Aerospace product and parts manufacturing,,0.2
+2016,Canada,Employees paid by the hour,Ship and boat building,,
+2016,Canada,Employees paid by the hour,Other transportation equipment manufacturing,,
+2016,Canada,Employees paid by the hour,Furniture and related product manufacturing,,0.32
+2016,Canada,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.2
+2016,Canada,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,0.1
+2016,Canada,Employees paid by the hour,Other furniture-related product manufacturing,,
+2016,Canada,Employees paid by the hour,Miscellaneous manufacturing,,0.2
+2016,Canada,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2016,Canada,Employees paid by the hour,Other miscellaneous manufacturing,,0.14
+2016,Newfoundland and Labrador,All employees,Manufacturing,10,5.45
+2016,Newfoundland and Labrador,All employees,Non-durable goods,,4.28
+2016,Newfoundland and Labrador,All employees,Food manufacturing,,3.26
+2016,Newfoundland and Labrador,All employees,Seafood product preparation and packaging,,2.71
+2016,Newfoundland and Labrador,All employees,Cannabis product manufacturing,,
+2016,Newfoundland and Labrador,All employees,Durable goods,,1.17
+2016,Newfoundland and Labrador,All employees,Sawmills and wood preservation,,
+2016,Newfoundland and Labrador,All employees,Ship and boat building,,
+2016,Newfoundland and Labrador,All employees,Other miscellaneous manufacturing,,
+2016,Newfoundland and Labrador,Salaried employees paid a fixed salary,Manufacturing,,
+2016,Newfoundland and Labrador,Salaried employees paid a fixed salary,Non-durable goods,,
+2016,Newfoundland and Labrador,Salaried employees paid a fixed salary,Food manufacturing,,
+2016,Newfoundland and Labrador,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,Newfoundland and Labrador,Salaried employees paid a fixed salary,Durable goods,,0.23
+2016,Newfoundland and Labrador,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2016,Newfoundland and Labrador,Employees paid by the hour,Manufacturing,,
+2016,Newfoundland and Labrador,Employees paid by the hour,Non-durable goods,,
+2016,Newfoundland and Labrador,Employees paid by the hour,Food manufacturing,,
+2016,Newfoundland and Labrador,Employees paid by the hour,Cannabis product manufacturing,,
+2016,Newfoundland and Labrador,Employees paid by the hour,Durable goods,,0.88
+2016,Newfoundland and Labrador,Employees paid by the hour,Other miscellaneous manufacturing,,
+2016,Prince Edward Island,All employees,Manufacturing,11,7.58
+2016,Prince Edward Island,All employees,Non-durable goods,,5.06
+2016,Prince Edward Island,All employees,Food manufacturing,,3.56
+2016,Prince Edward Island,All employees,Seafood product preparation and packaging,,
+2016,Prince Edward Island,All employees,Cannabis product manufacturing,,
+2016,Prince Edward Island,All employees,Printing and related support activities,,0.15
+2016,Prince Edward Island,All employees,Durable goods,,2.52
+2016,Prince Edward Island,Salaried employees paid a fixed salary,Manufacturing,,2.72
+2016,Prince Edward Island,Salaried employees paid a fixed salary,Food manufacturing,,
+2016,Prince Edward Island,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2016,Prince Edward Island,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,Prince Edward Island,Salaried employees paid a fixed salary,Durable goods,,0.99
+2016,Prince Edward Island,Employees paid by the hour,Manufacturing,,4.67
+2016,Prince Edward Island,Employees paid by the hour,Food manufacturing,,
+2016,Prince Edward Island,Employees paid by the hour,Seafood product preparation and packaging,,
+2016,Prince Edward Island,Employees paid by the hour,Cannabis product manufacturing,,
+2016,Prince Edward Island,Employees paid by the hour,Durable goods,,1.38
+2016,Nova Scotia,All employees,Manufacturing,12,7.35
+2016,Nova Scotia,All employees,Non-durable goods,,4.58
+2016,Nova Scotia,All employees,Food manufacturing,,2.12
+2016,Nova Scotia,All employees,Animal food manufacturing,,
+2016,Nova Scotia,All employees,Dairy product manufacturing,,0.19
+2016,Nova Scotia,All employees,Meat product manufacturing,,0.12
+2016,Nova Scotia,All employees,Seafood product preparation and packaging,,1.28
+2016,Nova Scotia,All employees,Bakeries and tortilla manufacturing,,0.2
+2016,Nova Scotia,All employees,Beverage and tobacco product manufacturing,,0.24
+2016,Nova Scotia,All employees,Cannabis product manufacturing,,
+2016,Nova Scotia,All employees,Fabric mills,,
+2016,Nova Scotia,All employees,Clothing manufacturing,,0.09
+2016,Nova Scotia,All employees,Paper manufacturing,,0.24
+2016,Nova Scotia,All employees,"Pulp, paper and paperboard mills",,
+2016,Nova Scotia,All employees,Printing and related support activities,,0.19
+2016,Nova Scotia,All employees,Plastics and rubber products manufacturing,,1.18
+2016,Nova Scotia,All employees,Durable goods,,2.76
+2016,Nova Scotia,All employees,Wood product manufacturing,,0.47
+2016,Nova Scotia,All employees,Sawmills and wood preservation,,0.24
+2016,Nova Scotia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.1
+2016,Nova Scotia,All employees,Other wood product manufacturing,,0.12
+2016,Nova Scotia,All employees,Non-metallic mineral product manufacturing,,0.14
+2016,Nova Scotia,All employees,Cement and concrete product manufacturing,,0.11
+2016,Nova Scotia,All employees,Other non-metallic mineral product manufacturing,,
+2016,Nova Scotia,All employees,Fabricated metal product manufacturing,,0.49
+2016,Nova Scotia,All employees,Spring and wire product manufacturing,,0.02
+2016,Nova Scotia,All employees,Machinery manufacturing,,0.22
+2016,Nova Scotia,All employees,Commercial and service industry machinery manufacturing,,0.07
+2016,Nova Scotia,All employees,Other general-purpose machinery manufacturing,,0.04
+2016,Nova Scotia,All employees,Transportation equipment manufacturing,,0.95
+2016,Nova Scotia,All employees,Aerospace product and parts manufacturing,,0.41
+2016,Nova Scotia,All employees,Ship and boat building,,0.51
+2016,Nova Scotia,All employees,Miscellaneous manufacturing,,0.14
+2016,Nova Scotia,All employees,Medical equipment and supplies manufacturing,,0.04
+2016,Nova Scotia,All employees,Other miscellaneous manufacturing,,0.1
+2016,Nova Scotia,Salaried employees paid a fixed salary,Manufacturing,,1.81
+2016,Nova Scotia,Salaried employees paid a fixed salary,Non-durable goods,,0.98
+2016,Nova Scotia,Salaried employees paid a fixed salary,Food manufacturing,,0.29
+2016,Nova Scotia,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2016,Nova Scotia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2016,Nova Scotia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2016,Nova Scotia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,Nova Scotia,Salaried employees paid a fixed salary,Paper manufacturing,,
+2016,Nova Scotia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2016,Nova Scotia,Salaried employees paid a fixed salary,Printing and related support activities,,
+2016,Nova Scotia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2016,Nova Scotia,Salaried employees paid a fixed salary,Durable goods,,0.83
+2016,Nova Scotia,Salaried employees paid a fixed salary,Wood product manufacturing,,0.06
+2016,Nova Scotia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.04
+2016,Nova Scotia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2016,Nova Scotia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2016,Nova Scotia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.11
+2016,Nova Scotia,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2016,Nova Scotia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2016,Nova Scotia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2016,Nova Scotia,Salaried employees paid a fixed salary,Ship and boat building,,
+2016,Nova Scotia,Employees paid by the hour,Manufacturing,,5.17
+2016,Nova Scotia,Employees paid by the hour,Non-durable goods,,3.36
+2016,Nova Scotia,Employees paid by the hour,Food manufacturing,,1.69
+2016,Nova Scotia,Employees paid by the hour,Animal food manufacturing,,
+2016,Nova Scotia,Employees paid by the hour,Seafood product preparation and packaging,,
+2016,Nova Scotia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2016,Nova Scotia,Employees paid by the hour,Cannabis product manufacturing,,
+2016,Nova Scotia,Employees paid by the hour,Paper manufacturing,,
+2016,Nova Scotia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2016,Nova Scotia,Employees paid by the hour,Printing and related support activities,,
+2016,Nova Scotia,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2016,Nova Scotia,Employees paid by the hour,Durable goods,,1.81
+2016,Nova Scotia,Employees paid by the hour,Wood product manufacturing,,0.38
+2016,Nova Scotia,Employees paid by the hour,Sawmills and wood preservation,,0.2
+2016,Nova Scotia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2016,Nova Scotia,Employees paid by the hour,Cement and concrete product manufacturing,,
+2016,Nova Scotia,Employees paid by the hour,Fabricated metal product manufacturing,,0.35
+2016,Nova Scotia,Employees paid by the hour,Machinery manufacturing,,
+2016,Nova Scotia,Employees paid by the hour,Transportation equipment manufacturing,,
+2016,Nova Scotia,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2016,Nova Scotia,Employees paid by the hour,Ship and boat building,,
+2016,New Brunswick,All employees,Manufacturing,13,9.48
+2016,New Brunswick,All employees,Non-durable goods,,5.49
+2016,New Brunswick,All employees,Food manufacturing,,3.56
+2016,New Brunswick,All employees,Seafood product preparation and packaging,,1.45
+2016,New Brunswick,All employees,Beverage and tobacco product manufacturing,,0.23
+2016,New Brunswick,All employees,Cannabis product manufacturing,,
+2016,New Brunswick,All employees,"Fibre, yarn and thread mills",,
+2016,New Brunswick,All employees,Paper manufacturing,,0.87
+2016,New Brunswick,All employees,"Pulp, paper and paperboard mills",,0.71
+2016,New Brunswick,All employees,Converted paper product manufacturing,,0.17
+2016,New Brunswick,All employees,Printing and related support activities,,0.08
+2016,New Brunswick,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
+2016,New Brunswick,All employees,Durable goods,,3.99
+2016,New Brunswick,All employees,Wood product manufacturing,,1.48
+2016,New Brunswick,All employees,Sawmills and wood preservation,,0.79
+2016,New Brunswick,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.18
+2016,New Brunswick,All employees,Other wood product manufacturing,,0.51
+2016,New Brunswick,All employees,Non-metallic mineral product manufacturing,,0.28
+2016,New Brunswick,All employees,Other non-metallic mineral product manufacturing,,0.11
+2016,New Brunswick,All employees,Fabricated metal product manufacturing,,0.66
+2016,New Brunswick,All employees,Architectural and structural metals manufacturing,,0.43
+2016,New Brunswick,All employees,Machinery manufacturing,,0.3
+2016,New Brunswick,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.13
+2016,New Brunswick,All employees,Other general-purpose machinery manufacturing,,0.07
+2016,New Brunswick,All employees,Computer and electronic product manufacturing,,
+2016,New Brunswick,All employees,Furniture and related product manufacturing,,0.24
+2016,New Brunswick,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.22
+2016,New Brunswick,All employees,Miscellaneous manufacturing,,0.5
+2016,New Brunswick,All employees,Medical equipment and supplies manufacturing,,0.04
+2016,New Brunswick,All employees,Other miscellaneous manufacturing,,0.46
+2016,New Brunswick,Salaried employees paid a fixed salary,Manufacturing,,2.28
+2016,New Brunswick,Salaried employees paid a fixed salary,Non-durable goods,,
+2016,New Brunswick,Salaried employees paid a fixed salary,Food manufacturing,,
+2016,New Brunswick,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,New Brunswick,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2016,New Brunswick,Salaried employees paid a fixed salary,Paper manufacturing,,
+2016,New Brunswick,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2016,New Brunswick,Salaried employees paid a fixed salary,Durable goods,,0.87
+2016,New Brunswick,Salaried employees paid a fixed salary,Wood product manufacturing,,0.19
+2016,New Brunswick,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2016,New Brunswick,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.06
+2016,New Brunswick,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2016,New Brunswick,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.16
+2016,New Brunswick,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2016,New Brunswick,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2016,New Brunswick,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2016,New Brunswick,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2016,New Brunswick,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.22
+2016,New Brunswick,Employees paid by the hour,Manufacturing,,6.87
+2016,New Brunswick,Employees paid by the hour,Non-durable goods,,
+2016,New Brunswick,Employees paid by the hour,Food manufacturing,,
+2016,New Brunswick,Employees paid by the hour,Cannabis product manufacturing,,
+2016,New Brunswick,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2016,New Brunswick,Employees paid by the hour,Paper manufacturing,,
+2016,New Brunswick,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2016,New Brunswick,Employees paid by the hour,Durable goods,,2.9
+2016,New Brunswick,Employees paid by the hour,Wood product manufacturing,,1.21
+2016,New Brunswick,Employees paid by the hour,Sawmills and wood preservation,,
+2016,New Brunswick,Employees paid by the hour,Other wood product manufacturing,,0.42
+2016,New Brunswick,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2016,New Brunswick,Employees paid by the hour,Fabricated metal product manufacturing,,0.46
+2016,New Brunswick,Employees paid by the hour,Machinery manufacturing,,
+2016,New Brunswick,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2016,New Brunswick,Employees paid by the hour,Computer and electronic product manufacturing,,
+2016,New Brunswick,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2016,New Brunswick,Employees paid by the hour,Other miscellaneous manufacturing,,0.21
+2016,Quebec,All employees,Manufacturing,24,11.49
+2016,Quebec,All employees,Non-durable goods,,4.81
+2016,Quebec,All employees,Food manufacturing,,1.63
+2016,Quebec,All employees,Animal food manufacturing,,0.07
+2016,Quebec,All employees,Grain and oilseed milling,,0.03
+2016,Quebec,All employees,Sugar and confectionery product manufacturing,,0.1
+2016,Quebec,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.12
+2016,Quebec,All employees,Dairy product manufacturing,,0.24
+2016,Quebec,All employees,Meat product manufacturing,,0.48
+2016,Quebec,All employees,Seafood product preparation and packaging,,0.04
+2016,Quebec,All employees,Bakeries and tortilla manufacturing,,0.32
+2016,Quebec,All employees,Other food manufacturing,,0.21
+2016,Quebec,All employees,Beverage and tobacco product manufacturing,,0.23
+2016,Quebec,All employees,Cannabis product manufacturing,,
+2016,Quebec,All employees,Textile mills,,0.1
+2016,Quebec,All employees,"Fibre, yarn and thread mills",,0.01
+2016,Quebec,All employees,Fabric mills,,0.08
+2016,Quebec,All employees,Textile and fabric finishing and fabric coating,,0.01
+2016,Quebec,All employees,Textile product mills,,0.08
+2016,Quebec,All employees,Textile furnishings mills,,0.04
+2016,Quebec,All employees,Other textile product mills,,0.05
+2016,Quebec,All employees,Clothing manufacturing,,0.3
+2016,Quebec,All employees,Clothing knitting mills,,0.03
+2016,Quebec,All employees,Cut and sew clothing manufacturing,,0.24
+2016,Quebec,All employees,Clothing accessories and other clothing manufacturing,,0.02
+2016,Quebec,All employees,Leather and allied product manufacturing,,0.04
+2016,Quebec,All employees,Leather and hide tanning and finishing,,0
+2016,Quebec,All employees,Footwear manufacturing,,0.03
+2016,Quebec,All employees,Other leather and allied product manufacturing,,0.01
+2016,Quebec,All employees,Paper manufacturing,,0.58
+2016,Quebec,All employees,"Pulp, paper and paperboard mills",,0.22
+2016,Quebec,All employees,Converted paper product manufacturing,,0.36
+2016,Quebec,All employees,Printing and related support activities,,0.34
+2016,Quebec,All employees,Petroleum and coal product manufacturing,,0.11
+2016,Quebec,All employees,Chemical manufacturing,,0.65
+2016,Quebec,All employees,Basic chemical manufacturing,,0.08
+2016,Quebec,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.02
+2016,Quebec,All employees,Pharmaceutical and medicine manufacturing,,0.23
+2016,Quebec,All employees,"Paint, coating and adhesive manufacturing",,0.07
+2016,Quebec,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.11
+2016,Quebec,All employees,Other chemical product manufacturing,,0.09
+2016,Quebec,All employees,Plastics and rubber products manufacturing,,0.76
+2016,Quebec,All employees,Plastic product manufacturing,,0.61
+2016,Quebec,All employees,Rubber product manufacturing,,0.15
+2016,Quebec,All employees,Durable goods,,6.68
+2016,Quebec,All employees,Wood product manufacturing,,0.79
+2016,Quebec,All employees,Sawmills and wood preservation,,0.27
+2016,Quebec,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
+2016,Quebec,All employees,Other wood product manufacturing,,0.38
+2016,Quebec,All employees,Non-metallic mineral product manufacturing,,0.39
+2016,Quebec,All employees,Clay product and refractory manufacturing,,0.01
+2016,Quebec,All employees,Glass and glass product manufacturing,,0.07
+2016,Quebec,All employees,Cement and concrete product manufacturing,,0.22
+2016,Quebec,All employees,Lime and gypsum product manufacturing,,0.01
+2016,Quebec,All employees,Other non-metallic mineral product manufacturing,,0.07
+2016,Quebec,All employees,Primary metal manufacturing,,0.45
+2016,Quebec,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.07
+2016,Quebec,All employees,Steel product manufacturing from purchased steel,,0.02
+2016,Quebec,All employees,Alumina and aluminum production and processing,,0.16
+2016,Quebec,All employees,Non-ferrous metal (except aluminum) production and processing,,0.11
+2016,Quebec,All employees,Foundries,,0.09
+2016,Quebec,All employees,Fabricated metal product manufacturing,,1.19
+2016,Quebec,All employees,Forging and stamping,,0.06
+2016,Quebec,All employees,Cutlery and hand tool manufacturing,,0.03
+2016,Quebec,All employees,Architectural and structural metals manufacturing,,0.49
+2016,Quebec,All employees,"Boiler, tank and shipping container manufacturing",,0.07
+2016,Quebec,All employees,Hardware manufacturing,,0.02
+2016,Quebec,All employees,Spring and wire product manufacturing,,0.04
+2016,Quebec,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.26
+2016,Quebec,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2016,Quebec,All employees,Other fabricated metal product manufacturing,,0.16
+2016,Quebec,All employees,Machinery manufacturing,,0.83
+2016,Quebec,All employees,"Agricultural, construction and mining machinery manufacturing",,0.1
+2016,Quebec,All employees,Industrial machinery manufacturing,,0.14
+2016,Quebec,All employees,Commercial and service industry machinery manufacturing,,0.17
+2016,Quebec,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.14
+2016,Quebec,All employees,Metalworking machinery manufacturing,,0.06
+2016,Quebec,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.07
+2016,Quebec,All employees,Other general-purpose machinery manufacturing,,0.17
+2016,Quebec,All employees,Computer and electronic product manufacturing,,0.44
+2016,Quebec,All employees,Communications equipment manufacturing,,0.09
+2016,Quebec,All employees,Audio and video equipment manufacturing,,0.01
+2016,Quebec,All employees,Semiconductor and other electronic component manufacturing,,0.15
+2016,Quebec,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.16
+2016,Quebec,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
+2016,Quebec,All employees,"Electrical equipment, appliance and component manufacturing",,0.29
+2016,Quebec,All employees,Electric lighting equipment manufacturing,,0.06
+2016,Quebec,All employees,Household appliance manufacturing,,0.02
+2016,Quebec,All employees,Electrical equipment manufacturing,,0.11
+2016,Quebec,All employees,Other electrical equipment and component manufacturing,,0.1
+2016,Quebec,All employees,Transportation equipment manufacturing,,1.22
+2016,Quebec,All employees,Motor vehicle body and trailer manufacturing,,0.12
+2016,Quebec,All employees,Motor vehicle parts manufacturing,,0.1
+2016,Quebec,All employees,Aerospace product and parts manufacturing,,0.71
+2016,Quebec,All employees,Other transportation equipment manufacturing,,0.13
+2016,Quebec,All employees,Furniture and related product manufacturing,,0.61
+2016,Quebec,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.42
+2016,Quebec,All employees,Office furniture (including fixtures) manufacturing,,0.16
+2016,Quebec,All employees,Other furniture-related product manufacturing,,0.04
+2016,Quebec,All employees,Miscellaneous manufacturing,,0.46
+2016,Quebec,All employees,Medical equipment and supplies manufacturing,,0.13
+2016,Quebec,All employees,Other miscellaneous manufacturing,,0.34
+2016,Quebec,Salaried employees paid a fixed salary,Manufacturing,,2.92
+2016,Quebec,Salaried employees paid a fixed salary,Non-durable goods,,1.3
+2016,Quebec,Salaried employees paid a fixed salary,Food manufacturing,,0.3
+2016,Quebec,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2016,Quebec,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Other food manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Textile mills,,0.03
+2016,Quebec,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2016,Quebec,Salaried employees paid a fixed salary,Fabric mills,,0.02
+2016,Quebec,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
+2016,Quebec,Salaried employees paid a fixed salary,Textile product mills,,
+2016,Quebec,Salaried employees paid a fixed salary,Textile furnishings mills,,
+2016,Quebec,Salaried employees paid a fixed salary,Other textile product mills,,
+2016,Quebec,Salaried employees paid a fixed salary,Clothing manufacturing,,0.07
+2016,Quebec,Salaried employees paid a fixed salary,Clothing knitting mills,,
+2016,Quebec,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,0.06
+2016,Quebec,Salaried employees paid a fixed salary,Clothing accessories and other clothing manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2016,Quebec,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Paper manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2016,Quebec,Salaried employees paid a fixed salary,Printing and related support activities,,0.06
+2016,Quebec,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Chemical manufacturing,,0.29
+2016,Quebec,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2016,Quebec,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
+2016,Quebec,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2016,Quebec,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Plastic product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Durable goods,,1.62
+2016,Quebec,Salaried employees paid a fixed salary,Wood product manufacturing,,0.08
+2016,Quebec,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2016,Quebec,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2016,Quebec,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.03
+2016,Quebec,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2016,Quebec,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2016,Quebec,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2016,Quebec,Salaried employees paid a fixed salary,Foundries,,
+2016,Quebec,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.23
+2016,Quebec,Salaried employees paid a fixed salary,Forging and stamping,,
+2016,Quebec,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2016,Quebec,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Machinery manufacturing,,0.21
+2016,Quebec,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2016,Quebec,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2016,Quebec,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2016,Quebec,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Quebec,Salaried employees paid a fixed salary,Manufacturing and reproducing magnetic and optical media,,
+2016,Quebec,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.13
+2016,Quebec,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.34
+2016,Quebec,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.1
+2016,Quebec,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2016,Quebec,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2016,Quebec,Employees paid by the hour,Manufacturing,,8.05
+2016,Quebec,Employees paid by the hour,Non-durable goods,,3.33
+2016,Quebec,Employees paid by the hour,Food manufacturing,,1.29
+2016,Quebec,Employees paid by the hour,Animal food manufacturing,,
+2016,Quebec,Employees paid by the hour,Grain and oilseed milling,,
+2016,Quebec,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2016,Quebec,Employees paid by the hour,Dairy product manufacturing,,
+2016,Quebec,Employees paid by the hour,Meat product manufacturing,,
+2016,Quebec,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2016,Quebec,Employees paid by the hour,Other food manufacturing,,
+2016,Quebec,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2016,Quebec,Employees paid by the hour,Cannabis product manufacturing,,
+2016,Quebec,Employees paid by the hour,Textile mills,,0.07
+2016,Quebec,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2016,Quebec,Employees paid by the hour,Fabric mills,,0.05
+2016,Quebec,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
+2016,Quebec,Employees paid by the hour,Textile product mills,,
+2016,Quebec,Employees paid by the hour,Textile furnishings mills,,
+2016,Quebec,Employees paid by the hour,Other textile product mills,,
+2016,Quebec,Employees paid by the hour,Clothing manufacturing,,0.19
+2016,Quebec,Employees paid by the hour,Clothing knitting mills,,
+2016,Quebec,Employees paid by the hour,Cut and sew clothing manufacturing,,0.16
+2016,Quebec,Employees paid by the hour,Clothing accessories and other clothing manufacturing,,
+2016,Quebec,Employees paid by the hour,Leather and hide tanning and finishing,,
+2016,Quebec,Employees paid by the hour,Footwear manufacturing,,
+2016,Quebec,Employees paid by the hour,Other leather and allied product manufacturing,,
+2016,Quebec,Employees paid by the hour,Paper manufacturing,,
+2016,Quebec,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2016,Quebec,Employees paid by the hour,Printing and related support activities,,0.24
+2016,Quebec,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2016,Quebec,Employees paid by the hour,Chemical manufacturing,,0.35
+2016,Quebec,Employees paid by the hour,Basic chemical manufacturing,,
+2016,Quebec,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2016,Quebec,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2016,Quebec,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
+2016,Quebec,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2016,Quebec,Employees paid by the hour,Other chemical product manufacturing,,
+2016,Quebec,Employees paid by the hour,Plastics and rubber products manufacturing,,0.62
+2016,Quebec,Employees paid by the hour,Plastic product manufacturing,,0.5
+2016,Quebec,Employees paid by the hour,Rubber product manufacturing,,
+2016,Quebec,Employees paid by the hour,Durable goods,,4.73
+2016,Quebec,Employees paid by the hour,Wood product manufacturing,,0.65
+2016,Quebec,Employees paid by the hour,Sawmills and wood preservation,,
+2016,Quebec,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2016,Quebec,Employees paid by the hour,Other wood product manufacturing,,0.3
+2016,Quebec,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2016,Quebec,Employees paid by the hour,Clay product and refractory manufacturing,,
+2016,Quebec,Employees paid by the hour,Glass and glass product manufacturing,,
+2016,Quebec,Employees paid by the hour,Cement and concrete product manufacturing,,
+2016,Quebec,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2016,Quebec,Employees paid by the hour,Primary metal manufacturing,,0.33
+2016,Quebec,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2016,Quebec,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2016,Quebec,Employees paid by the hour,Alumina and aluminum production and processing,,
+2016,Quebec,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2016,Quebec,Employees paid by the hour,Foundries,,
+2016,Quebec,Employees paid by the hour,Fabricated metal product manufacturing,,0.88
+2016,Quebec,Employees paid by the hour,Forging and stamping,,
+2016,Quebec,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2016,Quebec,Employees paid by the hour,Architectural and structural metals manufacturing,,0.38
+2016,Quebec,Employees paid by the hour,Hardware manufacturing,,
+2016,Quebec,Employees paid by the hour,Spring and wire product manufacturing,,
+2016,Quebec,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2016,Quebec,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2016,Quebec,Employees paid by the hour,Machinery manufacturing,,0.59
+2016,Quebec,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2016,Quebec,Employees paid by the hour,Industrial machinery manufacturing,,
+2016,Quebec,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2016,Quebec,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2016,Quebec,Employees paid by the hour,Metalworking machinery manufacturing,,
+2016,Quebec,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2016,Quebec,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2016,Quebec,Employees paid by the hour,Communications equipment manufacturing,,
+2016,Quebec,Employees paid by the hour,Audio and video equipment manufacturing,,
+2016,Quebec,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2016,Quebec,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Quebec,Employees paid by the hour,Manufacturing and reproducing magnetic and optical media,,
+2016,Quebec,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.16
+2016,Quebec,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2016,Quebec,Employees paid by the hour,Household appliance manufacturing,,
+2016,Quebec,Employees paid by the hour,Electrical equipment manufacturing,,
+2016,Quebec,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2016,Quebec,Employees paid by the hour,Transportation equipment manufacturing,,0.86
+2016,Quebec,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2016,Quebec,Employees paid by the hour,Other transportation equipment manufacturing,,
+2016,Quebec,Employees paid by the hour,Furniture and related product manufacturing,,0.49
+2016,Quebec,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.34
+2016,Quebec,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2016,Quebec,Employees paid by the hour,Miscellaneous manufacturing,,0.31
+2016,Quebec,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2016,Quebec,Employees paid by the hour,Other miscellaneous manufacturing,,
+2016,Ontario,All employees,Manufacturing,35,10.68
+2016,Ontario,All employees,Non-durable goods,,4.02
+2016,Ontario,All employees,Food manufacturing,,1.25
+2016,Ontario,All employees,Animal food manufacturing,,0.06
+2016,Ontario,All employees,Grain and oilseed milling,,0.05
+2016,Ontario,All employees,Sugar and confectionery product manufacturing,,0.07
+2016,Ontario,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.1
+2016,Ontario,All employees,Dairy product manufacturing,,0.14
+2016,Ontario,All employees,Meat product manufacturing,,0.27
+2016,Ontario,All employees,Seafood product preparation and packaging,,0.01
+2016,Ontario,All employees,Bakeries and tortilla manufacturing,,0.33
+2016,Ontario,All employees,Other food manufacturing,,0.21
+2016,Ontario,All employees,Beverage and tobacco product manufacturing,,0.27
+2016,Ontario,All employees,Cannabis product manufacturing,,
+2016,Ontario,All employees,Textile mills,,0.05
+2016,Ontario,All employees,"Fibre, yarn and thread mills",,0.01
+2016,Ontario,All employees,Fabric mills,,0.02
+2016,Ontario,All employees,Textile and fabric finishing and fabric coating,,0.02
+2016,Ontario,All employees,Textile product mills,,0.06
+2016,Ontario,All employees,Textile furnishings mills,,0.02
+2016,Ontario,All employees,Other textile product mills,,0.04
+2016,Ontario,All employees,Clothing manufacturing,,0.08
+2016,Ontario,All employees,Clothing knitting mills,,0.01
+2016,Ontario,All employees,Cut and sew clothing manufacturing,,0.06
+2016,Ontario,All employees,Clothing accessories and other clothing manufacturing,,0.02
+2016,Ontario,All employees,Leather and allied product manufacturing,,0.02
+2016,Ontario,All employees,Leather and hide tanning and finishing,,0
+2016,Ontario,All employees,Footwear manufacturing,,0
+2016,Ontario,All employees,Other leather and allied product manufacturing,,0.02
+2016,Ontario,All employees,Paper manufacturing,,0.27
+2016,Ontario,All employees,"Pulp, paper and paperboard mills",,0.07
+2016,Ontario,All employees,Converted paper product manufacturing,,0.2
+2016,Ontario,All employees,Printing and related support activities,,0.38
+2016,Ontario,All employees,Petroleum and coal product manufacturing,,0.1
+2016,Ontario,All employees,Chemical manufacturing,,0.72
+2016,Ontario,All employees,Basic chemical manufacturing,,0.08
+2016,Ontario,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.06
+2016,Ontario,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
+2016,Ontario,All employees,Pharmaceutical and medicine manufacturing,,0.25
+2016,Ontario,All employees,"Paint, coating and adhesive manufacturing",,0.06
+2016,Ontario,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.16
+2016,Ontario,All employees,Other chemical product manufacturing,,0.09
+2016,Ontario,All employees,Plastics and rubber products manufacturing,,0.81
+2016,Ontario,All employees,Plastic product manufacturing,,0.72
+2016,Ontario,All employees,Rubber product manufacturing,,0.09
+2016,Ontario,All employees,Durable goods,,6.65
+2016,Ontario,All employees,Wood product manufacturing,,0.27
+2016,Ontario,All employees,Sawmills and wood preservation,,0.05
+2016,Ontario,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.06
+2016,Ontario,All employees,Other wood product manufacturing,,0.16
+2016,Ontario,All employees,Non-metallic mineral product manufacturing,,0.32
+2016,Ontario,All employees,Clay product and refractory manufacturing,,0.02
+2016,Ontario,All employees,Glass and glass product manufacturing,,0.05
+2016,Ontario,All employees,Cement and concrete product manufacturing,,0.18
+2016,Ontario,All employees,Lime and gypsum product manufacturing,,0.01
+2016,Ontario,All employees,Other non-metallic mineral product manufacturing,,0.06
+2016,Ontario,All employees,Primary metal manufacturing,,0.43
+2016,Ontario,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.2
+2016,Ontario,All employees,Steel product manufacturing from purchased steel,,0.06
+2016,Ontario,All employees,Alumina and aluminum production and processing,,0.04
+2016,Ontario,All employees,Non-ferrous metal (except aluminum) production and processing,,0.07
+2016,Ontario,All employees,Foundries,,0.07
+2016,Ontario,All employees,Fabricated metal product manufacturing,,1.06
+2016,Ontario,All employees,Forging and stamping,,0.05
+2016,Ontario,All employees,Cutlery and hand tool manufacturing,,0.04
+2016,Ontario,All employees,Architectural and structural metals manufacturing,,0.34
+2016,Ontario,All employees,"Boiler, tank and shipping container manufacturing",,0.06
+2016,Ontario,All employees,Hardware manufacturing,,0.06
+2016,Ontario,All employees,Spring and wire product manufacturing,,0.03
+2016,Ontario,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.23
+2016,Ontario,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.1
+2016,Ontario,All employees,Other fabricated metal product manufacturing,,0.15
+2016,Ontario,All employees,Machinery manufacturing,,1
+2016,Ontario,All employees,"Agricultural, construction and mining machinery manufacturing",,0.13
+2016,Ontario,All employees,Industrial machinery manufacturing,,0.11
+2016,Ontario,All employees,Commercial and service industry machinery manufacturing,,0.11
+2016,Ontario,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
+2016,Ontario,All employees,Metalworking machinery manufacturing,,0.27
+2016,Ontario,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.05
+2016,Ontario,All employees,Other general-purpose machinery manufacturing,,0.24
+2016,Ontario,All employees,Computer and electronic product manufacturing,,0.46
+2016,Ontario,All employees,Computer and peripheral equipment manufacturing,,0.05
+2016,Ontario,All employees,Communications equipment manufacturing,,0.13
+2016,Ontario,All employees,Audio and video equipment manufacturing,,0.01
+2016,Ontario,All employees,Semiconductor and other electronic component manufacturing,,0.11
+2016,Ontario,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.15
+2016,Ontario,All employees,"Electrical equipment, appliance and component manufacturing",,0.26
+2016,Ontario,All employees,Electric lighting equipment manufacturing,,0.03
+2016,Ontario,All employees,Household appliance manufacturing,,0.02
+2016,Ontario,All employees,Electrical equipment manufacturing,,0.12
+2016,Ontario,All employees,Other electrical equipment and component manufacturing,,0.09
+2016,Ontario,All employees,Transportation equipment manufacturing,,2.03
+2016,Ontario,All employees,Motor vehicle manufacturing,,0.61
+2016,Ontario,All employees,Motor vehicle body and trailer manufacturing,,0.06
+2016,Ontario,All employees,Motor vehicle parts manufacturing,,1.06
+2016,Ontario,All employees,Aerospace product and parts manufacturing,,0.19
+2016,Ontario,All employees,Railroad rolling stock manufacturing,,0.05
+2016,Ontario,All employees,Furniture and related product manufacturing,,0.45
+2016,Ontario,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
+2016,Ontario,All employees,Office furniture (including fixtures) manufacturing,,0.22
+2016,Ontario,All employees,Other furniture-related product manufacturing,,0.03
+2016,Ontario,All employees,Miscellaneous manufacturing,,0.38
+2016,Ontario,All employees,Medical equipment and supplies manufacturing,,0.14
+2016,Ontario,All employees,Other miscellaneous manufacturing,,0.25
+2016,Ontario,Salaried employees paid a fixed salary,Manufacturing,,2.98
+2016,Ontario,Salaried employees paid a fixed salary,Non-durable goods,,1.25
+2016,Ontario,Salaried employees paid a fixed salary,Food manufacturing,,0.29
+2016,Ontario,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2016,Ontario,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Other food manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Textile mills,,0.01
+2016,Ontario,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2016,Ontario,Salaried employees paid a fixed salary,Fabric mills,,
+2016,Ontario,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0.01
+2016,Ontario,Salaried employees paid a fixed salary,Textile furnishings mills,,
+2016,Ontario,Salaried employees paid a fixed salary,Other textile product mills,,
+2016,Ontario,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
+2016,Ontario,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2016,Ontario,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Paper manufacturing,,0.09
+2016,Ontario,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2016,Ontario,Salaried employees paid a fixed salary,Printing and related support activities,,0.08
+2016,Ontario,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2016,Ontario,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2016,Ontario,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
+2016,Ontario,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2016,Ontario,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.17
+2016,Ontario,Salaried employees paid a fixed salary,Plastic product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Durable goods,,1.73
+2016,Ontario,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2016,Ontario,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2016,Ontario,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.02
+2016,Ontario,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2016,Ontario,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2016,Ontario,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2016,Ontario,Salaried employees paid a fixed salary,Foundries,,
+2016,Ontario,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.25
+2016,Ontario,Salaried employees paid a fixed salary,Forging and stamping,,
+2016,Ontario,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.1
+2016,Ontario,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2016,Ontario,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
+2016,Ontario,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
+2016,Ontario,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Machinery manufacturing,,0.29
+2016,Ontario,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2016,Ontario,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2016,Ontario,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2016,Ontario,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.24
+2016,Ontario,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Ontario,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.12
+2016,Ontario,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,0.05
+2016,Ontario,Salaried employees paid a fixed salary,Railroad rolling stock manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.08
+2016,Ontario,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2016,Ontario,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2016,Ontario,Employees paid by the hour,Manufacturing,,7.28
+2016,Ontario,Employees paid by the hour,Non-durable goods,,2.65
+2016,Ontario,Employees paid by the hour,Food manufacturing,,0.93
+2016,Ontario,Employees paid by the hour,Animal food manufacturing,,
+2016,Ontario,Employees paid by the hour,Grain and oilseed milling,,
+2016,Ontario,Employees paid by the hour,Sugar and confectionery product manufacturing,,
+2016,Ontario,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2016,Ontario,Employees paid by the hour,Dairy product manufacturing,,
+2016,Ontario,Employees paid by the hour,Meat product manufacturing,,
+2016,Ontario,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2016,Ontario,Employees paid by the hour,Other food manufacturing,,
+2016,Ontario,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2016,Ontario,Employees paid by the hour,Cannabis product manufacturing,,
+2016,Ontario,Employees paid by the hour,Textile mills,,0.04
+2016,Ontario,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2016,Ontario,Employees paid by the hour,Fabric mills,,
+2016,Ontario,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
+2016,Ontario,Employees paid by the hour,Textile furnishings mills,,
+2016,Ontario,Employees paid by the hour,Other textile product mills,,
+2016,Ontario,Employees paid by the hour,Clothing manufacturing,,
+2016,Ontario,Employees paid by the hour,Leather and allied product manufacturing,,0.02
+2016,Ontario,Employees paid by the hour,Leather and hide tanning and finishing,,
+2016,Ontario,Employees paid by the hour,Footwear manufacturing,,
+2016,Ontario,Employees paid by the hour,Other leather and allied product manufacturing,,
+2016,Ontario,Employees paid by the hour,Paper manufacturing,,0.17
+2016,Ontario,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2016,Ontario,Employees paid by the hour,Printing and related support activities,,0.27
+2016,Ontario,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2016,Ontario,Employees paid by the hour,Chemical manufacturing,,
+2016,Ontario,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2016,Ontario,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2016,Ontario,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
+2016,Ontario,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2016,Ontario,Employees paid by the hour,Other chemical product manufacturing,,
+2016,Ontario,Employees paid by the hour,Plastics and rubber products manufacturing,,0.61
+2016,Ontario,Employees paid by the hour,Plastic product manufacturing,,
+2016,Ontario,Employees paid by the hour,Rubber product manufacturing,,
+2016,Ontario,Employees paid by the hour,Durable goods,,4.63
+2016,Ontario,Employees paid by the hour,Wood product manufacturing,,
+2016,Ontario,Employees paid by the hour,Sawmills and wood preservation,,
+2016,Ontario,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2016,Ontario,Employees paid by the hour,Other wood product manufacturing,,0.12
+2016,Ontario,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2016,Ontario,Employees paid by the hour,Clay product and refractory manufacturing,,
+2016,Ontario,Employees paid by the hour,Glass and glass product manufacturing,,
+2016,Ontario,Employees paid by the hour,Cement and concrete product manufacturing,,
+2016,Ontario,Employees paid by the hour,Lime and gypsum product manufacturing,,
+2016,Ontario,Employees paid by the hour,Primary metal manufacturing,,
+2016,Ontario,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2016,Ontario,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2016,Ontario,Employees paid by the hour,Alumina and aluminum production and processing,,
+2016,Ontario,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2016,Ontario,Employees paid by the hour,Foundries,,
+2016,Ontario,Employees paid by the hour,Fabricated metal product manufacturing,,0.71
+2016,Ontario,Employees paid by the hour,Forging and stamping,,
+2016,Ontario,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2016,Ontario,Employees paid by the hour,Architectural and structural metals manufacturing,,0.21
+2016,Ontario,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2016,Ontario,Employees paid by the hour,Hardware manufacturing,,
+2016,Ontario,Employees paid by the hour,Spring and wire product manufacturing,,
+2016,Ontario,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.17
+2016,Ontario,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
+2016,Ontario,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2016,Ontario,Employees paid by the hour,Machinery manufacturing,,0.68
+2016,Ontario,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2016,Ontario,Employees paid by the hour,Industrial machinery manufacturing,,
+2016,Ontario,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2016,Ontario,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2016,Ontario,Employees paid by the hour,Metalworking machinery manufacturing,,
+2016,Ontario,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2016,Ontario,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2016,Ontario,Employees paid by the hour,Computer and electronic product manufacturing,,0.2
+2016,Ontario,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
+2016,Ontario,Employees paid by the hour,Communications equipment manufacturing,,
+2016,Ontario,Employees paid by the hour,Audio and video equipment manufacturing,,
+2016,Ontario,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2016,Ontario,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Ontario,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.13
+2016,Ontario,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2016,Ontario,Employees paid by the hour,Household appliance manufacturing,,
+2016,Ontario,Employees paid by the hour,Electrical equipment manufacturing,,
+2016,Ontario,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2016,Ontario,Employees paid by the hour,Transportation equipment manufacturing,,
+2016,Ontario,Employees paid by the hour,Motor vehicle manufacturing,,
+2016,Ontario,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2016,Ontario,Employees paid by the hour,Motor vehicle parts manufacturing,,
+2016,Ontario,Employees paid by the hour,Aerospace product and parts manufacturing,,0.14
+2016,Ontario,Employees paid by the hour,Railroad rolling stock manufacturing,,
+2016,Ontario,Employees paid by the hour,Furniture and related product manufacturing,,0.35
+2016,Ontario,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2016,Ontario,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2016,Ontario,Employees paid by the hour,Miscellaneous manufacturing,,
+2016,Ontario,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2016,Ontario,Employees paid by the hour,Other miscellaneous manufacturing,,
+2016,Manitoba,All employees,Manufacturing,46,9.08
+2016,Manitoba,All employees,Non-durable goods,,3.73
+2016,Manitoba,All employees,Food manufacturing,,1.62
+2016,Manitoba,All employees,Animal food manufacturing,,
+2016,Manitoba,All employees,Meat product manufacturing,,0.78
+2016,Manitoba,All employees,Bakeries and tortilla manufacturing,,0.2
+2016,Manitoba,All employees,Beverage and tobacco product manufacturing,,0.14
+2016,Manitoba,All employees,Cannabis product manufacturing,,
+2016,Manitoba,All employees,Textile and fabric finishing and fabric coating,,
+2016,Manitoba,All employees,Other textile product mills,,
+2016,Manitoba,All employees,Cut and sew clothing manufacturing,,
+2016,Manitoba,All employees,Leather and hide tanning and finishing,,
+2016,Manitoba,All employees,Paper manufacturing,,0.19
+2016,Manitoba,All employees,"Pulp, paper and paperboard mills",,
+2016,Manitoba,All employees,Printing and related support activities,,0.52
+2016,Manitoba,All employees,Chemical manufacturing,,0.43
+2016,Manitoba,All employees,Basic chemical manufacturing,,0.06
+2016,Manitoba,All employees,Durable goods,,5.35
+2016,Manitoba,All employees,Wood product manufacturing,,0.41
+2016,Manitoba,All employees,Sawmills and wood preservation,,
+2016,Manitoba,All employees,"Veneer, plywood and engineered wood product manufacturing",,
+2016,Manitoba,All employees,Other wood product manufacturing,,0.27
+2016,Manitoba,All employees,Non-metallic mineral product manufacturing,,0.21
+2016,Manitoba,All employees,Cement and concrete product manufacturing,,0.16
+2016,Manitoba,All employees,Other non-metallic mineral product manufacturing,,0.03
+2016,Manitoba,All employees,Primary metal manufacturing,,0.57
+2016,Manitoba,All employees,Foundries,,0.16
+2016,Manitoba,All employees,Fabricated metal product manufacturing,,0.69
+2016,Manitoba,All employees,Architectural and structural metals manufacturing,,0.3
+2016,Manitoba,All employees,"Boiler, tank and shipping container manufacturing",,0.1
+2016,Manitoba,All employees,Spring and wire product manufacturing,,
+2016,Manitoba,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.05
+2016,Manitoba,All employees,Machinery manufacturing,,0.99
+2016,Manitoba,All employees,"Agricultural, construction and mining machinery manufacturing",,0.62
+2016,Manitoba,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
+2016,Manitoba,All employees,Other general-purpose machinery manufacturing,,0.15
+2016,Manitoba,All employees,Computer and electronic product manufacturing,,0.09
+2016,Manitoba,All employees,Semiconductor and other electronic component manufacturing,,0.03
+2016,Manitoba,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Manitoba,All employees,Electrical equipment manufacturing,,
+2016,Manitoba,All employees,Transportation equipment manufacturing,,1.41
+2016,Manitoba,All employees,Motor vehicle body and trailer manufacturing,,0.19
+2016,Manitoba,All employees,Aerospace product and parts manufacturing,,0.69
+2016,Manitoba,All employees,Furniture and related product manufacturing,,0.57
+2016,Manitoba,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.5
+2016,Manitoba,All employees,Office furniture (including fixtures) manufacturing,,
+2016,Manitoba,All employees,Other furniture-related product manufacturing,,
+2016,Manitoba,All employees,Miscellaneous manufacturing,,0.29
+2016,Manitoba,All employees,Medical equipment and supplies manufacturing,,0.09
+2016,Manitoba,All employees,Other miscellaneous manufacturing,,0.2
+2016,Manitoba,Salaried employees paid a fixed salary,Manufacturing,,1.8
+2016,Manitoba,Salaried employees paid a fixed salary,Non-durable goods,,0.78
+2016,Manitoba,Salaried employees paid a fixed salary,Food manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
+2016,Manitoba,Salaried employees paid a fixed salary,Other textile product mills,,
+2016,Manitoba,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Paper manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2016,Manitoba,Salaried employees paid a fixed salary,Printing and related support activities,,0.11
+2016,Manitoba,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Durable goods,,1.02
+2016,Manitoba,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2016,Manitoba,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2016,Manitoba,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.13
+2016,Manitoba,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2016,Manitoba,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2016,Manitoba,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Manitoba,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.21
+2016,Manitoba,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.08
+2016,Manitoba,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2016,Manitoba,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2016,Manitoba,Employees paid by the hour,Manufacturing,,6.97
+2016,Manitoba,Employees paid by the hour,Non-durable goods,,2.84
+2016,Manitoba,Employees paid by the hour,Food manufacturing,,
+2016,Manitoba,Employees paid by the hour,Animal food manufacturing,,
+2016,Manitoba,Employees paid by the hour,Meat product manufacturing,,
+2016,Manitoba,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2016,Manitoba,Employees paid by the hour,Cannabis product manufacturing,,
+2016,Manitoba,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
+2016,Manitoba,Employees paid by the hour,Other textile product mills,,
+2016,Manitoba,Employees paid by the hour,Clothing manufacturing,,
+2016,Manitoba,Employees paid by the hour,Cut and sew clothing manufacturing,,
+2016,Manitoba,Employees paid by the hour,Leather and hide tanning and finishing,,
+2016,Manitoba,Employees paid by the hour,Paper manufacturing,,
+2016,Manitoba,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2016,Manitoba,Employees paid by the hour,Printing and related support activities,,0.38
+2016,Manitoba,Employees paid by the hour,Chemical manufacturing,,
+2016,Manitoba,Employees paid by the hour,Basic chemical manufacturing,,
+2016,Manitoba,Employees paid by the hour,Durable goods,,4.12
+2016,Manitoba,Employees paid by the hour,Wood product manufacturing,,
+2016,Manitoba,Employees paid by the hour,Sawmills and wood preservation,,
+2016,Manitoba,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2016,Manitoba,Employees paid by the hour,Other wood product manufacturing,,
+2016,Manitoba,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2016,Manitoba,Employees paid by the hour,Cement and concrete product manufacturing,,
+2016,Manitoba,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2016,Manitoba,Employees paid by the hour,Primary metal manufacturing,,
+2016,Manitoba,Employees paid by the hour,Fabricated metal product manufacturing,,0.51
+2016,Manitoba,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2016,Manitoba,Employees paid by the hour,Machinery manufacturing,,
+2016,Manitoba,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2016,Manitoba,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2016,Manitoba,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2016,Manitoba,Employees paid by the hour,Computer and electronic product manufacturing,,
+2016,Manitoba,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Manitoba,Employees paid by the hour,Electrical equipment manufacturing,,
+2016,Manitoba,Employees paid by the hour,Transportation equipment manufacturing,,1.18
+2016,Manitoba,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2016,Manitoba,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2016,Manitoba,Employees paid by the hour,Furniture and related product manufacturing,,0.46
+2016,Manitoba,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2016,Manitoba,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2016,Manitoba,Employees paid by the hour,Other furniture-related product manufacturing,,
+2016,Manitoba,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2016,Manitoba,Employees paid by the hour,Other miscellaneous manufacturing,,
+2016,Saskatchewan,All employees,Manufacturing,47,4.89
+2016,Saskatchewan,All employees,Non-durable goods,,1.79
+2016,Saskatchewan,All employees,Food manufacturing,,0.85
+2016,Saskatchewan,All employees,Animal food manufacturing,,0.1
+2016,Saskatchewan,All employees,Grain and oilseed milling,,0.18
+2016,Saskatchewan,All employees,Meat product manufacturing,,0.36
+2016,Saskatchewan,All employees,Beverage and tobacco product manufacturing,,0.15
+2016,Saskatchewan,All employees,Cannabis product manufacturing,,
+2016,Saskatchewan,All employees,Printing and related support activities,,0.12
+2016,Saskatchewan,All employees,Chemical manufacturing,,0.27
+2016,Saskatchewan,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.13
+2016,Saskatchewan,All employees,Durable goods,,3.1
+2016,Saskatchewan,All employees,Wood product manufacturing,,0.34
+2016,Saskatchewan,All employees,Sawmills and wood preservation,,0.11
+2016,Saskatchewan,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.13
+2016,Saskatchewan,All employees,Other wood product manufacturing,,0.09
+2016,Saskatchewan,All employees,Cement and concrete product manufacturing,,0.18
+2016,Saskatchewan,All employees,Fabricated metal product manufacturing,,0.65
+2016,Saskatchewan,All employees,Architectural and structural metals manufacturing,,0.32
+2016,Saskatchewan,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.05
+2016,Saskatchewan,All employees,Machinery manufacturing,,1.03
+2016,Saskatchewan,All employees,"Agricultural, construction and mining machinery manufacturing",,0.77
+2016,Saskatchewan,All employees,Computer and electronic product manufacturing,,
+2016,Saskatchewan,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Saskatchewan,All employees,Motor vehicle body and trailer manufacturing,,0.12
+2016,Saskatchewan,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.13
+2016,Saskatchewan,All employees,Miscellaneous manufacturing,,0.13
+2016,Saskatchewan,All employees,Medical equipment and supplies manufacturing,,0.06
+2016,Saskatchewan,All employees,Other miscellaneous manufacturing,,0.08
+2016,Saskatchewan,Salaried employees paid a fixed salary,Manufacturing,,1.31
+2016,Saskatchewan,Salaried employees paid a fixed salary,Non-durable goods,,0.49
+2016,Saskatchewan,Salaried employees paid a fixed salary,Food manufacturing,,0.12
+2016,Saskatchewan,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2016,Saskatchewan,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2016,Saskatchewan,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,Saskatchewan,Salaried employees paid a fixed salary,Printing and related support activities,,
+2016,Saskatchewan,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2016,Saskatchewan,Salaried employees paid a fixed salary,Durable goods,,0.82
+2016,Saskatchewan,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2016,Saskatchewan,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2016,Saskatchewan,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2016,Saskatchewan,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2016,Saskatchewan,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2016,Saskatchewan,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Saskatchewan,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2016,Saskatchewan,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2016,Saskatchewan,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2016,Saskatchewan,Employees paid by the hour,Manufacturing,,3.38
+2016,Saskatchewan,Employees paid by the hour,Non-durable goods,,1.24
+2016,Saskatchewan,Employees paid by the hour,Food manufacturing,,0.7
+2016,Saskatchewan,Employees paid by the hour,Grain and oilseed milling,,
+2016,Saskatchewan,Employees paid by the hour,Meat product manufacturing,,
+2016,Saskatchewan,Employees paid by the hour,Cannabis product manufacturing,,
+2016,Saskatchewan,Employees paid by the hour,Printing and related support activities,,
+2016,Saskatchewan,Employees paid by the hour,Chemical manufacturing,,
+2016,Saskatchewan,Employees paid by the hour,Durable goods,,2.14
+2016,Saskatchewan,Employees paid by the hour,Fabricated metal product manufacturing,,
+2016,Saskatchewan,Employees paid by the hour,Machinery manufacturing,,
+2016,Saskatchewan,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2016,Saskatchewan,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2016,Saskatchewan,Employees paid by the hour,Computer and electronic product manufacturing,,
+2016,Saskatchewan,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Saskatchewan,Employees paid by the hour,Transportation equipment manufacturing,,
+2016,Saskatchewan,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.1
+2016,Saskatchewan,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2016,Alberta,All employees,Manufacturing,48,5.93
+2016,Alberta,All employees,Non-durable goods,,2.49
+2016,Alberta,All employees,Food manufacturing,,0.93
+2016,Alberta,All employees,Animal food manufacturing,,0.07
+2016,Alberta,All employees,Grain and oilseed milling,,0.03
+2016,Alberta,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.04
+2016,Alberta,All employees,Meat product manufacturing,,0.46
+2016,Alberta,All employees,Bakeries and tortilla manufacturing,,0.14
+2016,Alberta,All employees,Other food manufacturing,,0.13
+2016,Alberta,All employees,Beverage and tobacco product manufacturing,,0.13
+2016,Alberta,All employees,Cannabis product manufacturing,,
+2016,Alberta,All employees,Cut and sew clothing manufacturing,,
+2016,Alberta,All employees,Other leather and allied product manufacturing,,
+2016,Alberta,All employees,Paper manufacturing,,0.13
+2016,Alberta,All employees,"Pulp, paper and paperboard mills",,0.11
+2016,Alberta,All employees,Converted paper product manufacturing,,0.02
+2016,Alberta,All employees,Printing and related support activities,,0.22
+2016,Alberta,All employees,Petroleum and coal product manufacturing,,0.29
+2016,Alberta,All employees,Chemical manufacturing,,0.48
+2016,Alberta,All employees,Basic chemical manufacturing,,0.14
+2016,Alberta,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.16
+2016,Alberta,All employees,Other chemical product manufacturing,,0.07
+2016,Alberta,All employees,Plastics and rubber products manufacturing,,0.27
+2016,Alberta,All employees,Durable goods,,3.43
+2016,Alberta,All employees,Wood product manufacturing,,0.49
+2016,Alberta,All employees,Sawmills and wood preservation,,0.19
+2016,Alberta,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
+2016,Alberta,All employees,Other wood product manufacturing,,0.16
+2016,Alberta,All employees,Non-metallic mineral product manufacturing,,0.32
+2016,Alberta,All employees,Glass and glass product manufacturing,,
+2016,Alberta,All employees,Cement and concrete product manufacturing,,0.21
+2016,Alberta,All employees,Other non-metallic mineral product manufacturing,,0.06
+2016,Alberta,All employees,Primary metal manufacturing,,0.11
+2016,Alberta,All employees,Fabricated metal product manufacturing,,1.04
+2016,Alberta,All employees,Forging and stamping,,
+2016,Alberta,All employees,Architectural and structural metals manufacturing,,0.46
+2016,Alberta,All employees,"Boiler, tank and shipping container manufacturing",,0.15
+2016,Alberta,All employees,Spring and wire product manufacturing,,0.03
+2016,Alberta,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.16
+2016,Alberta,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.08
+2016,Alberta,All employees,Other fabricated metal product manufacturing,,0.16
+2016,Alberta,All employees,Machinery manufacturing,,0.72
+2016,Alberta,All employees,"Agricultural, construction and mining machinery manufacturing",,0.37
+2016,Alberta,All employees,Industrial machinery manufacturing,,
+2016,Alberta,All employees,Commercial and service industry machinery manufacturing,,0.02
+2016,Alberta,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
+2016,Alberta,All employees,Metalworking machinery manufacturing,,0.03
+2016,Alberta,All employees,"Engine, turbine and power transmission equipment manufacturing",,
+2016,Alberta,All employees,Other general-purpose machinery manufacturing,,0.18
+2016,Alberta,All employees,Computer and electronic product manufacturing,,0.16
+2016,Alberta,All employees,Computer and peripheral equipment manufacturing,,
+2016,Alberta,All employees,Communications equipment manufacturing,,
+2016,Alberta,All employees,Semiconductor and other electronic component manufacturing,,0.03
+2016,Alberta,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.08
+2016,Alberta,All employees,"Electrical equipment, appliance and component manufacturing",,0.1
+2016,Alberta,All employees,Electrical equipment manufacturing,,0.06
+2016,Alberta,All employees,Other electrical equipment and component manufacturing,,0.03
+2016,Alberta,All employees,Transportation equipment manufacturing,,0.1
+2016,Alberta,All employees,Motor vehicle body and trailer manufacturing,,0.05
+2016,Alberta,All employees,Motor vehicle parts manufacturing,,0.02
+2016,Alberta,All employees,Aerospace product and parts manufacturing,,
+2016,Alberta,All employees,Furniture and related product manufacturing,,0.19
+2016,Alberta,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.12
+2016,Alberta,All employees,Office furniture (including fixtures) manufacturing,,0.04
+2016,Alberta,All employees,Other furniture-related product manufacturing,,0.03
+2016,Alberta,All employees,Miscellaneous manufacturing,,0.2
+2016,Alberta,All employees,Medical equipment and supplies manufacturing,,0.07
+2016,Alberta,All employees,Other miscellaneous manufacturing,,0.13
+2016,Alberta,Salaried employees paid a fixed salary,Manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Non-durable goods,,
+2016,Alberta,Salaried employees paid a fixed salary,Food manufacturing,,0.14
+2016,Alberta,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2016,Alberta,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Paper manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2016,Alberta,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Printing and related support activities,,0.06
+2016,Alberta,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2016,Alberta,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.07
+2016,Alberta,Salaried employees paid a fixed salary,Durable goods,,0.93
+2016,Alberta,Salaried employees paid a fixed salary,Wood product manufacturing,,0.07
+2016,Alberta,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2016,Alberta,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2016,Alberta,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2016,Alberta,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2016,Alberta,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2016,Alberta,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.09
+2016,Alberta,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Alberta,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2016,Alberta,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.03
+2016,Alberta,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2016,Alberta,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2016,Alberta,Employees paid by the hour,Manufacturing,,
+2016,Alberta,Employees paid by the hour,Non-durable goods,,
+2016,Alberta,Employees paid by the hour,Food manufacturing,,0.76
+2016,Alberta,Employees paid by the hour,Grain and oilseed milling,,
+2016,Alberta,Employees paid by the hour,Meat product manufacturing,,
+2016,Alberta,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2016,Alberta,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2016,Alberta,Employees paid by the hour,Cannabis product manufacturing,,
+2016,Alberta,Employees paid by the hour,Paper manufacturing,,
+2016,Alberta,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2016,Alberta,Employees paid by the hour,Converted paper product manufacturing,,
+2016,Alberta,Employees paid by the hour,Printing and related support activities,,0.15
+2016,Alberta,Employees paid by the hour,Chemical manufacturing,,
+2016,Alberta,Employees paid by the hour,Basic chemical manufacturing,,
+2016,Alberta,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2016,Alberta,Employees paid by the hour,Other chemical product manufacturing,,
+2016,Alberta,Employees paid by the hour,Plastics and rubber products manufacturing,,0.19
+2016,Alberta,Employees paid by the hour,Durable goods,,2.34
+2016,Alberta,Employees paid by the hour,Wood product manufacturing,,0.4
+2016,Alberta,Employees paid by the hour,Sawmills and wood preservation,,
+2016,Alberta,Employees paid by the hour,Other wood product manufacturing,,0.13
+2016,Alberta,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2016,Alberta,Employees paid by the hour,Cement and concrete product manufacturing,,
+2016,Alberta,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2016,Alberta,Employees paid by the hour,Fabricated metal product manufacturing,,
+2016,Alberta,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2016,Alberta,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2016,Alberta,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2016,Alberta,Employees paid by the hour,Machinery manufacturing,,
+2016,Alberta,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2016,Alberta,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2016,Alberta,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2016,Alberta,Employees paid by the hour,Computer and electronic product manufacturing,,0.06
+2016,Alberta,Employees paid by the hour,Communications equipment manufacturing,,
+2016,Alberta,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,Alberta,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2016,Alberta,Employees paid by the hour,Electrical equipment manufacturing,,
+2016,Alberta,Employees paid by the hour,Transportation equipment manufacturing,,
+2016,Alberta,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2016,Alberta,Employees paid by the hour,Motor vehicle parts manufacturing,,
+2016,Alberta,Employees paid by the hour,Furniture and related product manufacturing,,0.15
+2016,Alberta,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2016,Alberta,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2016,Alberta,Employees paid by the hour,Other furniture-related product manufacturing,,
+2016,Alberta,Employees paid by the hour,Miscellaneous manufacturing,,
+2016,Alberta,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2016,Alberta,Employees paid by the hour,Other miscellaneous manufacturing,,
+2016,British Columbia,All employees,Manufacturing,59,6.75
+2016,British Columbia,All employees,Non-durable goods,,2.77
+2016,British Columbia,All employees,Food manufacturing,,1.19
+2016,British Columbia,All employees,Animal food manufacturing,,0.04
+2016,British Columbia,All employees,Grain and oilseed milling,,0.02
+2016,British Columbia,All employees,Sugar and confectionery product manufacturing,,0.05
+2016,British Columbia,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.07
+2016,British Columbia,All employees,Dairy product manufacturing,,0.1
+2016,British Columbia,All employees,Meat product manufacturing,,0.22
+2016,British Columbia,All employees,Seafood product preparation and packaging,,0.17
+2016,British Columbia,All employees,Bakeries and tortilla manufacturing,,0.3
+2016,British Columbia,All employees,Other food manufacturing,,0.22
+2016,British Columbia,All employees,Beverage and tobacco product manufacturing,,0.29
+2016,British Columbia,All employees,Cannabis product manufacturing,,
+2016,British Columbia,All employees,Fabric mills,,
+2016,British Columbia,All employees,Textile product mills,,0.04
+2016,British Columbia,All employees,Textile furnishings mills,,0.01
+2016,British Columbia,All employees,Other textile product mills,,0.03
+2016,British Columbia,All employees,Clothing manufacturing,,0.09
+2016,British Columbia,All employees,Cut and sew clothing manufacturing,,0.07
+2016,British Columbia,All employees,Other leather and allied product manufacturing,,0
+2016,British Columbia,All employees,Paper manufacturing,,0.37
+2016,British Columbia,All employees,"Pulp, paper and paperboard mills",,0.27
+2016,British Columbia,All employees,Converted paper product manufacturing,,0.09
+2016,British Columbia,All employees,Printing and related support activities,,0.21
+2016,British Columbia,All employees,Petroleum and coal product manufacturing,,0.04
+2016,British Columbia,All employees,Chemical manufacturing,,0.29
+2016,British Columbia,All employees,Basic chemical manufacturing,,0.03
+2016,British Columbia,All employees,Pharmaceutical and medicine manufacturing,,0.11
+2016,British Columbia,All employees,"Paint, coating and adhesive manufacturing",,0.03
+2016,British Columbia,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.07
+2016,British Columbia,All employees,Other chemical product manufacturing,,0.02
+2016,British Columbia,All employees,Plastics and rubber products manufacturing,,0.26
+2016,British Columbia,All employees,Plastic product manufacturing,,
+2016,British Columbia,All employees,Durable goods,,3.98
+2016,British Columbia,All employees,Wood product manufacturing,,1.26
+2016,British Columbia,All employees,Sawmills and wood preservation,,0.71
+2016,British Columbia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.21
+2016,British Columbia,All employees,Other wood product manufacturing,,0.33
+2016,British Columbia,All employees,Non-metallic mineral product manufacturing,,0.28
+2016,British Columbia,All employees,Glass and glass product manufacturing,,0.06
+2016,British Columbia,All employees,Cement and concrete product manufacturing,,0.15
+2016,British Columbia,All employees,Other non-metallic mineral product manufacturing,,0.04
+2016,British Columbia,All employees,Primary metal manufacturing,,0.17
+2016,British Columbia,All employees,Fabricated metal product manufacturing,,0.54
+2016,British Columbia,All employees,Forging and stamping,,0.01
+2016,British Columbia,All employees,Cutlery and hand tool manufacturing,,0.01
+2016,British Columbia,All employees,Architectural and structural metals manufacturing,,0.29
+2016,British Columbia,All employees,"Boiler, tank and shipping container manufacturing",,0.03
+2016,British Columbia,All employees,Spring and wire product manufacturing,,0.01
+2016,British Columbia,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.09
+2016,British Columbia,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
+2016,British Columbia,All employees,Other fabricated metal product manufacturing,,0.06
+2016,British Columbia,All employees,Machinery manufacturing,,0.42
+2016,British Columbia,All employees,"Agricultural, construction and mining machinery manufacturing",,0.05
+2016,British Columbia,All employees,Industrial machinery manufacturing,,0.09
+2016,British Columbia,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.07
+2016,British Columbia,All employees,Metalworking machinery manufacturing,,0.04
+2016,British Columbia,All employees,Other general-purpose machinery manufacturing,,0.11
+2016,British Columbia,All employees,Computer and electronic product manufacturing,,0.25
+2016,British Columbia,All employees,Computer and peripheral equipment manufacturing,,0.04
+2016,British Columbia,All employees,Communications equipment manufacturing,,0.04
+2016,British Columbia,All employees,Semiconductor and other electronic component manufacturing,,0.06
+2016,British Columbia,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.09
+2016,British Columbia,All employees,"Electrical equipment, appliance and component manufacturing",,0.13
+2016,British Columbia,All employees,Electrical equipment manufacturing,,0.04
+2016,British Columbia,All employees,Other electrical equipment and component manufacturing,,0.07
+2016,British Columbia,All employees,Transportation equipment manufacturing,,0.32
+2016,British Columbia,All employees,Motor vehicle body and trailer manufacturing,,0.07
+2016,British Columbia,All employees,Aerospace product and parts manufacturing,,0.08
+2016,British Columbia,All employees,Ship and boat building,,0.09
+2016,British Columbia,All employees,Furniture and related product manufacturing,,0.28
+2016,British Columbia,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.23
+2016,British Columbia,All employees,Office furniture (including fixtures) manufacturing,,0.03
+2016,British Columbia,All employees,Other furniture-related product manufacturing,,0.02
+2016,British Columbia,All employees,Miscellaneous manufacturing,,0.33
+2016,British Columbia,All employees,Medical equipment and supplies manufacturing,,0.1
+2016,British Columbia,All employees,Other miscellaneous manufacturing,,0.22
+2016,British Columbia,Salaried employees paid a fixed salary,Manufacturing,,1.65
+2016,British Columbia,Salaried employees paid a fixed salary,Non-durable goods,,0.71
+2016,British Columbia,Salaried employees paid a fixed salary,Food manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2016,British Columbia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Clothing manufacturing,,0.03
+2016,British Columbia,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Paper manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2016,British Columbia,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Printing and related support activities,,
+2016,British Columbia,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2016,British Columbia,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Plastic product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Durable goods,,0.94
+2016,British Columbia,Salaried employees paid a fixed salary,Wood product manufacturing,,0.2
+2016,British Columbia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.12
+2016,British Columbia,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2016,British Columbia,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.03
+2016,British Columbia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.05
+2016,British Columbia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Forging and stamping,,
+2016,British Columbia,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2016,British Columbia,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2016,British Columbia,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Machinery manufacturing,,0.14
+2016,British Columbia,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2016,British Columbia,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,British Columbia,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Ship and boat building,,
+2016,British Columbia,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.04
+2016,British Columbia,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2016,British Columbia,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.07
+2016,British Columbia,Employees paid by the hour,Manufacturing,,4.77
+2016,British Columbia,Employees paid by the hour,Non-durable goods,,1.95
+2016,British Columbia,Employees paid by the hour,Food manufacturing,,
+2016,British Columbia,Employees paid by the hour,Animal food manufacturing,,
+2016,British Columbia,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2016,British Columbia,Employees paid by the hour,Meat product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Seafood product preparation and packaging,,
+2016,British Columbia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2016,British Columbia,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Cannabis product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Clothing manufacturing,,0.05
+2016,British Columbia,Employees paid by the hour,Other leather and allied product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Paper manufacturing,,
+2016,British Columbia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2016,British Columbia,Employees paid by the hour,Converted paper product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Printing and related support activities,,
+2016,British Columbia,Employees paid by the hour,Basic chemical manufacturing,,
+2016,British Columbia,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2016,British Columbia,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2016,British Columbia,Employees paid by the hour,Other chemical product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2016,British Columbia,Employees paid by the hour,Plastic product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Durable goods,,2.82
+2016,British Columbia,Employees paid by the hour,Wood product manufacturing,,1.02
+2016,British Columbia,Employees paid by the hour,Sawmills and wood preservation,,0.57
+2016,British Columbia,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2016,British Columbia,Employees paid by the hour,Other wood product manufacturing,,0.27
+2016,British Columbia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Glass and glass product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Cement and concrete product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Primary metal manufacturing,,0.12
+2016,British Columbia,Employees paid by the hour,Fabricated metal product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Forging and stamping,,
+2016,British Columbia,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2016,British Columbia,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2016,British Columbia,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2016,British Columbia,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2016,British Columbia,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2016,British Columbia,Employees paid by the hour,Machinery manufacturing,,0.26
+2016,British Columbia,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2016,British Columbia,Employees paid by the hour,Industrial machinery manufacturing,,
+2016,British Columbia,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2016,British Columbia,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2016,British Columbia,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2016,British Columbia,Employees paid by the hour,Electrical equipment manufacturing,,
+2016,British Columbia,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2016,British Columbia,Employees paid by the hour,Transportation equipment manufacturing,,
+2016,British Columbia,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2016,British Columbia,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2016,British Columbia,Employees paid by the hour,Ship and boat building,,
+2016,British Columbia,Employees paid by the hour,Furniture and related product manufacturing,,0.22
+2016,British Columbia,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2016,British Columbia,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2016,British Columbia,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2016,British Columbia,Employees paid by the hour,Other miscellaneous manufacturing,,0.13
+2016,Yukon,All employees,Cannabis product manufacturing,,
+2016,Yukon,All employees,Durable goods,,0.52
+2016,Yukon,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,Yukon,Salaried employees paid a fixed salary,Durable goods,,
+2016,Yukon,Employees paid by the hour,Cannabis product manufacturing,,
+2016,Yukon,Employees paid by the hour,Durable goods,,
+2016,Northwest Territories,All employees,Cannabis product manufacturing,,
+2016,Northwest Territories,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,Northwest Territories,Employees paid by the hour,Cannabis product manufacturing,,
+2016,Nunavut,All employees,Cannabis product manufacturing,,
+2016,Nunavut,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2016,Nunavut,Employees paid by the hour,Cannabis product manufacturing,,
+2017,Canada,All employees,Non-durable goods,,3.8
+2017,Canada,All employees,Food manufacturing,,1.39
+2017,Canada,All employees,Animal food manufacturing,,0.06
+2017,Canada,All employees,Grain and oilseed milling,,0.04
+2017,Canada,All employees,Sugar and confectionery product manufacturing,,0.06
+2017,Canada,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.11
+2017,Canada,All employees,Dairy product manufacturing,,0.14
+2017,Canada,All employees,Meat product manufacturing,,0.36
+2017,Canada,All employees,Seafood product preparation and packaging,,0.13
+2017,Canada,All employees,Bakeries and tortilla manufacturing,,0.28
+2017,Canada,All employees,Other food manufacturing,,0.2
+2017,Canada,All employees,Beverage and tobacco product manufacturing,,0.25
+2017,Canada,All employees,Beverage manufacturing,,0.24
+2017,Canada,All employees,Tobacco manufacturing,,0.02
+2017,Canada,All employees,Cannabis product manufacturing,,
+2017,Canada,All employees,Textile mills,,0.04
+2017,Canada,All employees,"Fibre, yarn and thread mills",,0.01
+2017,Canada,All employees,Fabric mills,,0.02
+2017,Canada,All employees,Textile and fabric finishing and fabric coating,,0.01
+2017,Canada,All employees,Textile product mills,,0.06
+2017,Canada,All employees,Textile furnishings mills,,0.02
+2017,Canada,All employees,Other textile product mills,,0.04
+2017,Canada,All employees,Clothing manufacturing,,0.12
+2017,Canada,All employees,Clothing knitting mills,,0.01
+2017,Canada,All employees,Cut and sew clothing manufacturing,,0.1
+2017,Canada,All employees,Clothing accessories and other clothing manufacturing,,0.01
+2017,Canada,All employees,Leather and allied product manufacturing,,0.02
+2017,Canada,All employees,Leather and hide tanning and finishing,,0
+2017,Canada,All employees,Footwear manufacturing,,0.01
+2017,Canada,All employees,Other leather and allied product manufacturing,,0.01
+2017,Canada,All employees,Paper manufacturing,,0.33
+2017,Canada,All employees,"Pulp, paper and paperboard mills",,0.14
+2017,Canada,All employees,Converted paper product manufacturing,,0.19
+2017,Canada,All employees,Printing and related support activities,,0.3
+2017,Canada,All employees,Petroleum and coal product manufacturing,,0.11
+2017,Canada,All employees,Chemical manufacturing,,0.57
+2017,Canada,All employees,Basic chemical manufacturing,,0.08
+2017,Canada,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.04
+2017,Canada,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
+2017,Canada,All employees,Pharmaceutical and medicine manufacturing,,0.18
+2017,Canada,All employees,"Paint, coating and adhesive manufacturing",,0.05
+2017,Canada,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.11
+2017,Canada,All employees,Other chemical product manufacturing,,0.07
+2017,Canada,All employees,Plastics and rubber products manufacturing,,0.6
+2017,Canada,All employees,Plastic product manufacturing,,0.5
+2017,Canada,All employees,Rubber product manufacturing,,0.1
+2017,Canada,All employees,Durable goods,,5.47
+2017,Canada,All employees,Wood product manufacturing,,0.57
+2017,Canada,All employees,Sawmills and wood preservation,,0.23
+2017,Canada,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.11
+2017,Canada,All employees,Other wood product manufacturing,,0.23
+2017,Canada,All employees,Non-metallic mineral product manufacturing,,0.31
+2017,Canada,All employees,Clay product and refractory manufacturing,,0.01
+2017,Canada,All employees,Glass and glass product manufacturing,,0.05
+2017,Canada,All employees,Cement and concrete product manufacturing,,0.18
+2017,Canada,All employees,Lime and gypsum product manufacturing,,0.01
+2017,Canada,All employees,Other non-metallic mineral product manufacturing,,0.06
+2017,Canada,All employees,Primary metal manufacturing,,0.34
+2017,Canada,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.1
+2017,Canada,All employees,Steel product manufacturing from purchased steel,,0.05
+2017,Canada,All employees,Alumina and aluminum production and processing,,0.06
+2017,Canada,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
+2017,Canada,All employees,Foundries,,0.06
+2017,Canada,All employees,Fabricated metal product manufacturing,,0.94
+2017,Canada,All employees,Forging and stamping,,0.03
+2017,Canada,All employees,Cutlery and hand tool manufacturing,,0.02
+2017,Canada,All employees,Architectural and structural metals manufacturing,,0.36
+2017,Canada,All employees,"Boiler, tank and shipping container manufacturing",,0.07
+2017,Canada,All employees,Hardware manufacturing,,0.03
+2017,Canada,All employees,Spring and wire product manufacturing,,0.03
+2017,Canada,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.19
+2017,Canada,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2017,Canada,All employees,Other fabricated metal product manufacturing,,0.13
+2017,Canada,All employees,Machinery manufacturing,,0.8
+2017,Canada,All employees,"Agricultural, construction and mining machinery manufacturing",,0.17
+2017,Canada,All employees,Industrial machinery manufacturing,,0.09
+2017,Canada,All employees,Commercial and service industry machinery manufacturing,,0.09
+2017,Canada,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.1
+2017,Canada,All employees,Metalworking machinery manufacturing,,0.13
+2017,Canada,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.04
+2017,Canada,All employees,Other general-purpose machinery manufacturing,,0.18
+2017,Canada,All employees,Computer and electronic product manufacturing,,0.34
+2017,Canada,All employees,Computer and peripheral equipment manufacturing,,0.04
+2017,Canada,All employees,Communications equipment manufacturing,,0.08
+2017,Canada,All employees,Audio and video equipment manufacturing,,0.01
+2017,Canada,All employees,Semiconductor and other electronic component manufacturing,,0.09
+2017,Canada,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.12
+2017,Canada,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
+2017,Canada,All employees,"Electrical equipment, appliance and component manufacturing",,0.2
+2017,Canada,All employees,Electric lighting equipment manufacturing,,0.03
+2017,Canada,All employees,Household appliance manufacturing,,0.01
+2017,Canada,All employees,Electrical equipment manufacturing,,0.09
+2017,Canada,All employees,Other electrical equipment and component manufacturing,,0.07
+2017,Canada,All employees,Transportation equipment manufacturing,,1.2
+2017,Canada,All employees,Motor vehicle manufacturing,,0.27
+2017,Canada,All employees,Motor vehicle body and trailer manufacturing,,0.08
+2017,Canada,All employees,Motor vehicle parts manufacturing,,0.45
+2017,Canada,All employees,Aerospace product and parts manufacturing,,0.27
+2017,Canada,All employees,Railroad rolling stock manufacturing,,0.02
+2017,Canada,All employees,Ship and boat building,,0.05
+2017,Canada,All employees,Other transportation equipment manufacturing,,0.06
+2017,Canada,All employees,Furniture and related product manufacturing,,0.41
+2017,Canada,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.25
+2017,Canada,All employees,Office furniture (including fixtures) manufacturing,,0.13
+2017,Canada,All employees,Other furniture-related product manufacturing,,0.03
+2017,Canada,All employees,Miscellaneous manufacturing,,0.35
+2017,Canada,All employees,Medical equipment and supplies manufacturing,,0.11
+2017,Canada,All employees,Other miscellaneous manufacturing,,0.24
+2017,Canada,Salaried employees paid a fixed salary,Manufacturing,,2.29
+2017,Canada,Salaried employees paid a fixed salary,Non-durable goods,,0.97
+2017,Canada,Salaried employees paid a fixed salary,Food manufacturing,,0.27
+2017,Canada,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2017,Canada,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Meat product manufacturing,,0.06
+2017,Canada,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2017,Canada,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Other food manufacturing,,0.04
+2017,Canada,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Beverage manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Tobacco manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Textile mills,,0.01
+2017,Canada,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,0
+2017,Canada,Salaried employees paid a fixed salary,Fabric mills,,
+2017,Canada,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
+2017,Canada,Salaried employees paid a fixed salary,Textile product mills,,0.01
+2017,Canada,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
+2017,Canada,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2017,Canada,Salaried employees paid a fixed salary,Footwear manufacturing,,0
+2017,Canada,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,0
+2017,Canada,Salaried employees paid a fixed salary,Paper manufacturing,,0.07
+2017,Canada,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2017,Canada,Salaried employees paid a fixed salary,Printing and related support activities,,0.08
+2017,Canada,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Chemical manufacturing,,0.23
+2017,Canada,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2017,Canada,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2017,Canada,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,0.07
+2017,Canada,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,0.04
+2017,Canada,Salaried employees paid a fixed salary,Other chemical product manufacturing,,0.03
+2017,Canada,Salaried employees paid a fixed salary,Rubber product manufacturing,,0.02
+2017,Canada,Salaried employees paid a fixed salary,Durable goods,,1.32
+2017,Canada,Salaried employees paid a fixed salary,Wood product manufacturing,,0.09
+2017,Canada,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.04
+2017,Canada,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,0.02
+2017,Canada,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.07
+2017,Canada,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,0.04
+2017,Canada,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.09
+2017,Canada,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2017,Canada,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2017,Canada,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2017,Canada,Salaried employees paid a fixed salary,Foundries,,0.01
+2017,Canada,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.18
+2017,Canada,Salaried employees paid a fixed salary,Forging and stamping,,
+2017,Canada,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.08
+2017,Canada,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,0.02
+2017,Canada,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.02
+2017,Canada,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,0.01
+2017,Canada,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,0.02
+2017,Canada,Salaried employees paid a fixed salary,Machinery manufacturing,,0.22
+2017,Canada,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2017,Canada,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,0.02
+2017,Canada,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,0.05
+2017,Canada,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2017,Canada,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2017,Canada,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,0.05
+2017,Canada,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.18
+2017,Canada,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Communications equipment manufacturing,,0.04
+2017,Canada,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,0.04
+2017,Canada,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,0.07
+2017,Canada,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.08
+2017,Canada,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,0.04
+2017,Canada,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,0.03
+2017,Canada,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Ship and boat building,,
+2017,Canada,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.06
+2017,Canada,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.03
+2017,Canada,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,0.02
+2017,Canada,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2017,Canada,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.09
+2017,Canada,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,0.03
+2017,Canada,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.06
+2017,Canada,Employees paid by the hour,Manufacturing,,6.56
+2017,Canada,Employees paid by the hour,Non-durable goods,,2.68
+2017,Canada,Employees paid by the hour,Food manufacturing,,1.09
+2017,Canada,Employees paid by the hour,Animal food manufacturing,,
+2017,Canada,Employees paid by the hour,Grain and oilseed milling,,
+2017,Canada,Employees paid by the hour,Sugar and confectionery product manufacturing,,
+2017,Canada,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2017,Canada,Employees paid by the hour,Dairy product manufacturing,,
+2017,Canada,Employees paid by the hour,Meat product manufacturing,,0.29
+2017,Canada,Employees paid by the hour,Seafood product preparation and packaging,,
+2017,Canada,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2017,Canada,Employees paid by the hour,Other food manufacturing,,0.14
+2017,Canada,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2017,Canada,Employees paid by the hour,Beverage manufacturing,,
+2017,Canada,Employees paid by the hour,Tobacco manufacturing,,
+2017,Canada,Employees paid by the hour,Cannabis product manufacturing,,
+2017,Canada,Employees paid by the hour,Textile mills,,0.03
+2017,Canada,Employees paid by the hour,"Fibre, yarn and thread mills",,0.01
+2017,Canada,Employees paid by the hour,Fabric mills,,
+2017,Canada,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
+2017,Canada,Employees paid by the hour,Textile product mills,,0.05
+2017,Canada,Employees paid by the hour,Clothing manufacturing,,0.08
+2017,Canada,Employees paid by the hour,Cut and sew clothing manufacturing,,
+2017,Canada,Employees paid by the hour,Leather and allied product manufacturing,,0.01
+2017,Canada,Employees paid by the hour,Leather and hide tanning and finishing,,
+2017,Canada,Employees paid by the hour,Footwear manufacturing,,0.01
+2017,Canada,Employees paid by the hour,Other leather and allied product manufacturing,,0.01
+2017,Canada,Employees paid by the hour,Paper manufacturing,,0.26
+2017,Canada,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2017,Canada,Employees paid by the hour,Printing and related support activities,,0.19
+2017,Canada,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2017,Canada,Employees paid by the hour,Chemical manufacturing,,0.33
+2017,Canada,Employees paid by the hour,Basic chemical manufacturing,,
+2017,Canada,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2017,Canada,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2017,Canada,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,0.11
+2017,Canada,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,0.06
+2017,Canada,Employees paid by the hour,Other chemical product manufacturing,,0.04
+2017,Canada,Employees paid by the hour,Rubber product manufacturing,,0.07
+2017,Canada,Employees paid by the hour,Durable goods,,3.88
+2017,Canada,Employees paid by the hour,Wood product manufacturing,,0.46
+2017,Canada,Employees paid by the hour,Sawmills and wood preservation,,0.18
+2017,Canada,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.09
+2017,Canada,Employees paid by the hour,Other wood product manufacturing,,0.18
+2017,Canada,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.22
+2017,Canada,Employees paid by the hour,Clay product and refractory manufacturing,,
+2017,Canada,Employees paid by the hour,Glass and glass product manufacturing,,
+2017,Canada,Employees paid by the hour,Cement and concrete product manufacturing,,0.14
+2017,Canada,Employees paid by the hour,Lime and gypsum product manufacturing,,
+2017,Canada,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2017,Canada,Employees paid by the hour,Primary metal manufacturing,,0.24
+2017,Canada,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2017,Canada,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2017,Canada,Employees paid by the hour,Alumina and aluminum production and processing,,
+2017,Canada,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2017,Canada,Employees paid by the hour,Foundries,,0.05
+2017,Canada,Employees paid by the hour,Fabricated metal product manufacturing,,0.7
+2017,Canada,Employees paid by the hour,Forging and stamping,,
+2017,Canada,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2017,Canada,Employees paid by the hour,Architectural and structural metals manufacturing,,0.26
+2017,Canada,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,0.05
+2017,Canada,Employees paid by the hour,Hardware manufacturing,,
+2017,Canada,Employees paid by the hour,Spring and wire product manufacturing,,
+2017,Canada,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.15
+2017,Canada,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,0.06
+2017,Canada,Employees paid by the hour,Other fabricated metal product manufacturing,,0.09
+2017,Canada,Employees paid by the hour,Machinery manufacturing,,0.55
+2017,Canada,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2017,Canada,Employees paid by the hour,Industrial machinery manufacturing,,0.06
+2017,Canada,Employees paid by the hour,Commercial and service industry machinery manufacturing,,0.04
+2017,Canada,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2017,Canada,Employees paid by the hour,Metalworking machinery manufacturing,,
+2017,Canada,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2017,Canada,Employees paid by the hour,Other general-purpose machinery manufacturing,,0.13
+2017,Canada,Employees paid by the hour,Computer and electronic product manufacturing,,0.14
+2017,Canada,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
+2017,Canada,Employees paid by the hour,Communications equipment manufacturing,,0.04
+2017,Canada,Employees paid by the hour,Audio and video equipment manufacturing,,
+2017,Canada,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,0.04
+2017,Canada,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,0.05
+2017,Canada,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.11
+2017,Canada,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2017,Canada,Employees paid by the hour,Household appliance manufacturing,,
+2017,Canada,Employees paid by the hour,Electrical equipment manufacturing,,0.05
+2017,Canada,Employees paid by the hour,Other electrical equipment and component manufacturing,,0.04
+2017,Canada,Employees paid by the hour,Transportation equipment manufacturing,,
+2017,Canada,Employees paid by the hour,Motor vehicle manufacturing,,
+2017,Canada,Employees paid by the hour,Motor vehicle parts manufacturing,,
+2017,Canada,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2017,Canada,Employees paid by the hour,Ship and boat building,,
+2017,Canada,Employees paid by the hour,Other transportation equipment manufacturing,,
+2017,Canada,Employees paid by the hour,Furniture and related product manufacturing,,0.32
+2017,Canada,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.2
+2017,Canada,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,0.1
+2017,Canada,Employees paid by the hour,Other furniture-related product manufacturing,,
+2017,Canada,Employees paid by the hour,Miscellaneous manufacturing,,0.2
+2017,Canada,Employees paid by the hour,Medical equipment and supplies manufacturing,,0.06
+2017,Canada,Employees paid by the hour,Other miscellaneous manufacturing,,0.14
+2017,Newfoundland and Labrador,All employees,Manufacturing,10,4.63
+2017,Newfoundland and Labrador,All employees,Non-durable goods,,3.52
+2017,Newfoundland and Labrador,All employees,Food manufacturing,,2.56
+2017,Newfoundland and Labrador,All employees,Seafood product preparation and packaging,,2.04
+2017,Newfoundland and Labrador,All employees,Cannabis product manufacturing,,
+2017,Newfoundland and Labrador,All employees,Durable goods,,1.12
+2017,Newfoundland and Labrador,All employees,Sawmills and wood preservation,,
+2017,Newfoundland and Labrador,All employees,Ship and boat building,,0.17
+2017,Newfoundland and Labrador,All employees,Other miscellaneous manufacturing,,0.07
+2017,Newfoundland and Labrador,Salaried employees paid a fixed salary,Manufacturing,,
+2017,Newfoundland and Labrador,Salaried employees paid a fixed salary,Non-durable goods,,
+2017,Newfoundland and Labrador,Salaried employees paid a fixed salary,Food manufacturing,,
+2017,Newfoundland and Labrador,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,Newfoundland and Labrador,Salaried employees paid a fixed salary,Durable goods,,0.22
+2017,Newfoundland and Labrador,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2017,Newfoundland and Labrador,Employees paid by the hour,Manufacturing,,
+2017,Newfoundland and Labrador,Employees paid by the hour,Non-durable goods,,
+2017,Newfoundland and Labrador,Employees paid by the hour,Food manufacturing,,
+2017,Newfoundland and Labrador,Employees paid by the hour,Cannabis product manufacturing,,
+2017,Newfoundland and Labrador,Employees paid by the hour,Durable goods,,0.81
+2017,Newfoundland and Labrador,Employees paid by the hour,Other miscellaneous manufacturing,,
+2017,Prince Edward Island,All employees,Manufacturing,11,7.77
+2017,Prince Edward Island,All employees,Non-durable goods,,4.92
+2017,Prince Edward Island,All employees,Food manufacturing,,3.33
+2017,Prince Edward Island,All employees,Seafood product preparation and packaging,,
+2017,Prince Edward Island,All employees,Cannabis product manufacturing,,
+2017,Prince Edward Island,All employees,Printing and related support activities,,0.15
+2017,Prince Edward Island,All employees,Durable goods,,2.85
+2017,Prince Edward Island,Salaried employees paid a fixed salary,Manufacturing,,2.17
+2017,Prince Edward Island,Salaried employees paid a fixed salary,Food manufacturing,,0.6
+2017,Prince Edward Island,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2017,Prince Edward Island,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,Prince Edward Island,Salaried employees paid a fixed salary,Durable goods,,1.12
+2017,Prince Edward Island,Employees paid by the hour,Manufacturing,,5.31
+2017,Prince Edward Island,Employees paid by the hour,Food manufacturing,,2.64
+2017,Prince Edward Island,Employees paid by the hour,Seafood product preparation and packaging,,
+2017,Prince Edward Island,Employees paid by the hour,Cannabis product manufacturing,,
+2017,Prince Edward Island,Employees paid by the hour,Durable goods,,1.6
+2017,Nova Scotia,All employees,Manufacturing,12,7.48
+2017,Nova Scotia,All employees,Non-durable goods,,4.74
+2017,Nova Scotia,All employees,Food manufacturing,,2.24
+2017,Nova Scotia,All employees,Animal food manufacturing,,
+2017,Nova Scotia,All employees,Dairy product manufacturing,,
+2017,Nova Scotia,All employees,Meat product manufacturing,,0.13
+2017,Nova Scotia,All employees,Seafood product preparation and packaging,,1.32
+2017,Nova Scotia,All employees,Bakeries and tortilla manufacturing,,0.2
+2017,Nova Scotia,All employees,Beverage and tobacco product manufacturing,,0.27
+2017,Nova Scotia,All employees,Cannabis product manufacturing,,
+2017,Nova Scotia,All employees,Fabric mills,,
+2017,Nova Scotia,All employees,Clothing manufacturing,,0.08
+2017,Nova Scotia,All employees,Paper manufacturing,,0.26
+2017,Nova Scotia,All employees,"Pulp, paper and paperboard mills",,
+2017,Nova Scotia,All employees,Printing and related support activities,,0.21
+2017,Nova Scotia,All employees,Plastics and rubber products manufacturing,,1.2
+2017,Nova Scotia,All employees,Durable goods,,2.73
+2017,Nova Scotia,All employees,Wood product manufacturing,,0.44
+2017,Nova Scotia,All employees,Sawmills and wood preservation,,0.23
+2017,Nova Scotia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.09
+2017,Nova Scotia,All employees,Other wood product manufacturing,,0.11
+2017,Nova Scotia,All employees,Non-metallic mineral product manufacturing,,0.18
+2017,Nova Scotia,All employees,Cement and concrete product manufacturing,,0.14
+2017,Nova Scotia,All employees,Other non-metallic mineral product manufacturing,,
+2017,Nova Scotia,All employees,Fabricated metal product manufacturing,,0.46
+2017,Nova Scotia,All employees,Spring and wire product manufacturing,,0.03
+2017,Nova Scotia,All employees,Machinery manufacturing,,0.21
+2017,Nova Scotia,All employees,Commercial and service industry machinery manufacturing,,0.06
+2017,Nova Scotia,All employees,Other general-purpose machinery manufacturing,,0.03
+2017,Nova Scotia,All employees,Transportation equipment manufacturing,,0.95
+2017,Nova Scotia,All employees,Aerospace product and parts manufacturing,,0.39
+2017,Nova Scotia,All employees,Ship and boat building,,0.53
+2017,Nova Scotia,All employees,Miscellaneous manufacturing,,0.15
+2017,Nova Scotia,All employees,Medical equipment and supplies manufacturing,,0.05
+2017,Nova Scotia,All employees,Other miscellaneous manufacturing,,0.1
+2017,Nova Scotia,Salaried employees paid a fixed salary,Manufacturing,,1.45
+2017,Nova Scotia,Salaried employees paid a fixed salary,Non-durable goods,,0.85
+2017,Nova Scotia,Salaried employees paid a fixed salary,Food manufacturing,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Paper manufacturing,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Printing and related support activities,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Durable goods,,0.6
+2017,Nova Scotia,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.16
+2017,Nova Scotia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2017,Nova Scotia,Salaried employees paid a fixed salary,Ship and boat building,,
+2017,Nova Scotia,Employees paid by the hour,Manufacturing,,5.74
+2017,Nova Scotia,Employees paid by the hour,Non-durable goods,,3.71
+2017,Nova Scotia,Employees paid by the hour,Food manufacturing,,
+2017,Nova Scotia,Employees paid by the hour,Animal food manufacturing,,
+2017,Nova Scotia,Employees paid by the hour,Seafood product preparation and packaging,,
+2017,Nova Scotia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2017,Nova Scotia,Employees paid by the hour,Cannabis product manufacturing,,
+2017,Nova Scotia,Employees paid by the hour,Paper manufacturing,,
+2017,Nova Scotia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2017,Nova Scotia,Employees paid by the hour,Printing and related support activities,,
+2017,Nova Scotia,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2017,Nova Scotia,Employees paid by the hour,Durable goods,,2.03
+2017,Nova Scotia,Employees paid by the hour,Wood product manufacturing,,
+2017,Nova Scotia,Employees paid by the hour,Sawmills and wood preservation,,
+2017,Nova Scotia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2017,Nova Scotia,Employees paid by the hour,Cement and concrete product manufacturing,,
+2017,Nova Scotia,Employees paid by the hour,Fabricated metal product manufacturing,,
+2017,Nova Scotia,Employees paid by the hour,Machinery manufacturing,,
+2017,Nova Scotia,Employees paid by the hour,Transportation equipment manufacturing,,0.76
+2017,Nova Scotia,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2017,Nova Scotia,Employees paid by the hour,Ship and boat building,,
+2017,New Brunswick,All employees,Manufacturing,13,9.28
+2017,New Brunswick,All employees,Non-durable goods,,5.27
+2017,New Brunswick,All employees,Food manufacturing,,3.31
+2017,New Brunswick,All employees,Seafood product preparation and packaging,,1.42
+2017,New Brunswick,All employees,Beverage and tobacco product manufacturing,,0.24
+2017,New Brunswick,All employees,Cannabis product manufacturing,,
+2017,New Brunswick,All employees,"Fibre, yarn and thread mills",,
+2017,New Brunswick,All employees,Paper manufacturing,,0.86
+2017,New Brunswick,All employees,"Pulp, paper and paperboard mills",,0.62
+2017,New Brunswick,All employees,Converted paper product manufacturing,,0.24
+2017,New Brunswick,All employees,Printing and related support activities,,0.07
+2017,New Brunswick,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.07
+2017,New Brunswick,All employees,Durable goods,,4.01
+2017,New Brunswick,All employees,Wood product manufacturing,,1.51
+2017,New Brunswick,All employees,Sawmills and wood preservation,,0.81
+2017,New Brunswick,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.22
+2017,New Brunswick,All employees,Other wood product manufacturing,,0.48
+2017,New Brunswick,All employees,Non-metallic mineral product manufacturing,,0.28
+2017,New Brunswick,All employees,Other non-metallic mineral product manufacturing,,
+2017,New Brunswick,All employees,Fabricated metal product manufacturing,,0.65
+2017,New Brunswick,All employees,Architectural and structural metals manufacturing,,0.42
+2017,New Brunswick,All employees,Machinery manufacturing,,0.35
+2017,New Brunswick,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.15
+2017,New Brunswick,All employees,Other general-purpose machinery manufacturing,,0.07
+2017,New Brunswick,All employees,Computer and electronic product manufacturing,,
+2017,New Brunswick,All employees,Furniture and related product manufacturing,,0.25
+2017,New Brunswick,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.23
+2017,New Brunswick,All employees,Miscellaneous manufacturing,,0.48
+2017,New Brunswick,All employees,Medical equipment and supplies manufacturing,,0.03
+2017,New Brunswick,All employees,Other miscellaneous manufacturing,,0.45
+2017,New Brunswick,Salaried employees paid a fixed salary,Manufacturing,,1.94
+2017,New Brunswick,Salaried employees paid a fixed salary,Non-durable goods,,1.11
+2017,New Brunswick,Salaried employees paid a fixed salary,Food manufacturing,,0.6
+2017,New Brunswick,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,New Brunswick,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2017,New Brunswick,Salaried employees paid a fixed salary,Paper manufacturing,,
+2017,New Brunswick,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2017,New Brunswick,Salaried employees paid a fixed salary,Durable goods,,0.83
+2017,New Brunswick,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2017,New Brunswick,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2017,New Brunswick,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.08
+2017,New Brunswick,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2017,New Brunswick,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2017,New Brunswick,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2017,New Brunswick,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2017,New Brunswick,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2017,New Brunswick,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2017,New Brunswick,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2017,New Brunswick,Employees paid by the hour,Manufacturing,,7.02
+2017,New Brunswick,Employees paid by the hour,Non-durable goods,,4.02
+2017,New Brunswick,Employees paid by the hour,Food manufacturing,,2.6
+2017,New Brunswick,Employees paid by the hour,Cannabis product manufacturing,,
+2017,New Brunswick,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2017,New Brunswick,Employees paid by the hour,Paper manufacturing,,
+2017,New Brunswick,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2017,New Brunswick,Employees paid by the hour,Durable goods,,3.01
+2017,New Brunswick,Employees paid by the hour,Wood product manufacturing,,
+2017,New Brunswick,Employees paid by the hour,Sawmills and wood preservation,,
+2017,New Brunswick,Employees paid by the hour,Other wood product manufacturing,,0.37
+2017,New Brunswick,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2017,New Brunswick,Employees paid by the hour,Fabricated metal product manufacturing,,
+2017,New Brunswick,Employees paid by the hour,Machinery manufacturing,,
+2017,New Brunswick,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2017,New Brunswick,Employees paid by the hour,Computer and electronic product manufacturing,,
+2017,New Brunswick,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2017,New Brunswick,Employees paid by the hour,Other miscellaneous manufacturing,,
+2017,Quebec,All employees,Manufacturing,24,11.61
+2017,Quebec,All employees,Non-durable goods,,4.87
+2017,Quebec,All employees,Food manufacturing,,1.67
+2017,Quebec,All employees,Animal food manufacturing,,0.07
+2017,Quebec,All employees,Grain and oilseed milling,,0.04
+2017,Quebec,All employees,Sugar and confectionery product manufacturing,,0.11
+2017,Quebec,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.14
+2017,Quebec,All employees,Dairy product manufacturing,,0.24
+2017,Quebec,All employees,Meat product manufacturing,,0.46
+2017,Quebec,All employees,Seafood product preparation and packaging,,0.04
+2017,Quebec,All employees,Bakeries and tortilla manufacturing,,0.34
+2017,Quebec,All employees,Other food manufacturing,,0.24
+2017,Quebec,All employees,Beverage and tobacco product manufacturing,,0.26
+2017,Quebec,All employees,Cannabis product manufacturing,,
+2017,Quebec,All employees,Textile mills,,0.09
+2017,Quebec,All employees,"Fibre, yarn and thread mills",,0.01
+2017,Quebec,All employees,Fabric mills,,0.06
+2017,Quebec,All employees,Textile and fabric finishing and fabric coating,,0.01
+2017,Quebec,All employees,Textile product mills,,0.09
+2017,Quebec,All employees,Textile furnishings mills,,0.04
+2017,Quebec,All employees,Other textile product mills,,0.05
+2017,Quebec,All employees,Clothing manufacturing,,0.29
+2017,Quebec,All employees,Clothing knitting mills,,0.03
+2017,Quebec,All employees,Cut and sew clothing manufacturing,,0.24
+2017,Quebec,All employees,Clothing accessories and other clothing manufacturing,,0.02
+2017,Quebec,All employees,Leather and allied product manufacturing,,0.03
+2017,Quebec,All employees,Leather and hide tanning and finishing,,0
+2017,Quebec,All employees,Footwear manufacturing,,0.02
+2017,Quebec,All employees,Other leather and allied product manufacturing,,0.01
+2017,Quebec,All employees,Paper manufacturing,,0.58
+2017,Quebec,All employees,"Pulp, paper and paperboard mills",,0.22
+2017,Quebec,All employees,Converted paper product manufacturing,,0.36
+2017,Quebec,All employees,Printing and related support activities,,0.33
+2017,Quebec,All employees,Petroleum and coal product manufacturing,,0.09
+2017,Quebec,All employees,Chemical manufacturing,,0.68
+2017,Quebec,All employees,Basic chemical manufacturing,,0.08
+2017,Quebec,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.02
+2017,Quebec,All employees,Pharmaceutical and medicine manufacturing,,0.24
+2017,Quebec,All employees,"Paint, coating and adhesive manufacturing",,0.07
+2017,Quebec,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.12
+2017,Quebec,All employees,Other chemical product manufacturing,,0.09
+2017,Quebec,All employees,Plastics and rubber products manufacturing,,0.75
+2017,Quebec,All employees,Plastic product manufacturing,,0.6
+2017,Quebec,All employees,Rubber product manufacturing,,0.15
+2017,Quebec,All employees,Durable goods,,6.75
+2017,Quebec,All employees,Wood product manufacturing,,0.8
+2017,Quebec,All employees,Sawmills and wood preservation,,0.27
+2017,Quebec,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
+2017,Quebec,All employees,Other wood product manufacturing,,0.38
+2017,Quebec,All employees,Non-metallic mineral product manufacturing,,0.37
+2017,Quebec,All employees,Clay product and refractory manufacturing,,0.01
+2017,Quebec,All employees,Glass and glass product manufacturing,,0.07
+2017,Quebec,All employees,Cement and concrete product manufacturing,,0.2
+2017,Quebec,All employees,Lime and gypsum product manufacturing,,0.02
+2017,Quebec,All employees,Other non-metallic mineral product manufacturing,,0.08
+2017,Quebec,All employees,Primary metal manufacturing,,0.47
+2017,Quebec,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.05
+2017,Quebec,All employees,Steel product manufacturing from purchased steel,,0.03
+2017,Quebec,All employees,Alumina and aluminum production and processing,,0.18
+2017,Quebec,All employees,Non-ferrous metal (except aluminum) production and processing,,0.12
+2017,Quebec,All employees,Foundries,,0.09
+2017,Quebec,All employees,Fabricated metal product manufacturing,,1.21
+2017,Quebec,All employees,Forging and stamping,,0.06
+2017,Quebec,All employees,Cutlery and hand tool manufacturing,,0.03
+2017,Quebec,All employees,Architectural and structural metals manufacturing,,0.49
+2017,Quebec,All employees,"Boiler, tank and shipping container manufacturing",,0.07
+2017,Quebec,All employees,Hardware manufacturing,,0.02
+2017,Quebec,All employees,Spring and wire product manufacturing,,0.03
+2017,Quebec,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.26
+2017,Quebec,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.08
+2017,Quebec,All employees,Other fabricated metal product manufacturing,,0.18
+2017,Quebec,All employees,Machinery manufacturing,,0.88
+2017,Quebec,All employees,"Agricultural, construction and mining machinery manufacturing",,0.09
+2017,Quebec,All employees,Industrial machinery manufacturing,,0.15
+2017,Quebec,All employees,Commercial and service industry machinery manufacturing,,0.17
+2017,Quebec,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.15
+2017,Quebec,All employees,Metalworking machinery manufacturing,,0.06
+2017,Quebec,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.07
+2017,Quebec,All employees,Other general-purpose machinery manufacturing,,0.18
+2017,Quebec,All employees,Computer and electronic product manufacturing,,0.41
+2017,Quebec,All employees,Communications equipment manufacturing,,0.08
+2017,Quebec,All employees,Audio and video equipment manufacturing,,0.01
+2017,Quebec,All employees,Semiconductor and other electronic component manufacturing,,0.12
+2017,Quebec,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.17
+2017,Quebec,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
+2017,Quebec,All employees,"Electrical equipment, appliance and component manufacturing",,0.3
+2017,Quebec,All employees,Electric lighting equipment manufacturing,,0.07
+2017,Quebec,All employees,Household appliance manufacturing,,0.02
+2017,Quebec,All employees,Electrical equipment manufacturing,,0.11
+2017,Quebec,All employees,Other electrical equipment and component manufacturing,,0.11
+2017,Quebec,All employees,Transportation equipment manufacturing,,1.21
+2017,Quebec,All employees,Motor vehicle body and trailer manufacturing,,0.13
+2017,Quebec,All employees,Motor vehicle parts manufacturing,,0.12
+2017,Quebec,All employees,Aerospace product and parts manufacturing,,0.67
+2017,Quebec,All employees,Other transportation equipment manufacturing,,0.13
+2017,Quebec,All employees,Furniture and related product manufacturing,,0.63
+2017,Quebec,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.44
+2017,Quebec,All employees,Office furniture (including fixtures) manufacturing,,0.15
+2017,Quebec,All employees,Other furniture-related product manufacturing,,0.04
+2017,Quebec,All employees,Miscellaneous manufacturing,,0.47
+2017,Quebec,All employees,Medical equipment and supplies manufacturing,,0.13
+2017,Quebec,All employees,Other miscellaneous manufacturing,,0.34
+2017,Quebec,Salaried employees paid a fixed salary,Manufacturing,,2.78
+2017,Quebec,Salaried employees paid a fixed salary,Non-durable goods,,1.09
+2017,Quebec,Salaried employees paid a fixed salary,Food manufacturing,,0.29
+2017,Quebec,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2017,Quebec,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Other food manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Textile mills,,0.02
+2017,Quebec,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2017,Quebec,Salaried employees paid a fixed salary,Fabric mills,,
+2017,Quebec,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
+2017,Quebec,Salaried employees paid a fixed salary,Textile product mills,,
+2017,Quebec,Salaried employees paid a fixed salary,Textile furnishings mills,,
+2017,Quebec,Salaried employees paid a fixed salary,Other textile product mills,,
+2017,Quebec,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Clothing knitting mills,,
+2017,Quebec,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Clothing accessories and other clothing manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2017,Quebec,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Paper manufacturing,,0.13
+2017,Quebec,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2017,Quebec,Salaried employees paid a fixed salary,Printing and related support activities,,0.07
+2017,Quebec,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Chemical manufacturing,,0.26
+2017,Quebec,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2017,Quebec,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
+2017,Quebec,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2017,Quebec,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.09
+2017,Quebec,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Durable goods,,1.69
+2017,Quebec,Salaried employees paid a fixed salary,Wood product manufacturing,,0.09
+2017,Quebec,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2017,Quebec,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2017,Quebec,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.1
+2017,Quebec,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2017,Quebec,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2017,Quebec,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2017,Quebec,Salaried employees paid a fixed salary,Foundries,,
+2017,Quebec,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.18
+2017,Quebec,Salaried employees paid a fixed salary,Forging and stamping,,
+2017,Quebec,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2017,Quebec,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Machinery manufacturing,,0.23
+2017,Quebec,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2017,Quebec,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2017,Quebec,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2017,Quebec,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,Quebec,Salaried employees paid a fixed salary,Manufacturing and reproducing magnetic and optical media,,
+2017,Quebec,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2017,Quebec,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.09
+2017,Quebec,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.06
+2017,Quebec,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.09
+2017,Quebec,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2017,Quebec,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.07
+2017,Quebec,Employees paid by the hour,Manufacturing,,8.31
+2017,Quebec,Employees paid by the hour,Non-durable goods,,3.57
+2017,Quebec,Employees paid by the hour,Food manufacturing,,1.35
+2017,Quebec,Employees paid by the hour,Animal food manufacturing,,
+2017,Quebec,Employees paid by the hour,Grain and oilseed milling,,
+2017,Quebec,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2017,Quebec,Employees paid by the hour,Dairy product manufacturing,,
+2017,Quebec,Employees paid by the hour,Meat product manufacturing,,
+2017,Quebec,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2017,Quebec,Employees paid by the hour,Other food manufacturing,,
+2017,Quebec,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2017,Quebec,Employees paid by the hour,Cannabis product manufacturing,,
+2017,Quebec,Employees paid by the hour,Textile mills,,0.07
+2017,Quebec,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2017,Quebec,Employees paid by the hour,Fabric mills,,
+2017,Quebec,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
+2017,Quebec,Employees paid by the hour,Textile product mills,,
+2017,Quebec,Employees paid by the hour,Textile furnishings mills,,
+2017,Quebec,Employees paid by the hour,Other textile product mills,,
+2017,Quebec,Employees paid by the hour,Clothing manufacturing,,0.2
+2017,Quebec,Employees paid by the hour,Clothing knitting mills,,
+2017,Quebec,Employees paid by the hour,Cut and sew clothing manufacturing,,
+2017,Quebec,Employees paid by the hour,Clothing accessories and other clothing manufacturing,,
+2017,Quebec,Employees paid by the hour,Leather and hide tanning and finishing,,
+2017,Quebec,Employees paid by the hour,Footwear manufacturing,,
+2017,Quebec,Employees paid by the hour,Other leather and allied product manufacturing,,
+2017,Quebec,Employees paid by the hour,Paper manufacturing,,0.44
+2017,Quebec,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2017,Quebec,Employees paid by the hour,Printing and related support activities,,0.21
+2017,Quebec,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2017,Quebec,Employees paid by the hour,Chemical manufacturing,,0.41
+2017,Quebec,Employees paid by the hour,Basic chemical manufacturing,,
+2017,Quebec,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2017,Quebec,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2017,Quebec,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
+2017,Quebec,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2017,Quebec,Employees paid by the hour,Other chemical product manufacturing,,
+2017,Quebec,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2017,Quebec,Employees paid by the hour,Plastic product manufacturing,,0.48
+2017,Quebec,Employees paid by the hour,Rubber product manufacturing,,
+2017,Quebec,Employees paid by the hour,Durable goods,,4.74
+2017,Quebec,Employees paid by the hour,Wood product manufacturing,,0.67
+2017,Quebec,Employees paid by the hour,Sawmills and wood preservation,,
+2017,Quebec,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2017,Quebec,Employees paid by the hour,Other wood product manufacturing,,0.31
+2017,Quebec,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.25
+2017,Quebec,Employees paid by the hour,Clay product and refractory manufacturing,,
+2017,Quebec,Employees paid by the hour,Glass and glass product manufacturing,,
+2017,Quebec,Employees paid by the hour,Cement and concrete product manufacturing,,
+2017,Quebec,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2017,Quebec,Employees paid by the hour,Primary metal manufacturing,,
+2017,Quebec,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2017,Quebec,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2017,Quebec,Employees paid by the hour,Alumina and aluminum production and processing,,
+2017,Quebec,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2017,Quebec,Employees paid by the hour,Foundries,,
+2017,Quebec,Employees paid by the hour,Fabricated metal product manufacturing,,0.96
+2017,Quebec,Employees paid by the hour,Forging and stamping,,
+2017,Quebec,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2017,Quebec,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2017,Quebec,Employees paid by the hour,Hardware manufacturing,,
+2017,Quebec,Employees paid by the hour,Spring and wire product manufacturing,,
+2017,Quebec,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2017,Quebec,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2017,Quebec,Employees paid by the hour,Machinery manufacturing,,0.62
+2017,Quebec,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2017,Quebec,Employees paid by the hour,Industrial machinery manufacturing,,
+2017,Quebec,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2017,Quebec,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2017,Quebec,Employees paid by the hour,Metalworking machinery manufacturing,,
+2017,Quebec,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2017,Quebec,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2017,Quebec,Employees paid by the hour,Communications equipment manufacturing,,
+2017,Quebec,Employees paid by the hour,Audio and video equipment manufacturing,,
+2017,Quebec,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2017,Quebec,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,Quebec,Employees paid by the hour,Manufacturing and reproducing magnetic and optical media,,
+2017,Quebec,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2017,Quebec,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2017,Quebec,Employees paid by the hour,Household appliance manufacturing,,
+2017,Quebec,Employees paid by the hour,Electrical equipment manufacturing,,
+2017,Quebec,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2017,Quebec,Employees paid by the hour,Transportation equipment manufacturing,,
+2017,Quebec,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2017,Quebec,Employees paid by the hour,Other transportation equipment manufacturing,,
+2017,Quebec,Employees paid by the hour,Furniture and related product manufacturing,,0.48
+2017,Quebec,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.34
+2017,Quebec,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2017,Quebec,Employees paid by the hour,Miscellaneous manufacturing,,0.31
+2017,Quebec,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2017,Quebec,Employees paid by the hour,Other miscellaneous manufacturing,,0.22
+2017,Ontario,All employees,Manufacturing,35,10.58
+2017,Ontario,All employees,Non-durable goods,,4
+2017,Ontario,All employees,Food manufacturing,,1.24
+2017,Ontario,All employees,Animal food manufacturing,,0.06
+2017,Ontario,All employees,Grain and oilseed milling,,0.05
+2017,Ontario,All employees,Sugar and confectionery product manufacturing,,0.07
+2017,Ontario,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.09
+2017,Ontario,All employees,Dairy product manufacturing,,0.14
+2017,Ontario,All employees,Meat product manufacturing,,0.3
+2017,Ontario,All employees,Seafood product preparation and packaging,,0.01
+2017,Ontario,All employees,Bakeries and tortilla manufacturing,,0.32
+2017,Ontario,All employees,Other food manufacturing,,0.21
+2017,Ontario,All employees,Beverage and tobacco product manufacturing,,0.28
+2017,Ontario,All employees,Cannabis product manufacturing,,
+2017,Ontario,All employees,Textile mills,,0.05
+2017,Ontario,All employees,"Fibre, yarn and thread mills",,0.01
+2017,Ontario,All employees,Fabric mills,,0.02
+2017,Ontario,All employees,Textile and fabric finishing and fabric coating,,0.02
+2017,Ontario,All employees,Textile product mills,,0.06
+2017,Ontario,All employees,Textile furnishings mills,,0.02
+2017,Ontario,All employees,Other textile product mills,,0.04
+2017,Ontario,All employees,Clothing manufacturing,,0.09
+2017,Ontario,All employees,Clothing knitting mills,,0
+2017,Ontario,All employees,Cut and sew clothing manufacturing,,0.07
+2017,Ontario,All employees,Clothing accessories and other clothing manufacturing,,0.01
+2017,Ontario,All employees,Leather and allied product manufacturing,,0.02
+2017,Ontario,All employees,Leather and hide tanning and finishing,,0
+2017,Ontario,All employees,Footwear manufacturing,,0
+2017,Ontario,All employees,Other leather and allied product manufacturing,,0.02
+2017,Ontario,All employees,Paper manufacturing,,0.27
+2017,Ontario,All employees,"Pulp, paper and paperboard mills",,0.06
+2017,Ontario,All employees,Converted paper product manufacturing,,0.21
+2017,Ontario,All employees,Printing and related support activities,,0.37
+2017,Ontario,All employees,Petroleum and coal product manufacturing,,0.1
+2017,Ontario,All employees,Chemical manufacturing,,0.74
+2017,Ontario,All employees,Basic chemical manufacturing,,0.09
+2017,Ontario,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.07
+2017,Ontario,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
+2017,Ontario,All employees,Pharmaceutical and medicine manufacturing,,0.25
+2017,Ontario,All employees,"Paint, coating and adhesive manufacturing",,0.06
+2017,Ontario,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.17
+2017,Ontario,All employees,Other chemical product manufacturing,,0.09
+2017,Ontario,All employees,Plastics and rubber products manufacturing,,0.79
+2017,Ontario,All employees,Plastic product manufacturing,,0.7
+2017,Ontario,All employees,Rubber product manufacturing,,0.09
+2017,Ontario,All employees,Durable goods,,6.57
+2017,Ontario,All employees,Wood product manufacturing,,0.27
+2017,Ontario,All employees,Sawmills and wood preservation,,0.05
+2017,Ontario,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.06
+2017,Ontario,All employees,Other wood product manufacturing,,0.16
+2017,Ontario,All employees,Non-metallic mineral product manufacturing,,0.31
+2017,Ontario,All employees,Clay product and refractory manufacturing,,0.02
+2017,Ontario,All employees,Glass and glass product manufacturing,,0.05
+2017,Ontario,All employees,Cement and concrete product manufacturing,,0.17
+2017,Ontario,All employees,Lime and gypsum product manufacturing,,0.01
+2017,Ontario,All employees,Other non-metallic mineral product manufacturing,,0.06
+2017,Ontario,All employees,Primary metal manufacturing,,0.42
+2017,Ontario,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.2
+2017,Ontario,All employees,Steel product manufacturing from purchased steel,,0.06
+2017,Ontario,All employees,Alumina and aluminum production and processing,,0.04
+2017,Ontario,All employees,Non-ferrous metal (except aluminum) production and processing,,0.05
+2017,Ontario,All employees,Foundries,,0.07
+2017,Ontario,All employees,Fabricated metal product manufacturing,,1.03
+2017,Ontario,All employees,Forging and stamping,,0.05
+2017,Ontario,All employees,Cutlery and hand tool manufacturing,,0.04
+2017,Ontario,All employees,Architectural and structural metals manufacturing,,0.34
+2017,Ontario,All employees,"Boiler, tank and shipping container manufacturing",,0.06
+2017,Ontario,All employees,Hardware manufacturing,,0.06
+2017,Ontario,All employees,Spring and wire product manufacturing,,0.03
+2017,Ontario,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.22
+2017,Ontario,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.09
+2017,Ontario,All employees,Other fabricated metal product manufacturing,,0.15
+2017,Ontario,All employees,Machinery manufacturing,,0.96
+2017,Ontario,All employees,"Agricultural, construction and mining machinery manufacturing",,0.12
+2017,Ontario,All employees,Industrial machinery manufacturing,,0.11
+2017,Ontario,All employees,Commercial and service industry machinery manufacturing,,0.1
+2017,Ontario,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
+2017,Ontario,All employees,Metalworking machinery manufacturing,,0.27
+2017,Ontario,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.04
+2017,Ontario,All employees,Other general-purpose machinery manufacturing,,0.24
+2017,Ontario,All employees,Computer and electronic product manufacturing,,0.47
+2017,Ontario,All employees,Computer and peripheral equipment manufacturing,,0.06
+2017,Ontario,All employees,Communications equipment manufacturing,,0.12
+2017,Ontario,All employees,Audio and video equipment manufacturing,,0.01
+2017,Ontario,All employees,Semiconductor and other electronic component manufacturing,,0.11
+2017,Ontario,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.15
+2017,Ontario,All employees,"Electrical equipment, appliance and component manufacturing",,0.25
+2017,Ontario,All employees,Electric lighting equipment manufacturing,,0.03
+2017,Ontario,All employees,Household appliance manufacturing,,0.02
+2017,Ontario,All employees,Electrical equipment manufacturing,,0.11
+2017,Ontario,All employees,Other electrical equipment and component manufacturing,,0.09
+2017,Ontario,All employees,Transportation equipment manufacturing,,2.02
+2017,Ontario,All employees,Motor vehicle manufacturing,,0.6
+2017,Ontario,All employees,Motor vehicle body and trailer manufacturing,,0.06
+2017,Ontario,All employees,Motor vehicle parts manufacturing,,1.05
+2017,Ontario,All employees,Aerospace product and parts manufacturing,,0.19
+2017,Ontario,All employees,Railroad rolling stock manufacturing,,
+2017,Ontario,All employees,Furniture and related product manufacturing,,0.46
+2017,Ontario,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
+2017,Ontario,All employees,Office furniture (including fixtures) manufacturing,,0.23
+2017,Ontario,All employees,Other furniture-related product manufacturing,,0.03
+2017,Ontario,All employees,Miscellaneous manufacturing,,0.39
+2017,Ontario,All employees,Medical equipment and supplies manufacturing,,0.14
+2017,Ontario,All employees,Other miscellaneous manufacturing,,0.25
+2017,Ontario,Salaried employees paid a fixed salary,Manufacturing,,2.67
+2017,Ontario,Salaried employees paid a fixed salary,Non-durable goods,,1.11
+2017,Ontario,Salaried employees paid a fixed salary,Food manufacturing,,0.28
+2017,Ontario,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2017,Ontario,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Other food manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Textile mills,,0.01
+2017,Ontario,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2017,Ontario,Salaried employees paid a fixed salary,Fabric mills,,
+2017,Ontario,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
+2017,Ontario,Salaried employees paid a fixed salary,Textile furnishings mills,,
+2017,Ontario,Salaried employees paid a fixed salary,Other textile product mills,,
+2017,Ontario,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
+2017,Ontario,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2017,Ontario,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Paper manufacturing,,0.06
+2017,Ontario,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2017,Ontario,Salaried employees paid a fixed salary,Printing and related support activities,,0.11
+2017,Ontario,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Chemical manufacturing,,0.28
+2017,Ontario,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2017,Ontario,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2017,Ontario,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
+2017,Ontario,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2017,Ontario,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Plastic product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Durable goods,,1.56
+2017,Ontario,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2017,Ontario,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2017,Ontario,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.11
+2017,Ontario,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2017,Ontario,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2017,Ontario,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2017,Ontario,Salaried employees paid a fixed salary,Foundries,,
+2017,Ontario,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.22
+2017,Ontario,Salaried employees paid a fixed salary,Forging and stamping,,
+2017,Ontario,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.09
+2017,Ontario,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2017,Ontario,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
+2017,Ontario,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
+2017,Ontario,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Machinery manufacturing,,0.28
+2017,Ontario,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2017,Ontario,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2017,Ontario,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2017,Ontario,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,Ontario,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.1
+2017,Ontario,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Railroad rolling stock manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.07
+2017,Ontario,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.03
+2017,Ontario,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2017,Ontario,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2017,Ontario,Employees paid by the hour,Manufacturing,,7.43
+2017,Ontario,Employees paid by the hour,Non-durable goods,,2.74
+2017,Ontario,Employees paid by the hour,Food manufacturing,,0.93
+2017,Ontario,Employees paid by the hour,Animal food manufacturing,,
+2017,Ontario,Employees paid by the hour,Grain and oilseed milling,,
+2017,Ontario,Employees paid by the hour,Sugar and confectionery product manufacturing,,
+2017,Ontario,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2017,Ontario,Employees paid by the hour,Dairy product manufacturing,,
+2017,Ontario,Employees paid by the hour,Meat product manufacturing,,
+2017,Ontario,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2017,Ontario,Employees paid by the hour,Other food manufacturing,,
+2017,Ontario,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2017,Ontario,Employees paid by the hour,Cannabis product manufacturing,,
+2017,Ontario,Employees paid by the hour,Textile mills,,0.04
+2017,Ontario,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2017,Ontario,Employees paid by the hour,Fabric mills,,
+2017,Ontario,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
+2017,Ontario,Employees paid by the hour,Textile furnishings mills,,
+2017,Ontario,Employees paid by the hour,Other textile product mills,,
+2017,Ontario,Employees paid by the hour,Clothing manufacturing,,
+2017,Ontario,Employees paid by the hour,Leather and allied product manufacturing,,0.02
+2017,Ontario,Employees paid by the hour,Leather and hide tanning and finishing,,
+2017,Ontario,Employees paid by the hour,Footwear manufacturing,,
+2017,Ontario,Employees paid by the hour,Other leather and allied product manufacturing,,
+2017,Ontario,Employees paid by the hour,Paper manufacturing,,0.21
+2017,Ontario,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2017,Ontario,Employees paid by the hour,Printing and related support activities,,0.22
+2017,Ontario,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2017,Ontario,Employees paid by the hour,Chemical manufacturing,,0.44
+2017,Ontario,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2017,Ontario,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2017,Ontario,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
+2017,Ontario,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2017,Ontario,Employees paid by the hour,Other chemical product manufacturing,,
+2017,Ontario,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2017,Ontario,Employees paid by the hour,Plastic product manufacturing,,
+2017,Ontario,Employees paid by the hour,Rubber product manufacturing,,
+2017,Ontario,Employees paid by the hour,Durable goods,,4.69
+2017,Ontario,Employees paid by the hour,Wood product manufacturing,,
+2017,Ontario,Employees paid by the hour,Sawmills and wood preservation,,
+2017,Ontario,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2017,Ontario,Employees paid by the hour,Other wood product manufacturing,,0.12
+2017,Ontario,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2017,Ontario,Employees paid by the hour,Clay product and refractory manufacturing,,
+2017,Ontario,Employees paid by the hour,Glass and glass product manufacturing,,
+2017,Ontario,Employees paid by the hour,Cement and concrete product manufacturing,,
+2017,Ontario,Employees paid by the hour,Lime and gypsum product manufacturing,,
+2017,Ontario,Employees paid by the hour,Primary metal manufacturing,,0.3
+2017,Ontario,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2017,Ontario,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2017,Ontario,Employees paid by the hour,Alumina and aluminum production and processing,,
+2017,Ontario,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2017,Ontario,Employees paid by the hour,Foundries,,
+2017,Ontario,Employees paid by the hour,Fabricated metal product manufacturing,,0.74
+2017,Ontario,Employees paid by the hour,Forging and stamping,,
+2017,Ontario,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2017,Ontario,Employees paid by the hour,Architectural and structural metals manufacturing,,0.24
+2017,Ontario,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2017,Ontario,Employees paid by the hour,Hardware manufacturing,,
+2017,Ontario,Employees paid by the hour,Spring and wire product manufacturing,,
+2017,Ontario,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.17
+2017,Ontario,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
+2017,Ontario,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2017,Ontario,Employees paid by the hour,Machinery manufacturing,,0.65
+2017,Ontario,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2017,Ontario,Employees paid by the hour,Industrial machinery manufacturing,,
+2017,Ontario,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2017,Ontario,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2017,Ontario,Employees paid by the hour,Metalworking machinery manufacturing,,
+2017,Ontario,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2017,Ontario,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2017,Ontario,Employees paid by the hour,Computer and electronic product manufacturing,,
+2017,Ontario,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
+2017,Ontario,Employees paid by the hour,Communications equipment manufacturing,,
+2017,Ontario,Employees paid by the hour,Audio and video equipment manufacturing,,
+2017,Ontario,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2017,Ontario,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,Ontario,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.14
+2017,Ontario,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2017,Ontario,Employees paid by the hour,Household appliance manufacturing,,
+2017,Ontario,Employees paid by the hour,Electrical equipment manufacturing,,
+2017,Ontario,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2017,Ontario,Employees paid by the hour,Transportation equipment manufacturing,,
+2017,Ontario,Employees paid by the hour,Motor vehicle manufacturing,,
+2017,Ontario,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2017,Ontario,Employees paid by the hour,Motor vehicle parts manufacturing,,
+2017,Ontario,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2017,Ontario,Employees paid by the hour,Railroad rolling stock manufacturing,,
+2017,Ontario,Employees paid by the hour,Furniture and related product manufacturing,,0.35
+2017,Ontario,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.16
+2017,Ontario,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2017,Ontario,Employees paid by the hour,Miscellaneous manufacturing,,
+2017,Ontario,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2017,Ontario,Employees paid by the hour,Other miscellaneous manufacturing,,
+2017,Manitoba,All employees,Manufacturing,46,8.88
+2017,Manitoba,All employees,Non-durable goods,,3.66
+2017,Manitoba,All employees,Food manufacturing,,1.53
+2017,Manitoba,All employees,Animal food manufacturing,,0.06
+2017,Manitoba,All employees,Meat product manufacturing,,0.68
+2017,Manitoba,All employees,Bakeries and tortilla manufacturing,,0.21
+2017,Manitoba,All employees,Beverage and tobacco product manufacturing,,0.17
+2017,Manitoba,All employees,Cannabis product manufacturing,,
+2017,Manitoba,All employees,Textile and fabric finishing and fabric coating,,
+2017,Manitoba,All employees,Other textile product mills,,
+2017,Manitoba,All employees,Cut and sew clothing manufacturing,,
+2017,Manitoba,All employees,Leather and hide tanning and finishing,,
+2017,Manitoba,All employees,Paper manufacturing,,0.19
+2017,Manitoba,All employees,"Pulp, paper and paperboard mills",,
+2017,Manitoba,All employees,Printing and related support activities,,0.51
+2017,Manitoba,All employees,Chemical manufacturing,,0.43
+2017,Manitoba,All employees,Basic chemical manufacturing,,0.06
+2017,Manitoba,All employees,Durable goods,,5.22
+2017,Manitoba,All employees,Wood product manufacturing,,0.34
+2017,Manitoba,All employees,Sawmills and wood preservation,,
+2017,Manitoba,All employees,"Veneer, plywood and engineered wood product manufacturing",,
+2017,Manitoba,All employees,Other wood product manufacturing,,0.21
+2017,Manitoba,All employees,Non-metallic mineral product manufacturing,,0.22
+2017,Manitoba,All employees,Cement and concrete product manufacturing,,0.16
+2017,Manitoba,All employees,Other non-metallic mineral product manufacturing,,0.03
+2017,Manitoba,All employees,Primary metal manufacturing,,0.53
+2017,Manitoba,All employees,Foundries,,0.13
+2017,Manitoba,All employees,Fabricated metal product manufacturing,,0.73
+2017,Manitoba,All employees,Architectural and structural metals manufacturing,,0.29
+2017,Manitoba,All employees,"Boiler, tank and shipping container manufacturing",,0.13
+2017,Manitoba,All employees,Spring and wire product manufacturing,,
+2017,Manitoba,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.06
+2017,Manitoba,All employees,Machinery manufacturing,,0.97
+2017,Manitoba,All employees,"Agricultural, construction and mining machinery manufacturing",,0.63
+2017,Manitoba,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
+2017,Manitoba,All employees,Other general-purpose machinery manufacturing,,0.14
+2017,Manitoba,All employees,Computer and electronic product manufacturing,,0.09
+2017,Manitoba,All employees,Semiconductor and other electronic component manufacturing,,0.03
+2017,Manitoba,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.02
+2017,Manitoba,All employees,Electrical equipment manufacturing,,0.12
+2017,Manitoba,All employees,Transportation equipment manufacturing,,1.37
+2017,Manitoba,All employees,Motor vehicle body and trailer manufacturing,,0.21
+2017,Manitoba,All employees,Aerospace product and parts manufacturing,,0.63
+2017,Manitoba,All employees,Furniture and related product manufacturing,,0.6
+2017,Manitoba,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.55
+2017,Manitoba,All employees,Office furniture (including fixtures) manufacturing,,0.05
+2017,Manitoba,All employees,Other furniture-related product manufacturing,,0.01
+2017,Manitoba,All employees,Miscellaneous manufacturing,,0.25
+2017,Manitoba,All employees,Medical equipment and supplies manufacturing,,0.09
+2017,Manitoba,All employees,Other miscellaneous manufacturing,,0.16
+2017,Manitoba,Salaried employees paid a fixed salary,Manufacturing,,1.86
+2017,Manitoba,Salaried employees paid a fixed salary,Non-durable goods,,0.77
+2017,Manitoba,Salaried employees paid a fixed salary,Food manufacturing,,0.23
+2017,Manitoba,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
+2017,Manitoba,Salaried employees paid a fixed salary,Other textile product mills,,
+2017,Manitoba,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Paper manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2017,Manitoba,Salaried employees paid a fixed salary,Printing and related support activities,,
+2017,Manitoba,Salaried employees paid a fixed salary,Chemical manufacturing,,0.13
+2017,Manitoba,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Durable goods,,1.08
+2017,Manitoba,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2017,Manitoba,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2017,Manitoba,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Machinery manufacturing,,0.22
+2017,Manitoba,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2017,Manitoba,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2017,Manitoba,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,Manitoba,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.08
+2017,Manitoba,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.07
+2017,Manitoba,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2017,Manitoba,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2017,Manitoba,Employees paid by the hour,Manufacturing,,6.63
+2017,Manitoba,Employees paid by the hour,Non-durable goods,,2.71
+2017,Manitoba,Employees paid by the hour,Food manufacturing,,1.26
+2017,Manitoba,Employees paid by the hour,Animal food manufacturing,,
+2017,Manitoba,Employees paid by the hour,Meat product manufacturing,,
+2017,Manitoba,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2017,Manitoba,Employees paid by the hour,Cannabis product manufacturing,,
+2017,Manitoba,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
+2017,Manitoba,Employees paid by the hour,Other textile product mills,,
+2017,Manitoba,Employees paid by the hour,Clothing manufacturing,,
+2017,Manitoba,Employees paid by the hour,Cut and sew clothing manufacturing,,
+2017,Manitoba,Employees paid by the hour,Leather and hide tanning and finishing,,
+2017,Manitoba,Employees paid by the hour,Paper manufacturing,,
+2017,Manitoba,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2017,Manitoba,Employees paid by the hour,Printing and related support activities,,
+2017,Manitoba,Employees paid by the hour,Chemical manufacturing,,0.28
+2017,Manitoba,Employees paid by the hour,Basic chemical manufacturing,,
+2017,Manitoba,Employees paid by the hour,Durable goods,,3.92
+2017,Manitoba,Employees paid by the hour,Wood product manufacturing,,
+2017,Manitoba,Employees paid by the hour,Sawmills and wood preservation,,
+2017,Manitoba,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2017,Manitoba,Employees paid by the hour,Other wood product manufacturing,,
+2017,Manitoba,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2017,Manitoba,Employees paid by the hour,Cement and concrete product manufacturing,,
+2017,Manitoba,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2017,Manitoba,Employees paid by the hour,Primary metal manufacturing,,
+2017,Manitoba,Employees paid by the hour,Fabricated metal product manufacturing,,
+2017,Manitoba,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2017,Manitoba,Employees paid by the hour,Machinery manufacturing,,0.72
+2017,Manitoba,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2017,Manitoba,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2017,Manitoba,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2017,Manitoba,Employees paid by the hour,Computer and electronic product manufacturing,,
+2017,Manitoba,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,Manitoba,Employees paid by the hour,Electrical equipment manufacturing,,
+2017,Manitoba,Employees paid by the hour,Transportation equipment manufacturing,,
+2017,Manitoba,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2017,Manitoba,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2017,Manitoba,Employees paid by the hour,Furniture and related product manufacturing,,0.47
+2017,Manitoba,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.43
+2017,Manitoba,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2017,Manitoba,Employees paid by the hour,Other furniture-related product manufacturing,,
+2017,Manitoba,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2017,Manitoba,Employees paid by the hour,Other miscellaneous manufacturing,,
+2017,Saskatchewan,All employees,Manufacturing,47,5.01
+2017,Saskatchewan,All employees,Non-durable goods,,1.82
+2017,Saskatchewan,All employees,Food manufacturing,,0.9
+2017,Saskatchewan,All employees,Animal food manufacturing,,0.08
+2017,Saskatchewan,All employees,Grain and oilseed milling,,0.2
+2017,Saskatchewan,All employees,Meat product manufacturing,,0.4
+2017,Saskatchewan,All employees,Beverage and tobacco product manufacturing,,0.14
+2017,Saskatchewan,All employees,Cannabis product manufacturing,,
+2017,Saskatchewan,All employees,Printing and related support activities,,0.11
+2017,Saskatchewan,All employees,Chemical manufacturing,,0.28
+2017,Saskatchewan,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.13
+2017,Saskatchewan,All employees,Durable goods,,3.2
+2017,Saskatchewan,All employees,Wood product manufacturing,,0.39
+2017,Saskatchewan,All employees,Sawmills and wood preservation,,0.11
+2017,Saskatchewan,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.19
+2017,Saskatchewan,All employees,Other wood product manufacturing,,0.09
+2017,Saskatchewan,All employees,Cement and concrete product manufacturing,,0.17
+2017,Saskatchewan,All employees,Fabricated metal product manufacturing,,0.63
+2017,Saskatchewan,All employees,Architectural and structural metals manufacturing,,0.29
+2017,Saskatchewan,All employees,"Coating, engraving, cold and heat treating and allied activities",,
+2017,Saskatchewan,All employees,Machinery manufacturing,,1.03
+2017,Saskatchewan,All employees,"Agricultural, construction and mining machinery manufacturing",,0.84
+2017,Saskatchewan,All employees,Computer and electronic product manufacturing,,0.14
+2017,Saskatchewan,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,Saskatchewan,All employees,Motor vehicle body and trailer manufacturing,,0.16
+2017,Saskatchewan,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.12
+2017,Saskatchewan,All employees,Miscellaneous manufacturing,,0.13
+2017,Saskatchewan,All employees,Medical equipment and supplies manufacturing,,0.06
+2017,Saskatchewan,All employees,Other miscellaneous manufacturing,,0.07
+2017,Saskatchewan,Salaried employees paid a fixed salary,Manufacturing,,1.36
+2017,Saskatchewan,Salaried employees paid a fixed salary,Non-durable goods,,0.55
+2017,Saskatchewan,Salaried employees paid a fixed salary,Food manufacturing,,
+2017,Saskatchewan,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2017,Saskatchewan,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2017,Saskatchewan,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,Saskatchewan,Salaried employees paid a fixed salary,Printing and related support activities,,
+2017,Saskatchewan,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2017,Saskatchewan,Salaried employees paid a fixed salary,Durable goods,,0.8
+2017,Saskatchewan,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.14
+2017,Saskatchewan,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2017,Saskatchewan,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2017,Saskatchewan,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2017,Saskatchewan,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2017,Saskatchewan,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,Saskatchewan,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2017,Saskatchewan,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2017,Saskatchewan,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2017,Saskatchewan,Employees paid by the hour,Manufacturing,,3.51
+2017,Saskatchewan,Employees paid by the hour,Non-durable goods,,1.22
+2017,Saskatchewan,Employees paid by the hour,Food manufacturing,,
+2017,Saskatchewan,Employees paid by the hour,Grain and oilseed milling,,
+2017,Saskatchewan,Employees paid by the hour,Meat product manufacturing,,
+2017,Saskatchewan,Employees paid by the hour,Cannabis product manufacturing,,
+2017,Saskatchewan,Employees paid by the hour,Printing and related support activities,,
+2017,Saskatchewan,Employees paid by the hour,Chemical manufacturing,,
+2017,Saskatchewan,Employees paid by the hour,Durable goods,,2.29
+2017,Saskatchewan,Employees paid by the hour,Fabricated metal product manufacturing,,0.46
+2017,Saskatchewan,Employees paid by the hour,Machinery manufacturing,,
+2017,Saskatchewan,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2017,Saskatchewan,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2017,Saskatchewan,Employees paid by the hour,Computer and electronic product manufacturing,,
+2017,Saskatchewan,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,Saskatchewan,Employees paid by the hour,Transportation equipment manufacturing,,
+2017,Saskatchewan,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2017,Saskatchewan,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2017,Alberta,All employees,Manufacturing,48,5.99
+2017,Alberta,All employees,Non-durable goods,,2.56
+2017,Alberta,All employees,Food manufacturing,,1.04
+2017,Alberta,All employees,Animal food manufacturing,,0.06
+2017,Alberta,All employees,Grain and oilseed milling,,0.04
+2017,Alberta,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.04
+2017,Alberta,All employees,Meat product manufacturing,,0.51
+2017,Alberta,All employees,Bakeries and tortilla manufacturing,,0.15
+2017,Alberta,All employees,Other food manufacturing,,0.15
+2017,Alberta,All employees,Beverage and tobacco product manufacturing,,0.15
+2017,Alberta,All employees,Cannabis product manufacturing,,
+2017,Alberta,All employees,Cut and sew clothing manufacturing,,0.01
+2017,Alberta,All employees,Other leather and allied product manufacturing,,
+2017,Alberta,All employees,Paper manufacturing,,0.11
+2017,Alberta,All employees,"Pulp, paper and paperboard mills",,0.08
+2017,Alberta,All employees,Converted paper product manufacturing,,0.03
+2017,Alberta,All employees,Printing and related support activities,,0.21
+2017,Alberta,All employees,Petroleum and coal product manufacturing,,0.25
+2017,Alberta,All employees,Chemical manufacturing,,0.47
+2017,Alberta,All employees,Basic chemical manufacturing,,0.13
+2017,Alberta,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.15
+2017,Alberta,All employees,Other chemical product manufacturing,,0.06
+2017,Alberta,All employees,Plastics and rubber products manufacturing,,0.28
+2017,Alberta,All employees,Durable goods,,3.43
+2017,Alberta,All employees,Wood product manufacturing,,0.47
+2017,Alberta,All employees,Sawmills and wood preservation,,0.2
+2017,Alberta,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.12
+2017,Alberta,All employees,Other wood product manufacturing,,0.15
+2017,Alberta,All employees,Non-metallic mineral product manufacturing,,0.36
+2017,Alberta,All employees,Glass and glass product manufacturing,,
+2017,Alberta,All employees,Cement and concrete product manufacturing,,0.25
+2017,Alberta,All employees,Other non-metallic mineral product manufacturing,,0.07
+2017,Alberta,All employees,Primary metal manufacturing,,0.13
+2017,Alberta,All employees,Fabricated metal product manufacturing,,0.98
+2017,Alberta,All employees,Forging and stamping,,
+2017,Alberta,All employees,Architectural and structural metals manufacturing,,0.43
+2017,Alberta,All employees,"Boiler, tank and shipping container manufacturing",,0.14
+2017,Alberta,All employees,Spring and wire product manufacturing,,0.03
+2017,Alberta,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.18
+2017,Alberta,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2017,Alberta,All employees,Other fabricated metal product manufacturing,,0.12
+2017,Alberta,All employees,Machinery manufacturing,,0.78
+2017,Alberta,All employees,"Agricultural, construction and mining machinery manufacturing",,0.39
+2017,Alberta,All employees,Industrial machinery manufacturing,,
+2017,Alberta,All employees,Commercial and service industry machinery manufacturing,,0.02
+2017,Alberta,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.1
+2017,Alberta,All employees,Metalworking machinery manufacturing,,0.03
+2017,Alberta,All employees,"Engine, turbine and power transmission equipment manufacturing",,
+2017,Alberta,All employees,Other general-purpose machinery manufacturing,,0.19
+2017,Alberta,All employees,Computer and electronic product manufacturing,,0.14
+2017,Alberta,All employees,Computer and peripheral equipment manufacturing,,
+2017,Alberta,All employees,Communications equipment manufacturing,,
+2017,Alberta,All employees,Semiconductor and other electronic component manufacturing,,0.03
+2017,Alberta,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.07
+2017,Alberta,All employees,"Electrical equipment, appliance and component manufacturing",,0.08
+2017,Alberta,All employees,Electrical equipment manufacturing,,0.05
+2017,Alberta,All employees,Other electrical equipment and component manufacturing,,
+2017,Alberta,All employees,Transportation equipment manufacturing,,0.11
+2017,Alberta,All employees,Motor vehicle body and trailer manufacturing,,0.05
+2017,Alberta,All employees,Motor vehicle parts manufacturing,,0.02
+2017,Alberta,All employees,Aerospace product and parts manufacturing,,
+2017,Alberta,All employees,Furniture and related product manufacturing,,0.17
+2017,Alberta,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.11
+2017,Alberta,All employees,Office furniture (including fixtures) manufacturing,,0.04
+2017,Alberta,All employees,Other furniture-related product manufacturing,,0.03
+2017,Alberta,All employees,Miscellaneous manufacturing,,0.21
+2017,Alberta,All employees,Medical equipment and supplies manufacturing,,0.07
+2017,Alberta,All employees,Other miscellaneous manufacturing,,0.14
+2017,Alberta,Salaried employees paid a fixed salary,Manufacturing,,1.71
+2017,Alberta,Salaried employees paid a fixed salary,Non-durable goods,,
+2017,Alberta,Salaried employees paid a fixed salary,Food manufacturing,,0.18
+2017,Alberta,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2017,Alberta,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Paper manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2017,Alberta,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Printing and related support activities,,0.05
+2017,Alberta,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2017,Alberta,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Durable goods,,0.85
+2017,Alberta,Salaried employees paid a fixed salary,Wood product manufacturing,,0.09
+2017,Alberta,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2017,Alberta,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.21
+2017,Alberta,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2017,Alberta,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2017,Alberta,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2017,Alberta,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2017,Alberta,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.08
+2017,Alberta,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,Alberta,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2017,Alberta,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2017,Alberta,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2017,Alberta,Employees paid by the hour,Manufacturing,,4.01
+2017,Alberta,Employees paid by the hour,Non-durable goods,,
+2017,Alberta,Employees paid by the hour,Food manufacturing,,0.84
+2017,Alberta,Employees paid by the hour,Grain and oilseed milling,,
+2017,Alberta,Employees paid by the hour,Meat product manufacturing,,
+2017,Alberta,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2017,Alberta,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2017,Alberta,Employees paid by the hour,Cannabis product manufacturing,,
+2017,Alberta,Employees paid by the hour,Paper manufacturing,,
+2017,Alberta,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2017,Alberta,Employees paid by the hour,Converted paper product manufacturing,,
+2017,Alberta,Employees paid by the hour,Printing and related support activities,,0.14
+2017,Alberta,Employees paid by the hour,Chemical manufacturing,,
+2017,Alberta,Employees paid by the hour,Basic chemical manufacturing,,
+2017,Alberta,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2017,Alberta,Employees paid by the hour,Other chemical product manufacturing,,
+2017,Alberta,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2017,Alberta,Employees paid by the hour,Durable goods,,2.36
+2017,Alberta,Employees paid by the hour,Wood product manufacturing,,0.36
+2017,Alberta,Employees paid by the hour,Sawmills and wood preservation,,
+2017,Alberta,Employees paid by the hour,Other wood product manufacturing,,0.12
+2017,Alberta,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2017,Alberta,Employees paid by the hour,Cement and concrete product manufacturing,,
+2017,Alberta,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2017,Alberta,Employees paid by the hour,Fabricated metal product manufacturing,,0.69
+2017,Alberta,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2017,Alberta,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2017,Alberta,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2017,Alberta,Employees paid by the hour,Machinery manufacturing,,
+2017,Alberta,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2017,Alberta,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2017,Alberta,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2017,Alberta,Employees paid by the hour,Computer and electronic product manufacturing,,0.05
+2017,Alberta,Employees paid by the hour,Communications equipment manufacturing,,
+2017,Alberta,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,Alberta,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2017,Alberta,Employees paid by the hour,Electrical equipment manufacturing,,
+2017,Alberta,Employees paid by the hour,Transportation equipment manufacturing,,
+2017,Alberta,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2017,Alberta,Employees paid by the hour,Motor vehicle parts manufacturing,,
+2017,Alberta,Employees paid by the hour,Furniture and related product manufacturing,,
+2017,Alberta,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2017,Alberta,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2017,Alberta,Employees paid by the hour,Other furniture-related product manufacturing,,
+2017,Alberta,Employees paid by the hour,Miscellaneous manufacturing,,
+2017,Alberta,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2017,Alberta,Employees paid by the hour,Other miscellaneous manufacturing,,
+2017,British Columbia,All employees,Manufacturing,59,6.76
+2017,British Columbia,All employees,Non-durable goods,,2.79
+2017,British Columbia,All employees,Food manufacturing,,1.2
+2017,British Columbia,All employees,Animal food manufacturing,,0.04
+2017,British Columbia,All employees,Grain and oilseed milling,,0.02
+2017,British Columbia,All employees,Sugar and confectionery product manufacturing,,0.05
+2017,British Columbia,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.07
+2017,British Columbia,All employees,Dairy product manufacturing,,0.1
+2017,British Columbia,All employees,Meat product manufacturing,,0.22
+2017,British Columbia,All employees,Seafood product preparation and packaging,,0.16
+2017,British Columbia,All employees,Bakeries and tortilla manufacturing,,0.31
+2017,British Columbia,All employees,Other food manufacturing,,0.23
+2017,British Columbia,All employees,Beverage and tobacco product manufacturing,,0.32
+2017,British Columbia,All employees,Cannabis product manufacturing,,
+2017,British Columbia,All employees,Fabric mills,,
+2017,British Columbia,All employees,Textile product mills,,0.04
+2017,British Columbia,All employees,Textile furnishings mills,,0.01
+2017,British Columbia,All employees,Other textile product mills,,0.03
+2017,British Columbia,All employees,Clothing manufacturing,,0.07
+2017,British Columbia,All employees,Cut and sew clothing manufacturing,,0.05
+2017,British Columbia,All employees,Other leather and allied product manufacturing,,
+2017,British Columbia,All employees,Paper manufacturing,,0.36
+2017,British Columbia,All employees,"Pulp, paper and paperboard mills",,0.26
+2017,British Columbia,All employees,Converted paper product manufacturing,,0.1
+2017,British Columbia,All employees,Printing and related support activities,,0.2
+2017,British Columbia,All employees,Petroleum and coal product manufacturing,,0.04
+2017,British Columbia,All employees,Chemical manufacturing,,0.29
+2017,British Columbia,All employees,Basic chemical manufacturing,,0.03
+2017,British Columbia,All employees,Pharmaceutical and medicine manufacturing,,0.12
+2017,British Columbia,All employees,"Paint, coating and adhesive manufacturing",,0.03
+2017,British Columbia,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.07
+2017,British Columbia,All employees,Other chemical product manufacturing,,0.02
+2017,British Columbia,All employees,Plastics and rubber products manufacturing,,0.24
+2017,British Columbia,All employees,Plastic product manufacturing,,
+2017,British Columbia,All employees,Durable goods,,3.98
+2017,British Columbia,All employees,Wood product manufacturing,,1.23
+2017,British Columbia,All employees,Sawmills and wood preservation,,0.69
+2017,British Columbia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.21
+2017,British Columbia,All employees,Other wood product manufacturing,,0.32
+2017,British Columbia,All employees,Non-metallic mineral product manufacturing,,0.28
+2017,British Columbia,All employees,Glass and glass product manufacturing,,0.07
+2017,British Columbia,All employees,Cement and concrete product manufacturing,,0.15
+2017,British Columbia,All employees,Other non-metallic mineral product manufacturing,,0.04
+2017,British Columbia,All employees,Primary metal manufacturing,,0.17
+2017,British Columbia,All employees,Fabricated metal product manufacturing,,0.54
+2017,British Columbia,All employees,Forging and stamping,,0.01
+2017,British Columbia,All employees,Cutlery and hand tool manufacturing,,
+2017,British Columbia,All employees,Architectural and structural metals manufacturing,,0.28
+2017,British Columbia,All employees,"Boiler, tank and shipping container manufacturing",,0.03
+2017,British Columbia,All employees,Spring and wire product manufacturing,,0.02
+2017,British Columbia,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.09
+2017,British Columbia,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
+2017,British Columbia,All employees,Other fabricated metal product manufacturing,,0.07
+2017,British Columbia,All employees,Machinery manufacturing,,0.41
+2017,British Columbia,All employees,"Agricultural, construction and mining machinery manufacturing",,0.05
+2017,British Columbia,All employees,Industrial machinery manufacturing,,0.07
+2017,British Columbia,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
+2017,British Columbia,All employees,Metalworking machinery manufacturing,,0.04
+2017,British Columbia,All employees,Other general-purpose machinery manufacturing,,0.11
+2017,British Columbia,All employees,Computer and electronic product manufacturing,,0.26
+2017,British Columbia,All employees,Computer and peripheral equipment manufacturing,,0.04
+2017,British Columbia,All employees,Communications equipment manufacturing,,0.04
+2017,British Columbia,All employees,Semiconductor and other electronic component manufacturing,,0.07
+2017,British Columbia,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.1
+2017,British Columbia,All employees,"Electrical equipment, appliance and component manufacturing",,0.14
+2017,British Columbia,All employees,Electrical equipment manufacturing,,0.04
+2017,British Columbia,All employees,Other electrical equipment and component manufacturing,,0.08
+2017,British Columbia,All employees,Transportation equipment manufacturing,,0.33
+2017,British Columbia,All employees,Motor vehicle body and trailer manufacturing,,0.08
+2017,British Columbia,All employees,Aerospace product and parts manufacturing,,0.07
+2017,British Columbia,All employees,Ship and boat building,,0.1
+2017,British Columbia,All employees,Furniture and related product manufacturing,,0.28
+2017,British Columbia,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.22
+2017,British Columbia,All employees,Office furniture (including fixtures) manufacturing,,0.03
+2017,British Columbia,All employees,Other furniture-related product manufacturing,,0.02
+2017,British Columbia,All employees,Miscellaneous manufacturing,,0.32
+2017,British Columbia,All employees,Medical equipment and supplies manufacturing,,0.1
+2017,British Columbia,All employees,Other miscellaneous manufacturing,,0.22
+2017,British Columbia,Salaried employees paid a fixed salary,Manufacturing,,1.65
+2017,British Columbia,Salaried employees paid a fixed salary,Non-durable goods,,0.66
+2017,British Columbia,Salaried employees paid a fixed salary,Food manufacturing,,0.24
+2017,British Columbia,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2017,British Columbia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Paper manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2017,British Columbia,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Printing and related support activities,,
+2017,British Columbia,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2017,British Columbia,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.05
+2017,British Columbia,Salaried employees paid a fixed salary,Plastic product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Durable goods,,0.98
+2017,British Columbia,Salaried employees paid a fixed salary,Wood product manufacturing,,0.25
+2017,British Columbia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.16
+2017,British Columbia,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2017,British Columbia,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.06
+2017,British Columbia,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Forging and stamping,,
+2017,British Columbia,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2017,British Columbia,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2017,British Columbia,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Machinery manufacturing,,0.12
+2017,British Columbia,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2017,British Columbia,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,British Columbia,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Ship and boat building,,
+2017,British Columbia,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2017,British Columbia,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2017,British Columbia,Employees paid by the hour,Manufacturing,,4.76
+2017,British Columbia,Employees paid by the hour,Non-durable goods,,1.99
+2017,British Columbia,Employees paid by the hour,Food manufacturing,,0.9
+2017,British Columbia,Employees paid by the hour,Animal food manufacturing,,
+2017,British Columbia,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2017,British Columbia,Employees paid by the hour,Meat product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Seafood product preparation and packaging,,
+2017,British Columbia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2017,British Columbia,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Cannabis product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Clothing manufacturing,,
+2017,British Columbia,Employees paid by the hour,Other leather and allied product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Paper manufacturing,,
+2017,British Columbia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2017,British Columbia,Employees paid by the hour,Converted paper product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Printing and related support activities,,0.14
+2017,British Columbia,Employees paid by the hour,Basic chemical manufacturing,,
+2017,British Columbia,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2017,British Columbia,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2017,British Columbia,Employees paid by the hour,Other chemical product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Plastics and rubber products manufacturing,,0.18
+2017,British Columbia,Employees paid by the hour,Plastic product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Durable goods,,2.76
+2017,British Columbia,Employees paid by the hour,Wood product manufacturing,,0.94
+2017,British Columbia,Employees paid by the hour,Sawmills and wood preservation,,0.52
+2017,British Columbia,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2017,British Columbia,Employees paid by the hour,Other wood product manufacturing,,0.25
+2017,British Columbia,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.21
+2017,British Columbia,Employees paid by the hour,Glass and glass product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Cement and concrete product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Primary metal manufacturing,,
+2017,British Columbia,Employees paid by the hour,Fabricated metal product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Forging and stamping,,
+2017,British Columbia,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2017,British Columbia,Employees paid by the hour,Architectural and structural metals manufacturing,,0.19
+2017,British Columbia,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2017,British Columbia,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2017,British Columbia,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Machinery manufacturing,,0.27
+2017,British Columbia,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2017,British Columbia,Employees paid by the hour,Industrial machinery manufacturing,,
+2017,British Columbia,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2017,British Columbia,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2017,British Columbia,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2017,British Columbia,Employees paid by the hour,Electrical equipment manufacturing,,
+2017,British Columbia,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2017,British Columbia,Employees paid by the hour,Transportation equipment manufacturing,,
+2017,British Columbia,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2017,British Columbia,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2017,British Columbia,Employees paid by the hour,Ship and boat building,,
+2017,British Columbia,Employees paid by the hour,Furniture and related product manufacturing,,
+2017,British Columbia,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2017,British Columbia,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2017,British Columbia,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2017,British Columbia,Employees paid by the hour,Other miscellaneous manufacturing,,
+2017,Yukon,All employees,Cannabis product manufacturing,,
+2017,Yukon,All employees,Durable goods,,0.36
+2017,Yukon,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,Yukon,Salaried employees paid a fixed salary,Durable goods,,
+2017,Yukon,Employees paid by the hour,Cannabis product manufacturing,,
+2017,Yukon,Employees paid by the hour,Durable goods,,
+2017,Northwest Territories,All employees,Cannabis product manufacturing,,
+2017,Northwest Territories,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,Northwest Territories,Employees paid by the hour,Cannabis product manufacturing,,
+2017,Nunavut,All employees,Cannabis product manufacturing,,
+2017,Nunavut,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2017,Nunavut,Employees paid by the hour,Cannabis product manufacturing,,
+2018,Canada,All employees,Non-durable goods,,3.8
+2018,Canada,All employees,Food manufacturing,,1.43
+2018,Canada,All employees,Animal food manufacturing,,0.06
+2018,Canada,All employees,Grain and oilseed milling,,0.04
+2018,Canada,All employees,Sugar and confectionery product manufacturing,,0.06
+2018,Canada,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.11
+2018,Canada,All employees,Dairy product manufacturing,,0.15
+2018,Canada,All employees,Meat product manufacturing,,0.38
+2018,Canada,All employees,Seafood product preparation and packaging,,0.13
+2018,Canada,All employees,Bakeries and tortilla manufacturing,,0.29
+2018,Canada,All employees,Other food manufacturing,,0.2
+2018,Canada,All employees,Beverage and tobacco product manufacturing,,0.26
+2018,Canada,All employees,Beverage manufacturing,,0.24
+2018,Canada,All employees,Tobacco manufacturing,,
+2018,Canada,All employees,Cannabis product manufacturing,,
+2018,Canada,All employees,Textile mills,,0.04
+2018,Canada,All employees,"Fibre, yarn and thread mills",,0.01
+2018,Canada,All employees,Fabric mills,,0.02
+2018,Canada,All employees,Textile and fabric finishing and fabric coating,,0.01
+2018,Canada,All employees,Textile product mills,,0.06
+2018,Canada,All employees,Textile furnishings mills,,0.02
+2018,Canada,All employees,Other textile product mills,,0.04
+2018,Canada,All employees,Clothing manufacturing,,0.12
+2018,Canada,All employees,Clothing knitting mills,,0.01
+2018,Canada,All employees,Cut and sew clothing manufacturing,,0.09
+2018,Canada,All employees,Clothing accessories and other clothing manufacturing,,0.01
+2018,Canada,All employees,Leather and allied product manufacturing,,0.02
+2018,Canada,All employees,Leather and hide tanning and finishing,,0
+2018,Canada,All employees,Footwear manufacturing,,0.01
+2018,Canada,All employees,Other leather and allied product manufacturing,,0.01
+2018,Canada,All employees,Paper manufacturing,,0.33
+2018,Canada,All employees,"Pulp, paper and paperboard mills",,0.14
+2018,Canada,All employees,Converted paper product manufacturing,,0.18
+2018,Canada,All employees,Printing and related support activities,,0.3
+2018,Canada,All employees,Petroleum and coal product manufacturing,,0.11
+2018,Canada,All employees,Chemical manufacturing,,0.55
+2018,Canada,All employees,Basic chemical manufacturing,,0.08
+2018,Canada,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.03
+2018,Canada,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
+2018,Canada,All employees,Pharmaceutical and medicine manufacturing,,0.18
+2018,Canada,All employees,"Paint, coating and adhesive manufacturing",,0.05
+2018,Canada,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.1
+2018,Canada,All employees,Other chemical product manufacturing,,0.07
+2018,Canada,All employees,Plastics and rubber products manufacturing,,0.6
+2018,Canada,All employees,Plastic product manufacturing,,0.5
+2018,Canada,All employees,Rubber product manufacturing,,0.1
+2018,Canada,All employees,Durable goods,,5.53
+2018,Canada,All employees,Wood product manufacturing,,0.56
+2018,Canada,All employees,Sawmills and wood preservation,,0.22
+2018,Canada,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.11
+2018,Canada,All employees,Other wood product manufacturing,,0.23
+2018,Canada,All employees,Non-metallic mineral product manufacturing,,0.32
+2018,Canada,All employees,Clay product and refractory manufacturing,,0.01
+2018,Canada,All employees,Glass and glass product manufacturing,,0.05
+2018,Canada,All employees,Cement and concrete product manufacturing,,0.19
+2018,Canada,All employees,Lime and gypsum product manufacturing,,0.01
+2018,Canada,All employees,Other non-metallic mineral product manufacturing,,0.06
+2018,Canada,All employees,Primary metal manufacturing,,0.34
+2018,Canada,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.1
+2018,Canada,All employees,Steel product manufacturing from purchased steel,,0.05
+2018,Canada,All employees,Alumina and aluminum production and processing,,0.06
+2018,Canada,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
+2018,Canada,All employees,Foundries,,0.06
+2018,Canada,All employees,Fabricated metal product manufacturing,,0.94
+2018,Canada,All employees,Forging and stamping,,0.04
+2018,Canada,All employees,Cutlery and hand tool manufacturing,,0.02
+2018,Canada,All employees,Architectural and structural metals manufacturing,,0.36
+2018,Canada,All employees,"Boiler, tank and shipping container manufacturing",,0.07
+2018,Canada,All employees,Hardware manufacturing,,0.03
+2018,Canada,All employees,Spring and wire product manufacturing,,0.03
+2018,Canada,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.2
+2018,Canada,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2018,Canada,All employees,Other fabricated metal product manufacturing,,0.13
+2018,Canada,All employees,Machinery manufacturing,,0.83
+2018,Canada,All employees,"Agricultural, construction and mining machinery manufacturing",,0.19
+2018,Canada,All employees,Industrial machinery manufacturing,,0.1
+2018,Canada,All employees,Commercial and service industry machinery manufacturing,,0.1
+2018,Canada,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.1
+2018,Canada,All employees,Metalworking machinery manufacturing,,0.12
+2018,Canada,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
+2018,Canada,All employees,Other general-purpose machinery manufacturing,,0.19
+2018,Canada,All employees,Computer and electronic product manufacturing,,0.34
+2018,Canada,All employees,Computer and peripheral equipment manufacturing,,0.04
+2018,Canada,All employees,Communications equipment manufacturing,,0.07
+2018,Canada,All employees,Audio and video equipment manufacturing,,0.01
+2018,Canada,All employees,Semiconductor and other electronic component manufacturing,,0.09
+2018,Canada,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.13
+2018,Canada,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
+2018,Canada,All employees,"Electrical equipment, appliance and component manufacturing",,0.21
+2018,Canada,All employees,Electric lighting equipment manufacturing,,0.03
+2018,Canada,All employees,Household appliance manufacturing,,0.01
+2018,Canada,All employees,Electrical equipment manufacturing,,0.09
+2018,Canada,All employees,Other electrical equipment and component manufacturing,,0.08
+2018,Canada,All employees,Transportation equipment manufacturing,,1.23
+2018,Canada,All employees,Motor vehicle manufacturing,,0.27
+2018,Canada,All employees,Motor vehicle body and trailer manufacturing,,0.1
+2018,Canada,All employees,Motor vehicle parts manufacturing,,0.46
+2018,Canada,All employees,Aerospace product and parts manufacturing,,0.28
+2018,Canada,All employees,Railroad rolling stock manufacturing,,0.02
+2018,Canada,All employees,Ship and boat building,,0.05
+2018,Canada,All employees,Other transportation equipment manufacturing,,0.06
+2018,Canada,All employees,Furniture and related product manufacturing,,0.4
+2018,Canada,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.25
+2018,Canada,All employees,Office furniture (including fixtures) manufacturing,,0.13
+2018,Canada,All employees,Other furniture-related product manufacturing,,0.03
+2018,Canada,All employees,Miscellaneous manufacturing,,0.35
+2018,Canada,All employees,Medical equipment and supplies manufacturing,,0.12
+2018,Canada,All employees,Other miscellaneous manufacturing,,0.23
+2018,Canada,Salaried employees paid a fixed salary,Manufacturing,,2.52
+2018,Canada,Salaried employees paid a fixed salary,Non-durable goods,,0.99
+2018,Canada,Salaried employees paid a fixed salary,Food manufacturing,,0.27
+2018,Canada,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2018,Canada,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,0.02
+2018,Canada,Salaried employees paid a fixed salary,Dairy product manufacturing,,0.04
+2018,Canada,Salaried employees paid a fixed salary,Meat product manufacturing,,0.07
+2018,Canada,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,0.02
+2018,Canada,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.05
+2018,Canada,Salaried employees paid a fixed salary,Other food manufacturing,,0.05
+2018,Canada,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Beverage manufacturing,,0.08
+2018,Canada,Salaried employees paid a fixed salary,Tobacco manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Textile mills,,0.01
+2018,Canada,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2018,Canada,Salaried employees paid a fixed salary,Fabric mills,,0
+2018,Canada,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
+2018,Canada,Salaried employees paid a fixed salary,Textile product mills,,
+2018,Canada,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
+2018,Canada,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2018,Canada,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Paper manufacturing,,0.08
+2018,Canada,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2018,Canada,Salaried employees paid a fixed salary,Printing and related support activities,,0.07
+2018,Canada,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Chemical manufacturing,,0.25
+2018,Canada,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2018,Canada,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2018,Canada,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,0.09
+2018,Canada,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2018,Canada,Salaried employees paid a fixed salary,Other chemical product manufacturing,,0.03
+2018,Canada,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Durable goods,,1.52
+2018,Canada,Salaried employees paid a fixed salary,Wood product manufacturing,,0.06
+2018,Canada,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.03
+2018,Canada,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,0.02
+2018,Canada,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.02
+2018,Canada,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.08
+2018,Canada,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2018,Canada,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2018,Canada,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2018,Canada,Salaried employees paid a fixed salary,Foundries,,
+2018,Canada,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.23
+2018,Canada,Salaried employees paid a fixed salary,Forging and stamping,,
+2018,Canada,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.09
+2018,Canada,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,0.02
+2018,Canada,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
+2018,Canada,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
+2018,Canada,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,0.05
+2018,Canada,Salaried employees paid a fixed salary,Machinery manufacturing,,0.23
+2018,Canada,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2018,Canada,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.03
+2018,Canada,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2018,Canada,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,0.05
+2018,Canada,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.2
+2018,Canada,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Communications equipment manufacturing,,0.04
+2018,Canada,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,0.05
+2018,Canada,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,0.08
+2018,Canada,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.11
+2018,Canada,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,0.05
+2018,Canada,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.34
+2018,Canada,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,0.1
+2018,Canada,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Ship and boat building,,
+2018,Canada,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.07
+2018,Canada,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2018,Canada,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.11
+2018,Canada,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,0.04
+2018,Canada,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.07
+2018,Canada,Employees paid by the hour,Manufacturing,,6.41
+2018,Canada,Employees paid by the hour,Non-durable goods,,2.65
+2018,Canada,Employees paid by the hour,Food manufacturing,,1.11
+2018,Canada,Employees paid by the hour,Animal food manufacturing,,
+2018,Canada,Employees paid by the hour,Grain and oilseed milling,,
+2018,Canada,Employees paid by the hour,Sugar and confectionery product manufacturing,,
+2018,Canada,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,0.09
+2018,Canada,Employees paid by the hour,Dairy product manufacturing,,0.11
+2018,Canada,Employees paid by the hour,Meat product manufacturing,,0.3
+2018,Canada,Employees paid by the hour,Seafood product preparation and packaging,,0.1
+2018,Canada,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.23
+2018,Canada,Employees paid by the hour,Other food manufacturing,,0.14
+2018,Canada,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2018,Canada,Employees paid by the hour,Beverage manufacturing,,0.16
+2018,Canada,Employees paid by the hour,Tobacco manufacturing,,
+2018,Canada,Employees paid by the hour,Cannabis product manufacturing,,
+2018,Canada,Employees paid by the hour,Textile mills,,0.03
+2018,Canada,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2018,Canada,Employees paid by the hour,Fabric mills,,0.02
+2018,Canada,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
+2018,Canada,Employees paid by the hour,Textile product mills,,0.05
+2018,Canada,Employees paid by the hour,Clothing manufacturing,,
+2018,Canada,Employees paid by the hour,Cut and sew clothing manufacturing,,
+2018,Canada,Employees paid by the hour,Leather and allied product manufacturing,,0.01
+2018,Canada,Employees paid by the hour,Leather and hide tanning and finishing,,
+2018,Canada,Employees paid by the hour,Footwear manufacturing,,
+2018,Canada,Employees paid by the hour,Other leather and allied product manufacturing,,
+2018,Canada,Employees paid by the hour,Paper manufacturing,,0.24
+2018,Canada,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2018,Canada,Employees paid by the hour,Printing and related support activities,,0.2
+2018,Canada,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2018,Canada,Employees paid by the hour,Chemical manufacturing,,0.28
+2018,Canada,Employees paid by the hour,Basic chemical manufacturing,,
+2018,Canada,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2018,Canada,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2018,Canada,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,0.09
+2018,Canada,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2018,Canada,Employees paid by the hour,Other chemical product manufacturing,,0.03
+2018,Canada,Employees paid by the hour,Rubber product manufacturing,,
+2018,Canada,Employees paid by the hour,Durable goods,,3.76
+2018,Canada,Employees paid by the hour,Wood product manufacturing,,0.48
+2018,Canada,Employees paid by the hour,Sawmills and wood preservation,,0.19
+2018,Canada,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.09
+2018,Canada,Employees paid by the hour,Other wood product manufacturing,,0.2
+2018,Canada,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.24
+2018,Canada,Employees paid by the hour,Clay product and refractory manufacturing,,
+2018,Canada,Employees paid by the hour,Glass and glass product manufacturing,,
+2018,Canada,Employees paid by the hour,Cement and concrete product manufacturing,,
+2018,Canada,Employees paid by the hour,Lime and gypsum product manufacturing,,
+2018,Canada,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2018,Canada,Employees paid by the hour,Primary metal manufacturing,,
+2018,Canada,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2018,Canada,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2018,Canada,Employees paid by the hour,Alumina and aluminum production and processing,,
+2018,Canada,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2018,Canada,Employees paid by the hour,Foundries,,
+2018,Canada,Employees paid by the hour,Fabricated metal product manufacturing,,0.64
+2018,Canada,Employees paid by the hour,Forging and stamping,,
+2018,Canada,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2018,Canada,Employees paid by the hour,Architectural and structural metals manufacturing,,0.24
+2018,Canada,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,0.05
+2018,Canada,Employees paid by the hour,Hardware manufacturing,,
+2018,Canada,Employees paid by the hour,Spring and wire product manufacturing,,
+2018,Canada,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.15
+2018,Canada,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
+2018,Canada,Employees paid by the hour,Other fabricated metal product manufacturing,,0.08
+2018,Canada,Employees paid by the hour,Machinery manufacturing,,0.56
+2018,Canada,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2018,Canada,Employees paid by the hour,Industrial machinery manufacturing,,
+2018,Canada,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2018,Canada,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.07
+2018,Canada,Employees paid by the hour,Metalworking machinery manufacturing,,
+2018,Canada,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2018,Canada,Employees paid by the hour,Other general-purpose machinery manufacturing,,0.12
+2018,Canada,Employees paid by the hour,Computer and electronic product manufacturing,,0.12
+2018,Canada,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
+2018,Canada,Employees paid by the hour,Communications equipment manufacturing,,0.03
+2018,Canada,Employees paid by the hour,Audio and video equipment manufacturing,,
+2018,Canada,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,0.04
+2018,Canada,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,0.04
+2018,Canada,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.08
+2018,Canada,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2018,Canada,Employees paid by the hour,Household appliance manufacturing,,
+2018,Canada,Employees paid by the hour,Electrical equipment manufacturing,,0.03
+2018,Canada,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2018,Canada,Employees paid by the hour,Transportation equipment manufacturing,,0.87
+2018,Canada,Employees paid by the hour,Motor vehicle manufacturing,,
+2018,Canada,Employees paid by the hour,Motor vehicle parts manufacturing,,0.35
+2018,Canada,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2018,Canada,Employees paid by the hour,Ship and boat building,,
+2018,Canada,Employees paid by the hour,Other transportation equipment manufacturing,,
+2018,Canada,Employees paid by the hour,Furniture and related product manufacturing,,0.31
+2018,Canada,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,Canada,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,0.09
+2018,Canada,Employees paid by the hour,Other furniture-related product manufacturing,,
+2018,Canada,Employees paid by the hour,Miscellaneous manufacturing,,0.21
+2018,Canada,Employees paid by the hour,Medical equipment and supplies manufacturing,,0.07
+2018,Canada,Employees paid by the hour,Other miscellaneous manufacturing,,0.14
+2018,Newfoundland and Labrador,All employees,Manufacturing,10,4.49
+2018,Newfoundland and Labrador,All employees,Non-durable goods,,3.4
+2018,Newfoundland and Labrador,All employees,Food manufacturing,,2.39
+2018,Newfoundland and Labrador,All employees,Seafood product preparation and packaging,,1.92
+2018,Newfoundland and Labrador,All employees,Cannabis product manufacturing,,
+2018,Newfoundland and Labrador,All employees,Durable goods,,1.1
+2018,Newfoundland and Labrador,All employees,Sawmills and wood preservation,,
+2018,Newfoundland and Labrador,All employees,Ship and boat building,,
+2018,Newfoundland and Labrador,All employees,Other miscellaneous manufacturing,,0.07
+2018,Newfoundland and Labrador,Salaried employees paid a fixed salary,Manufacturing,,
+2018,Newfoundland and Labrador,Salaried employees paid a fixed salary,Non-durable goods,,
+2018,Newfoundland and Labrador,Salaried employees paid a fixed salary,Food manufacturing,,
+2018,Newfoundland and Labrador,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,Newfoundland and Labrador,Salaried employees paid a fixed salary,Durable goods,,0.23
+2018,Newfoundland and Labrador,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2018,Newfoundland and Labrador,Employees paid by the hour,Manufacturing,,
+2018,Newfoundland and Labrador,Employees paid by the hour,Non-durable goods,,
+2018,Newfoundland and Labrador,Employees paid by the hour,Food manufacturing,,
+2018,Newfoundland and Labrador,Employees paid by the hour,Cannabis product manufacturing,,
+2018,Newfoundland and Labrador,Employees paid by the hour,Durable goods,,0.82
+2018,Newfoundland and Labrador,Employees paid by the hour,Other miscellaneous manufacturing,,
+2018,Prince Edward Island,All employees,Manufacturing,11,7.86
+2018,Prince Edward Island,All employees,Non-durable goods,,5.01
+2018,Prince Edward Island,All employees,Food manufacturing,,3.34
+2018,Prince Edward Island,All employees,Seafood product preparation and packaging,,
+2018,Prince Edward Island,All employees,Cannabis product manufacturing,,
+2018,Prince Edward Island,All employees,Printing and related support activities,,0.17
+2018,Prince Edward Island,All employees,Durable goods,,2.85
+2018,Prince Edward Island,Salaried employees paid a fixed salary,Manufacturing,,2.83
+2018,Prince Edward Island,Salaried employees paid a fixed salary,Food manufacturing,,
+2018,Prince Edward Island,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2018,Prince Edward Island,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,Prince Edward Island,Salaried employees paid a fixed salary,Durable goods,,1.18
+2018,Prince Edward Island,Employees paid by the hour,Manufacturing,,4.7
+2018,Prince Edward Island,Employees paid by the hour,Food manufacturing,,
+2018,Prince Edward Island,Employees paid by the hour,Seafood product preparation and packaging,,
+2018,Prince Edward Island,Employees paid by the hour,Cannabis product manufacturing,,
+2018,Prince Edward Island,Employees paid by the hour,Durable goods,,1.51
+2018,Nova Scotia,All employees,Manufacturing,12,7.63
+2018,Nova Scotia,All employees,Non-durable goods,,4.89
+2018,Nova Scotia,All employees,Food manufacturing,,2.38
+2018,Nova Scotia,All employees,Animal food manufacturing,,0.09
+2018,Nova Scotia,All employees,Dairy product manufacturing,,
+2018,Nova Scotia,All employees,Meat product manufacturing,,0.14
+2018,Nova Scotia,All employees,Seafood product preparation and packaging,,1.36
+2018,Nova Scotia,All employees,Bakeries and tortilla manufacturing,,0.21
+2018,Nova Scotia,All employees,Beverage and tobacco product manufacturing,,0.28
+2018,Nova Scotia,All employees,Cannabis product manufacturing,,
+2018,Nova Scotia,All employees,Fabric mills,,
+2018,Nova Scotia,All employees,Clothing manufacturing,,0.08
+2018,Nova Scotia,All employees,Paper manufacturing,,0.26
+2018,Nova Scotia,All employees,"Pulp, paper and paperboard mills",,
+2018,Nova Scotia,All employees,Printing and related support activities,,0.18
+2018,Nova Scotia,All employees,Plastics and rubber products manufacturing,,1.23
+2018,Nova Scotia,All employees,Durable goods,,2.75
+2018,Nova Scotia,All employees,Wood product manufacturing,,0.4
+2018,Nova Scotia,All employees,Sawmills and wood preservation,,0.22
+2018,Nova Scotia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.07
+2018,Nova Scotia,All employees,Other wood product manufacturing,,0.11
+2018,Nova Scotia,All employees,Non-metallic mineral product manufacturing,,0.19
+2018,Nova Scotia,All employees,Cement and concrete product manufacturing,,0.14
+2018,Nova Scotia,All employees,Other non-metallic mineral product manufacturing,,
+2018,Nova Scotia,All employees,Fabricated metal product manufacturing,,0.46
+2018,Nova Scotia,All employees,Spring and wire product manufacturing,,0.03
+2018,Nova Scotia,All employees,Machinery manufacturing,,0.21
+2018,Nova Scotia,All employees,Commercial and service industry machinery manufacturing,,0.06
+2018,Nova Scotia,All employees,Other general-purpose machinery manufacturing,,0.03
+2018,Nova Scotia,All employees,Transportation equipment manufacturing,,0.99
+2018,Nova Scotia,All employees,Aerospace product and parts manufacturing,,0.38
+2018,Nova Scotia,All employees,Ship and boat building,,0.57
+2018,Nova Scotia,All employees,Miscellaneous manufacturing,,0.14
+2018,Nova Scotia,All employees,Medical equipment and supplies manufacturing,,0.05
+2018,Nova Scotia,All employees,Other miscellaneous manufacturing,,0.09
+2018,Nova Scotia,Salaried employees paid a fixed salary,Manufacturing,,1.66
+2018,Nova Scotia,Salaried employees paid a fixed salary,Non-durable goods,,1.02
+2018,Nova Scotia,Salaried employees paid a fixed salary,Food manufacturing,,0.38
+2018,Nova Scotia,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Paper manufacturing,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Printing and related support activities,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Durable goods,,0.64
+2018,Nova Scotia,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.2
+2018,Nova Scotia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2018,Nova Scotia,Salaried employees paid a fixed salary,Ship and boat building,,
+2018,Nova Scotia,Employees paid by the hour,Manufacturing,,5.68
+2018,Nova Scotia,Employees paid by the hour,Non-durable goods,,3.67
+2018,Nova Scotia,Employees paid by the hour,Food manufacturing,,1.89
+2018,Nova Scotia,Employees paid by the hour,Animal food manufacturing,,
+2018,Nova Scotia,Employees paid by the hour,Seafood product preparation and packaging,,
+2018,Nova Scotia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2018,Nova Scotia,Employees paid by the hour,Cannabis product manufacturing,,
+2018,Nova Scotia,Employees paid by the hour,Paper manufacturing,,
+2018,Nova Scotia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2018,Nova Scotia,Employees paid by the hour,Printing and related support activities,,
+2018,Nova Scotia,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2018,Nova Scotia,Employees paid by the hour,Durable goods,,2
+2018,Nova Scotia,Employees paid by the hour,Wood product manufacturing,,
+2018,Nova Scotia,Employees paid by the hour,Sawmills and wood preservation,,
+2018,Nova Scotia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2018,Nova Scotia,Employees paid by the hour,Cement and concrete product manufacturing,,
+2018,Nova Scotia,Employees paid by the hour,Fabricated metal product manufacturing,,
+2018,Nova Scotia,Employees paid by the hour,Machinery manufacturing,,
+2018,Nova Scotia,Employees paid by the hour,Transportation equipment manufacturing,,0.76
+2018,Nova Scotia,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2018,Nova Scotia,Employees paid by the hour,Ship and boat building,,
+2018,New Brunswick,All employees,Manufacturing,13,9.44
+2018,New Brunswick,All employees,Non-durable goods,,5.39
+2018,New Brunswick,All employees,Food manufacturing,,3.32
+2018,New Brunswick,All employees,Seafood product preparation and packaging,,1.39
+2018,New Brunswick,All employees,Beverage and tobacco product manufacturing,,0.28
+2018,New Brunswick,All employees,Cannabis product manufacturing,,
+2018,New Brunswick,All employees,"Fibre, yarn and thread mills",,
+2018,New Brunswick,All employees,Paper manufacturing,,0.82
+2018,New Brunswick,All employees,"Pulp, paper and paperboard mills",,0.53
+2018,New Brunswick,All employees,Converted paper product manufacturing,,0.29
+2018,New Brunswick,All employees,Printing and related support activities,,0.09
+2018,New Brunswick,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.1
+2018,New Brunswick,All employees,Durable goods,,4.05
+2018,New Brunswick,All employees,Wood product manufacturing,,1.46
+2018,New Brunswick,All employees,Sawmills and wood preservation,,0.8
+2018,New Brunswick,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.22
+2018,New Brunswick,All employees,Other wood product manufacturing,,0.43
+2018,New Brunswick,All employees,Non-metallic mineral product manufacturing,,0.27
+2018,New Brunswick,All employees,Other non-metallic mineral product manufacturing,,0.09
+2018,New Brunswick,All employees,Fabricated metal product manufacturing,,0.71
+2018,New Brunswick,All employees,Architectural and structural metals manufacturing,,0.42
+2018,New Brunswick,All employees,Machinery manufacturing,,0.41
+2018,New Brunswick,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.19
+2018,New Brunswick,All employees,Other general-purpose machinery manufacturing,,0.08
+2018,New Brunswick,All employees,Computer and electronic product manufacturing,,
+2018,New Brunswick,All employees,Furniture and related product manufacturing,,0.24
+2018,New Brunswick,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.22
+2018,New Brunswick,All employees,Miscellaneous manufacturing,,0.4
+2018,New Brunswick,All employees,Medical equipment and supplies manufacturing,,0.04
+2018,New Brunswick,All employees,Other miscellaneous manufacturing,,0.36
+2018,New Brunswick,Salaried employees paid a fixed salary,Manufacturing,,2.01
+2018,New Brunswick,Salaried employees paid a fixed salary,Non-durable goods,,1.15
+2018,New Brunswick,Salaried employees paid a fixed salary,Food manufacturing,,
+2018,New Brunswick,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,New Brunswick,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2018,New Brunswick,Salaried employees paid a fixed salary,Paper manufacturing,,
+2018,New Brunswick,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2018,New Brunswick,Salaried employees paid a fixed salary,Durable goods,,0.85
+2018,New Brunswick,Salaried employees paid a fixed salary,Wood product manufacturing,,0.2
+2018,New Brunswick,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2018,New Brunswick,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2018,New Brunswick,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2018,New Brunswick,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2018,New Brunswick,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2018,New Brunswick,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2018,New Brunswick,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2018,New Brunswick,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,New Brunswick,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2018,New Brunswick,Employees paid by the hour,Manufacturing,,7.12
+2018,New Brunswick,Employees paid by the hour,Non-durable goods,,4.08
+2018,New Brunswick,Employees paid by the hour,Food manufacturing,,
+2018,New Brunswick,Employees paid by the hour,Cannabis product manufacturing,,
+2018,New Brunswick,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2018,New Brunswick,Employees paid by the hour,Paper manufacturing,,
+2018,New Brunswick,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2018,New Brunswick,Employees paid by the hour,Durable goods,,3.04
+2018,New Brunswick,Employees paid by the hour,Wood product manufacturing,,1.2
+2018,New Brunswick,Employees paid by the hour,Sawmills and wood preservation,,
+2018,New Brunswick,Employees paid by the hour,Other wood product manufacturing,,
+2018,New Brunswick,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.21
+2018,New Brunswick,Employees paid by the hour,Fabricated metal product manufacturing,,0.47
+2018,New Brunswick,Employees paid by the hour,Machinery manufacturing,,
+2018,New Brunswick,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2018,New Brunswick,Employees paid by the hour,Computer and electronic product manufacturing,,
+2018,New Brunswick,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,New Brunswick,Employees paid by the hour,Other miscellaneous manufacturing,,
+2018,Quebec,All employees,Manufacturing,24,11.72
+2018,Quebec,All employees,Non-durable goods,,4.88
+2018,Quebec,All employees,Food manufacturing,,1.72
+2018,Quebec,All employees,Animal food manufacturing,,0.07
+2018,Quebec,All employees,Grain and oilseed milling,,0.04
+2018,Quebec,All employees,Sugar and confectionery product manufacturing,,0.1
+2018,Quebec,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.13
+2018,Quebec,All employees,Dairy product manufacturing,,0.25
+2018,Quebec,All employees,Meat product manufacturing,,0.49
+2018,Quebec,All employees,Seafood product preparation and packaging,,0.04
+2018,Quebec,All employees,Bakeries and tortilla manufacturing,,0.33
+2018,Quebec,All employees,Other food manufacturing,,0.26
+2018,Quebec,All employees,Beverage and tobacco product manufacturing,,0.23
+2018,Quebec,All employees,Cannabis product manufacturing,,
+2018,Quebec,All employees,Textile mills,,0.09
+2018,Quebec,All employees,"Fibre, yarn and thread mills",,0.01
+2018,Quebec,All employees,Fabric mills,,0.06
+2018,Quebec,All employees,Textile and fabric finishing and fabric coating,,0.01
+2018,Quebec,All employees,Textile product mills,,0.09
+2018,Quebec,All employees,Textile furnishings mills,,0.04
+2018,Quebec,All employees,Other textile product mills,,0.05
+2018,Quebec,All employees,Clothing manufacturing,,0.28
+2018,Quebec,All employees,Clothing knitting mills,,0.03
+2018,Quebec,All employees,Cut and sew clothing manufacturing,,0.23
+2018,Quebec,All employees,Clothing accessories and other clothing manufacturing,,0.02
+2018,Quebec,All employees,Leather and allied product manufacturing,,0.03
+2018,Quebec,All employees,Leather and hide tanning and finishing,,0
+2018,Quebec,All employees,Footwear manufacturing,,0.03
+2018,Quebec,All employees,Other leather and allied product manufacturing,,0.01
+2018,Quebec,All employees,Paper manufacturing,,0.58
+2018,Quebec,All employees,"Pulp, paper and paperboard mills",,0.25
+2018,Quebec,All employees,Converted paper product manufacturing,,0.33
+2018,Quebec,All employees,Printing and related support activities,,0.33
+2018,Quebec,All employees,Petroleum and coal product manufacturing,,0.1
+2018,Quebec,All employees,Chemical manufacturing,,0.67
+2018,Quebec,All employees,Basic chemical manufacturing,,0.07
+2018,Quebec,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.02
+2018,Quebec,All employees,Pharmaceutical and medicine manufacturing,,0.24
+2018,Quebec,All employees,"Paint, coating and adhesive manufacturing",,0.07
+2018,Quebec,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.12
+2018,Quebec,All employees,Other chemical product manufacturing,,0.09
+2018,Quebec,All employees,Plastics and rubber products manufacturing,,0.76
+2018,Quebec,All employees,Plastic product manufacturing,,0.62
+2018,Quebec,All employees,Rubber product manufacturing,,0.14
+2018,Quebec,All employees,Durable goods,,6.85
+2018,Quebec,All employees,Wood product manufacturing,,0.8
+2018,Quebec,All employees,Sawmills and wood preservation,,0.28
+2018,Quebec,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
+2018,Quebec,All employees,Other wood product manufacturing,,0.38
+2018,Quebec,All employees,Non-metallic mineral product manufacturing,,0.38
+2018,Quebec,All employees,Clay product and refractory manufacturing,,0.01
+2018,Quebec,All employees,Glass and glass product manufacturing,,0.07
+2018,Quebec,All employees,Cement and concrete product manufacturing,,0.21
+2018,Quebec,All employees,Lime and gypsum product manufacturing,,0.02
+2018,Quebec,All employees,Other non-metallic mineral product manufacturing,,0.07
+2018,Quebec,All employees,Primary metal manufacturing,,0.45
+2018,Quebec,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.05
+2018,Quebec,All employees,Steel product manufacturing from purchased steel,,0.03
+2018,Quebec,All employees,Alumina and aluminum production and processing,,0.15
+2018,Quebec,All employees,Non-ferrous metal (except aluminum) production and processing,,0.12
+2018,Quebec,All employees,Foundries,,0.09
+2018,Quebec,All employees,Fabricated metal product manufacturing,,1.22
+2018,Quebec,All employees,Forging and stamping,,0.06
+2018,Quebec,All employees,Cutlery and hand tool manufacturing,,0.02
+2018,Quebec,All employees,Architectural and structural metals manufacturing,,0.48
+2018,Quebec,All employees,"Boiler, tank and shipping container manufacturing",,0.07
+2018,Quebec,All employees,Hardware manufacturing,,0.03
+2018,Quebec,All employees,Spring and wire product manufacturing,,0.04
+2018,Quebec,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.26
+2018,Quebec,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2018,Quebec,All employees,Other fabricated metal product manufacturing,,0.19
+2018,Quebec,All employees,Machinery manufacturing,,0.93
+2018,Quebec,All employees,"Agricultural, construction and mining machinery manufacturing",,0.12
+2018,Quebec,All employees,Industrial machinery manufacturing,,0.17
+2018,Quebec,All employees,Commercial and service industry machinery manufacturing,,0.19
+2018,Quebec,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.16
+2018,Quebec,All employees,Metalworking machinery manufacturing,,0.06
+2018,Quebec,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.06
+2018,Quebec,All employees,Other general-purpose machinery manufacturing,,0.19
+2018,Quebec,All employees,Computer and electronic product manufacturing,,0.41
+2018,Quebec,All employees,Communications equipment manufacturing,,0.07
+2018,Quebec,All employees,Audio and video equipment manufacturing,,0.01
+2018,Quebec,All employees,Semiconductor and other electronic component manufacturing,,0.14
+2018,Quebec,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.17
+2018,Quebec,All employees,Manufacturing and reproducing magnetic and optical media,,0
+2018,Quebec,All employees,"Electrical equipment, appliance and component manufacturing",,0.3
+2018,Quebec,All employees,Electric lighting equipment manufacturing,,0.08
+2018,Quebec,All employees,Household appliance manufacturing,,0.01
+2018,Quebec,All employees,Electrical equipment manufacturing,,0.11
+2018,Quebec,All employees,Other electrical equipment and component manufacturing,,0.1
+2018,Quebec,All employees,Transportation equipment manufacturing,,1.29
+2018,Quebec,All employees,Motor vehicle body and trailer manufacturing,,0.16
+2018,Quebec,All employees,Motor vehicle parts manufacturing,,0.13
+2018,Quebec,All employees,Aerospace product and parts manufacturing,,0.68
+2018,Quebec,All employees,Other transportation equipment manufacturing,,0.16
+2018,Quebec,All employees,Furniture and related product manufacturing,,0.63
+2018,Quebec,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.44
+2018,Quebec,All employees,Office furniture (including fixtures) manufacturing,,0.16
+2018,Quebec,All employees,Other furniture-related product manufacturing,,0.04
+2018,Quebec,All employees,Miscellaneous manufacturing,,0.46
+2018,Quebec,All employees,Medical equipment and supplies manufacturing,,0.13
+2018,Quebec,All employees,Other miscellaneous manufacturing,,0.32
+2018,Quebec,Salaried employees paid a fixed salary,Manufacturing,,2.95
+2018,Quebec,Salaried employees paid a fixed salary,Non-durable goods,,1.06
+2018,Quebec,Salaried employees paid a fixed salary,Food manufacturing,,0.26
+2018,Quebec,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2018,Quebec,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Other food manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Textile mills,,0.02
+2018,Quebec,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2018,Quebec,Salaried employees paid a fixed salary,Fabric mills,,0.01
+2018,Quebec,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
+2018,Quebec,Salaried employees paid a fixed salary,Textile product mills,,
+2018,Quebec,Salaried employees paid a fixed salary,Textile furnishings mills,,
+2018,Quebec,Salaried employees paid a fixed salary,Other textile product mills,,
+2018,Quebec,Salaried employees paid a fixed salary,Clothing manufacturing,,0.03
+2018,Quebec,Salaried employees paid a fixed salary,Clothing knitting mills,,
+2018,Quebec,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Clothing accessories and other clothing manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2018,Quebec,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Paper manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2018,Quebec,Salaried employees paid a fixed salary,Printing and related support activities,,0.07
+2018,Quebec,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Chemical manufacturing,,0.29
+2018,Quebec,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2018,Quebec,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
+2018,Quebec,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2018,Quebec,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.14
+2018,Quebec,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.11
+2018,Quebec,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Durable goods,,1.89
+2018,Quebec,Salaried employees paid a fixed salary,Wood product manufacturing,,0.07
+2018,Quebec,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.03
+2018,Quebec,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2018,Quebec,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.09
+2018,Quebec,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2018,Quebec,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2018,Quebec,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2018,Quebec,Salaried employees paid a fixed salary,Foundries,,
+2018,Quebec,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.24
+2018,Quebec,Salaried employees paid a fixed salary,Forging and stamping,,
+2018,Quebec,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2018,Quebec,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Machinery manufacturing,,0.26
+2018,Quebec,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2018,Quebec,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2018,Quebec,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2018,Quebec,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,Quebec,Salaried employees paid a fixed salary,Manufacturing and reproducing magnetic and optical media,,
+2018,Quebec,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.16
+2018,Quebec,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.52
+2018,Quebec,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2018,Quebec,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.08
+2018,Quebec,Employees paid by the hour,Manufacturing,,8.29
+2018,Quebec,Employees paid by the hour,Non-durable goods,,3.61
+2018,Quebec,Employees paid by the hour,Food manufacturing,,1.39
+2018,Quebec,Employees paid by the hour,Animal food manufacturing,,
+2018,Quebec,Employees paid by the hour,Grain and oilseed milling,,
+2018,Quebec,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2018,Quebec,Employees paid by the hour,Dairy product manufacturing,,
+2018,Quebec,Employees paid by the hour,Meat product manufacturing,,
+2018,Quebec,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2018,Quebec,Employees paid by the hour,Other food manufacturing,,
+2018,Quebec,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2018,Quebec,Employees paid by the hour,Cannabis product manufacturing,,
+2018,Quebec,Employees paid by the hour,Textile mills,,0.07
+2018,Quebec,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2018,Quebec,Employees paid by the hour,Fabric mills,,0.05
+2018,Quebec,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
+2018,Quebec,Employees paid by the hour,Textile product mills,,
+2018,Quebec,Employees paid by the hour,Textile furnishings mills,,
+2018,Quebec,Employees paid by the hour,Other textile product mills,,
+2018,Quebec,Employees paid by the hour,Clothing manufacturing,,0.22
+2018,Quebec,Employees paid by the hour,Clothing knitting mills,,
+2018,Quebec,Employees paid by the hour,Cut and sew clothing manufacturing,,0.19
+2018,Quebec,Employees paid by the hour,Clothing accessories and other clothing manufacturing,,
+2018,Quebec,Employees paid by the hour,Leather and hide tanning and finishing,,
+2018,Quebec,Employees paid by the hour,Footwear manufacturing,,
+2018,Quebec,Employees paid by the hour,Other leather and allied product manufacturing,,
+2018,Quebec,Employees paid by the hour,Paper manufacturing,,
+2018,Quebec,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2018,Quebec,Employees paid by the hour,Printing and related support activities,,0.23
+2018,Quebec,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2018,Quebec,Employees paid by the hour,Chemical manufacturing,,0.35
+2018,Quebec,Employees paid by the hour,Basic chemical manufacturing,,
+2018,Quebec,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2018,Quebec,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2018,Quebec,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
+2018,Quebec,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2018,Quebec,Employees paid by the hour,Other chemical product manufacturing,,
+2018,Quebec,Employees paid by the hour,Plastics and rubber products manufacturing,,0.59
+2018,Quebec,Employees paid by the hour,Plastic product manufacturing,,0.49
+2018,Quebec,Employees paid by the hour,Rubber product manufacturing,,
+2018,Quebec,Employees paid by the hour,Durable goods,,4.68
+2018,Quebec,Employees paid by the hour,Wood product manufacturing,,0.7
+2018,Quebec,Employees paid by the hour,Sawmills and wood preservation,,0.24
+2018,Quebec,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2018,Quebec,Employees paid by the hour,Other wood product manufacturing,,0.34
+2018,Quebec,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.28
+2018,Quebec,Employees paid by the hour,Clay product and refractory manufacturing,,
+2018,Quebec,Employees paid by the hour,Glass and glass product manufacturing,,
+2018,Quebec,Employees paid by the hour,Cement and concrete product manufacturing,,
+2018,Quebec,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2018,Quebec,Employees paid by the hour,Primary metal manufacturing,,
+2018,Quebec,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2018,Quebec,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2018,Quebec,Employees paid by the hour,Alumina and aluminum production and processing,,
+2018,Quebec,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2018,Quebec,Employees paid by the hour,Foundries,,
+2018,Quebec,Employees paid by the hour,Fabricated metal product manufacturing,,0.89
+2018,Quebec,Employees paid by the hour,Forging and stamping,,
+2018,Quebec,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2018,Quebec,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2018,Quebec,Employees paid by the hour,Hardware manufacturing,,
+2018,Quebec,Employees paid by the hour,Spring and wire product manufacturing,,
+2018,Quebec,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2018,Quebec,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2018,Quebec,Employees paid by the hour,Machinery manufacturing,,0.64
+2018,Quebec,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2018,Quebec,Employees paid by the hour,Industrial machinery manufacturing,,
+2018,Quebec,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2018,Quebec,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2018,Quebec,Employees paid by the hour,Metalworking machinery manufacturing,,
+2018,Quebec,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2018,Quebec,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2018,Quebec,Employees paid by the hour,Communications equipment manufacturing,,
+2018,Quebec,Employees paid by the hour,Audio and video equipment manufacturing,,
+2018,Quebec,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2018,Quebec,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,Quebec,Employees paid by the hour,Manufacturing and reproducing magnetic and optical media,,
+2018,Quebec,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.13
+2018,Quebec,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2018,Quebec,Employees paid by the hour,Household appliance manufacturing,,
+2018,Quebec,Employees paid by the hour,Electrical equipment manufacturing,,
+2018,Quebec,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2018,Quebec,Employees paid by the hour,Transportation equipment manufacturing,,0.75
+2018,Quebec,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2018,Quebec,Employees paid by the hour,Other transportation equipment manufacturing,,
+2018,Quebec,Employees paid by the hour,Furniture and related product manufacturing,,
+2018,Quebec,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,Quebec,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2018,Quebec,Employees paid by the hour,Miscellaneous manufacturing,,
+2018,Quebec,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2018,Quebec,Employees paid by the hour,Other miscellaneous manufacturing,,0.22
+2018,Ontario,All employees,Manufacturing,35,10.6
+2018,Ontario,All employees,Non-durable goods,,3.99
+2018,Ontario,All employees,Food manufacturing,,1.29
+2018,Ontario,All employees,Animal food manufacturing,,0.06
+2018,Ontario,All employees,Grain and oilseed milling,,0.05
+2018,Ontario,All employees,Sugar and confectionery product manufacturing,,0.06
+2018,Ontario,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.1
+2018,Ontario,All employees,Dairy product manufacturing,,0.14
+2018,Ontario,All employees,Meat product manufacturing,,0.32
+2018,Ontario,All employees,Seafood product preparation and packaging,,0.01
+2018,Ontario,All employees,Bakeries and tortilla manufacturing,,0.34
+2018,Ontario,All employees,Other food manufacturing,,0.21
+2018,Ontario,All employees,Beverage and tobacco product manufacturing,,0.28
+2018,Ontario,All employees,Cannabis product manufacturing,,
+2018,Ontario,All employees,Textile mills,,0.05
+2018,Ontario,All employees,"Fibre, yarn and thread mills",,0.01
+2018,Ontario,All employees,Fabric mills,,0.02
+2018,Ontario,All employees,Textile and fabric finishing and fabric coating,,0.02
+2018,Ontario,All employees,Textile product mills,,0.06
+2018,Ontario,All employees,Textile furnishings mills,,0.02
+2018,Ontario,All employees,Other textile product mills,,0.04
+2018,Ontario,All employees,Clothing manufacturing,,0.09
+2018,Ontario,All employees,Clothing knitting mills,,
+2018,Ontario,All employees,Cut and sew clothing manufacturing,,0.06
+2018,Ontario,All employees,Clothing accessories and other clothing manufacturing,,
+2018,Ontario,All employees,Leather and allied product manufacturing,,0.02
+2018,Ontario,All employees,Leather and hide tanning and finishing,,0
+2018,Ontario,All employees,Footwear manufacturing,,0
+2018,Ontario,All employees,Other leather and allied product manufacturing,,0.01
+2018,Ontario,All employees,Paper manufacturing,,0.27
+2018,Ontario,All employees,"Pulp, paper and paperboard mills",,0.06
+2018,Ontario,All employees,Converted paper product manufacturing,,0.21
+2018,Ontario,All employees,Printing and related support activities,,0.37
+2018,Ontario,All employees,Petroleum and coal product manufacturing,,0.1
+2018,Ontario,All employees,Chemical manufacturing,,0.71
+2018,Ontario,All employees,Basic chemical manufacturing,,0.09
+2018,Ontario,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.05
+2018,Ontario,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
+2018,Ontario,All employees,Pharmaceutical and medicine manufacturing,,0.24
+2018,Ontario,All employees,"Paint, coating and adhesive manufacturing",,0.06
+2018,Ontario,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.16
+2018,Ontario,All employees,Other chemical product manufacturing,,0.08
+2018,Ontario,All employees,Plastics and rubber products manufacturing,,0.76
+2018,Ontario,All employees,Plastic product manufacturing,,0.67
+2018,Ontario,All employees,Rubber product manufacturing,,0.09
+2018,Ontario,All employees,Durable goods,,6.61
+2018,Ontario,All employees,Wood product manufacturing,,0.26
+2018,Ontario,All employees,Sawmills and wood preservation,,0.05
+2018,Ontario,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.06
+2018,Ontario,All employees,Other wood product manufacturing,,0.15
+2018,Ontario,All employees,Non-metallic mineral product manufacturing,,0.32
+2018,Ontario,All employees,Clay product and refractory manufacturing,,0.02
+2018,Ontario,All employees,Glass and glass product manufacturing,,0.05
+2018,Ontario,All employees,Cement and concrete product manufacturing,,0.19
+2018,Ontario,All employees,Lime and gypsum product manufacturing,,0.01
+2018,Ontario,All employees,Other non-metallic mineral product manufacturing,,0.06
+2018,Ontario,All employees,Primary metal manufacturing,,0.43
+2018,Ontario,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.19
+2018,Ontario,All employees,Steel product manufacturing from purchased steel,,0.06
+2018,Ontario,All employees,Alumina and aluminum production and processing,,
+2018,Ontario,All employees,Non-ferrous metal (except aluminum) production and processing,,
+2018,Ontario,All employees,Foundries,,0.07
+2018,Ontario,All employees,Fabricated metal product manufacturing,,1.03
+2018,Ontario,All employees,Forging and stamping,,0.05
+2018,Ontario,All employees,Cutlery and hand tool manufacturing,,0.03
+2018,Ontario,All employees,Architectural and structural metals manufacturing,,0.34
+2018,Ontario,All employees,"Boiler, tank and shipping container manufacturing",,0.06
+2018,Ontario,All employees,Hardware manufacturing,,0.05
+2018,Ontario,All employees,Spring and wire product manufacturing,,0.03
+2018,Ontario,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.22
+2018,Ontario,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.09
+2018,Ontario,All employees,Other fabricated metal product manufacturing,,0.15
+2018,Ontario,All employees,Machinery manufacturing,,0.97
+2018,Ontario,All employees,"Agricultural, construction and mining machinery manufacturing",,0.13
+2018,Ontario,All employees,Industrial machinery manufacturing,,0.11
+2018,Ontario,All employees,Commercial and service industry machinery manufacturing,,0.11
+2018,Ontario,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.09
+2018,Ontario,All employees,Metalworking machinery manufacturing,,0.25
+2018,Ontario,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
+2018,Ontario,All employees,Other general-purpose machinery manufacturing,,0.25
+2018,Ontario,All employees,Computer and electronic product manufacturing,,0.47
+2018,Ontario,All employees,Computer and peripheral equipment manufacturing,,0.06
+2018,Ontario,All employees,Communications equipment manufacturing,,0.11
+2018,Ontario,All employees,Audio and video equipment manufacturing,,0.02
+2018,Ontario,All employees,Semiconductor and other electronic component manufacturing,,0.12
+2018,Ontario,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.15
+2018,Ontario,All employees,"Electrical equipment, appliance and component manufacturing",,0.25
+2018,Ontario,All employees,Electric lighting equipment manufacturing,,0.03
+2018,Ontario,All employees,Household appliance manufacturing,,0.02
+2018,Ontario,All employees,Electrical equipment manufacturing,,0.11
+2018,Ontario,All employees,Other electrical equipment and component manufacturing,,0.09
+2018,Ontario,All employees,Transportation equipment manufacturing,,2.04
+2018,Ontario,All employees,Motor vehicle manufacturing,,0.59
+2018,Ontario,All employees,Motor vehicle body and trailer manufacturing,,0.08
+2018,Ontario,All employees,Motor vehicle parts manufacturing,,1.05
+2018,Ontario,All employees,Aerospace product and parts manufacturing,,0.21
+2018,Ontario,All employees,Railroad rolling stock manufacturing,,
+2018,Ontario,All employees,Furniture and related product manufacturing,,0.45
+2018,Ontario,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
+2018,Ontario,All employees,Office furniture (including fixtures) manufacturing,,0.21
+2018,Ontario,All employees,Other furniture-related product manufacturing,,0.03
+2018,Ontario,All employees,Miscellaneous manufacturing,,0.39
+2018,Ontario,All employees,Medical equipment and supplies manufacturing,,0.15
+2018,Ontario,All employees,Other miscellaneous manufacturing,,0.25
+2018,Ontario,Salaried employees paid a fixed salary,Manufacturing,,3.01
+2018,Ontario,Salaried employees paid a fixed salary,Non-durable goods,,1.14
+2018,Ontario,Salaried employees paid a fixed salary,Food manufacturing,,0.28
+2018,Ontario,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2018,Ontario,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.06
+2018,Ontario,Salaried employees paid a fixed salary,Other food manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Textile mills,,
+2018,Ontario,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2018,Ontario,Salaried employees paid a fixed salary,Fabric mills,,
+2018,Ontario,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
+2018,Ontario,Salaried employees paid a fixed salary,Textile furnishings mills,,
+2018,Ontario,Salaried employees paid a fixed salary,Other textile product mills,,
+2018,Ontario,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2018,Ontario,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Paper manufacturing,,0.07
+2018,Ontario,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2018,Ontario,Salaried employees paid a fixed salary,Printing and related support activities,,0.1
+2018,Ontario,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Chemical manufacturing,,0.32
+2018,Ontario,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2018,Ontario,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2018,Ontario,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
+2018,Ontario,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2018,Ontario,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Plastic product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Durable goods,,1.87
+2018,Ontario,Salaried employees paid a fixed salary,Wood product manufacturing,,0.03
+2018,Ontario,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2018,Ontario,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2018,Ontario,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2018,Ontario,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2018,Ontario,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2018,Ontario,Salaried employees paid a fixed salary,Foundries,,
+2018,Ontario,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.27
+2018,Ontario,Salaried employees paid a fixed salary,Forging and stamping,,
+2018,Ontario,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2018,Ontario,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
+2018,Ontario,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
+2018,Ontario,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Machinery manufacturing,,0.25
+2018,Ontario,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2018,Ontario,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2018,Ontario,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2018,Ontario,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.29
+2018,Ontario,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,Ontario,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.13
+2018,Ontario,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.49
+2018,Ontario,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,0.24
+2018,Ontario,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Railroad rolling stock manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.14
+2018,Ontario,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2018,Ontario,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.08
+2018,Ontario,Employees paid by the hour,Manufacturing,,7.11
+2018,Ontario,Employees paid by the hour,Non-durable goods,,2.68
+2018,Ontario,Employees paid by the hour,Food manufacturing,,0.97
+2018,Ontario,Employees paid by the hour,Animal food manufacturing,,
+2018,Ontario,Employees paid by the hour,Grain and oilseed milling,,
+2018,Ontario,Employees paid by the hour,Sugar and confectionery product manufacturing,,
+2018,Ontario,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2018,Ontario,Employees paid by the hour,Dairy product manufacturing,,
+2018,Ontario,Employees paid by the hour,Meat product manufacturing,,
+2018,Ontario,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.27
+2018,Ontario,Employees paid by the hour,Other food manufacturing,,
+2018,Ontario,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2018,Ontario,Employees paid by the hour,Cannabis product manufacturing,,
+2018,Ontario,Employees paid by the hour,Textile mills,,
+2018,Ontario,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2018,Ontario,Employees paid by the hour,Fabric mills,,
+2018,Ontario,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
+2018,Ontario,Employees paid by the hour,Textile furnishings mills,,
+2018,Ontario,Employees paid by the hour,Other textile product mills,,
+2018,Ontario,Employees paid by the hour,Clothing manufacturing,,
+2018,Ontario,Employees paid by the hour,Leather and allied product manufacturing,,
+2018,Ontario,Employees paid by the hour,Leather and hide tanning and finishing,,
+2018,Ontario,Employees paid by the hour,Footwear manufacturing,,
+2018,Ontario,Employees paid by the hour,Other leather and allied product manufacturing,,
+2018,Ontario,Employees paid by the hour,Paper manufacturing,,0.2
+2018,Ontario,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2018,Ontario,Employees paid by the hour,Printing and related support activities,,0.23
+2018,Ontario,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2018,Ontario,Employees paid by the hour,Chemical manufacturing,,0.36
+2018,Ontario,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2018,Ontario,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2018,Ontario,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
+2018,Ontario,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2018,Ontario,Employees paid by the hour,Other chemical product manufacturing,,
+2018,Ontario,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2018,Ontario,Employees paid by the hour,Plastic product manufacturing,,
+2018,Ontario,Employees paid by the hour,Rubber product manufacturing,,
+2018,Ontario,Employees paid by the hour,Durable goods,,4.43
+2018,Ontario,Employees paid by the hour,Wood product manufacturing,,0.22
+2018,Ontario,Employees paid by the hour,Sawmills and wood preservation,,
+2018,Ontario,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2018,Ontario,Employees paid by the hour,Other wood product manufacturing,,0.13
+2018,Ontario,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2018,Ontario,Employees paid by the hour,Clay product and refractory manufacturing,,
+2018,Ontario,Employees paid by the hour,Glass and glass product manufacturing,,
+2018,Ontario,Employees paid by the hour,Cement and concrete product manufacturing,,
+2018,Ontario,Employees paid by the hour,Lime and gypsum product manufacturing,,
+2018,Ontario,Employees paid by the hour,Primary metal manufacturing,,
+2018,Ontario,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2018,Ontario,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2018,Ontario,Employees paid by the hour,Alumina and aluminum production and processing,,
+2018,Ontario,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2018,Ontario,Employees paid by the hour,Foundries,,
+2018,Ontario,Employees paid by the hour,Fabricated metal product manufacturing,,0.68
+2018,Ontario,Employees paid by the hour,Forging and stamping,,
+2018,Ontario,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2018,Ontario,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2018,Ontario,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2018,Ontario,Employees paid by the hour,Hardware manufacturing,,
+2018,Ontario,Employees paid by the hour,Spring and wire product manufacturing,,
+2018,Ontario,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.17
+2018,Ontario,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
+2018,Ontario,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2018,Ontario,Employees paid by the hour,Machinery manufacturing,,0.67
+2018,Ontario,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2018,Ontario,Employees paid by the hour,Industrial machinery manufacturing,,
+2018,Ontario,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2018,Ontario,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2018,Ontario,Employees paid by the hour,Metalworking machinery manufacturing,,
+2018,Ontario,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2018,Ontario,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2018,Ontario,Employees paid by the hour,Computer and electronic product manufacturing,,0.15
+2018,Ontario,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
+2018,Ontario,Employees paid by the hour,Communications equipment manufacturing,,
+2018,Ontario,Employees paid by the hour,Audio and video equipment manufacturing,,
+2018,Ontario,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2018,Ontario,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,Ontario,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.1
+2018,Ontario,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2018,Ontario,Employees paid by the hour,Household appliance manufacturing,,
+2018,Ontario,Employees paid by the hour,Electrical equipment manufacturing,,
+2018,Ontario,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2018,Ontario,Employees paid by the hour,Transportation equipment manufacturing,,1.52
+2018,Ontario,Employees paid by the hour,Motor vehicle manufacturing,,
+2018,Ontario,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2018,Ontario,Employees paid by the hour,Motor vehicle parts manufacturing,,0.8
+2018,Ontario,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2018,Ontario,Employees paid by the hour,Railroad rolling stock manufacturing,,
+2018,Ontario,Employees paid by the hour,Furniture and related product manufacturing,,0.34
+2018,Ontario,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.17
+2018,Ontario,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2018,Ontario,Employees paid by the hour,Miscellaneous manufacturing,,0.22
+2018,Ontario,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2018,Ontario,Employees paid by the hour,Other miscellaneous manufacturing,,0.14
+2018,Manitoba,All employees,Manufacturing,46,9.13
+2018,Manitoba,All employees,Non-durable goods,,3.8
+2018,Manitoba,All employees,Food manufacturing,,1.62
+2018,Manitoba,All employees,Animal food manufacturing,,0.07
+2018,Manitoba,All employees,Meat product manufacturing,,0.76
+2018,Manitoba,All employees,Bakeries and tortilla manufacturing,,0.21
+2018,Manitoba,All employees,Beverage and tobacco product manufacturing,,0.18
+2018,Manitoba,All employees,Cannabis product manufacturing,,
+2018,Manitoba,All employees,Textile and fabric finishing and fabric coating,,
+2018,Manitoba,All employees,Other textile product mills,,
+2018,Manitoba,All employees,Cut and sew clothing manufacturing,,0.17
+2018,Manitoba,All employees,Leather and hide tanning and finishing,,
+2018,Manitoba,All employees,Paper manufacturing,,0.2
+2018,Manitoba,All employees,"Pulp, paper and paperboard mills",,
+2018,Manitoba,All employees,Printing and related support activities,,0.52
+2018,Manitoba,All employees,Chemical manufacturing,,0.45
+2018,Manitoba,All employees,Basic chemical manufacturing,,0.06
+2018,Manitoba,All employees,Durable goods,,5.34
+2018,Manitoba,All employees,Wood product manufacturing,,0.32
+2018,Manitoba,All employees,Sawmills and wood preservation,,0.07
+2018,Manitoba,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.04
+2018,Manitoba,All employees,Other wood product manufacturing,,0.22
+2018,Manitoba,All employees,Non-metallic mineral product manufacturing,,0.24
+2018,Manitoba,All employees,Cement and concrete product manufacturing,,0.17
+2018,Manitoba,All employees,Other non-metallic mineral product manufacturing,,0.04
+2018,Manitoba,All employees,Primary metal manufacturing,,0.57
+2018,Manitoba,All employees,Foundries,,0.13
+2018,Manitoba,All employees,Fabricated metal product manufacturing,,0.73
+2018,Manitoba,All employees,Architectural and structural metals manufacturing,,0.3
+2018,Manitoba,All employees,"Boiler, tank and shipping container manufacturing",,0.12
+2018,Manitoba,All employees,Spring and wire product manufacturing,,
+2018,Manitoba,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.06
+2018,Manitoba,All employees,Machinery manufacturing,,0.99
+2018,Manitoba,All employees,"Agricultural, construction and mining machinery manufacturing",,0.66
+2018,Manitoba,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
+2018,Manitoba,All employees,Other general-purpose machinery manufacturing,,0.14
+2018,Manitoba,All employees,Computer and electronic product manufacturing,,0.07
+2018,Manitoba,All employees,Semiconductor and other electronic component manufacturing,,0.04
+2018,Manitoba,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,Manitoba,All employees,Electrical equipment manufacturing,,0.12
+2018,Manitoba,All employees,Transportation equipment manufacturing,,1.45
+2018,Manitoba,All employees,Motor vehicle body and trailer manufacturing,,0.21
+2018,Manitoba,All employees,Aerospace product and parts manufacturing,,0.68
+2018,Manitoba,All employees,Furniture and related product manufacturing,,0.58
+2018,Manitoba,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.55
+2018,Manitoba,All employees,Office furniture (including fixtures) manufacturing,,
+2018,Manitoba,All employees,Other furniture-related product manufacturing,,
+2018,Manitoba,All employees,Miscellaneous manufacturing,,0.27
+2018,Manitoba,All employees,Medical equipment and supplies manufacturing,,0.09
+2018,Manitoba,All employees,Other miscellaneous manufacturing,,0.18
+2018,Manitoba,Salaried employees paid a fixed salary,Manufacturing,,2.06
+2018,Manitoba,Salaried employees paid a fixed salary,Non-durable goods,,0.8
+2018,Manitoba,Salaried employees paid a fixed salary,Food manufacturing,,0.28
+2018,Manitoba,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Meat product manufacturing,,0.1
+2018,Manitoba,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
+2018,Manitoba,Salaried employees paid a fixed salary,Other textile product mills,,
+2018,Manitoba,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Paper manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2018,Manitoba,Salaried employees paid a fixed salary,Printing and related support activities,,0.1
+2018,Manitoba,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Durable goods,,1.25
+2018,Manitoba,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2018,Manitoba,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2018,Manitoba,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2018,Manitoba,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2018,Manitoba,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,Manitoba,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.31
+2018,Manitoba,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.08
+2018,Manitoba,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.08
+2018,Manitoba,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2018,Manitoba,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2018,Manitoba,Employees paid by the hour,Manufacturing,,6.76
+2018,Manitoba,Employees paid by the hour,Non-durable goods,,2.85
+2018,Manitoba,Employees paid by the hour,Food manufacturing,,1.3
+2018,Manitoba,Employees paid by the hour,Animal food manufacturing,,
+2018,Manitoba,Employees paid by the hour,Meat product manufacturing,,0.65
+2018,Manitoba,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2018,Manitoba,Employees paid by the hour,Cannabis product manufacturing,,
+2018,Manitoba,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
+2018,Manitoba,Employees paid by the hour,Other textile product mills,,
+2018,Manitoba,Employees paid by the hour,Clothing manufacturing,,
+2018,Manitoba,Employees paid by the hour,Cut and sew clothing manufacturing,,
+2018,Manitoba,Employees paid by the hour,Leather and hide tanning and finishing,,
+2018,Manitoba,Employees paid by the hour,Paper manufacturing,,
+2018,Manitoba,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2018,Manitoba,Employees paid by the hour,Printing and related support activities,,0.39
+2018,Manitoba,Employees paid by the hour,Chemical manufacturing,,
+2018,Manitoba,Employees paid by the hour,Basic chemical manufacturing,,
+2018,Manitoba,Employees paid by the hour,Durable goods,,3.91
+2018,Manitoba,Employees paid by the hour,Wood product manufacturing,,
+2018,Manitoba,Employees paid by the hour,Sawmills and wood preservation,,
+2018,Manitoba,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2018,Manitoba,Employees paid by the hour,Other wood product manufacturing,,
+2018,Manitoba,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2018,Manitoba,Employees paid by the hour,Cement and concrete product manufacturing,,
+2018,Manitoba,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2018,Manitoba,Employees paid by the hour,Primary metal manufacturing,,
+2018,Manitoba,Employees paid by the hour,Fabricated metal product manufacturing,,0.53
+2018,Manitoba,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2018,Manitoba,Employees paid by the hour,Machinery manufacturing,,
+2018,Manitoba,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2018,Manitoba,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2018,Manitoba,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2018,Manitoba,Employees paid by the hour,Computer and electronic product manufacturing,,
+2018,Manitoba,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,Manitoba,Employees paid by the hour,Electrical equipment manufacturing,,
+2018,Manitoba,Employees paid by the hour,Transportation equipment manufacturing,,1.13
+2018,Manitoba,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2018,Manitoba,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2018,Manitoba,Employees paid by the hour,Furniture and related product manufacturing,,0.46
+2018,Manitoba,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.44
+2018,Manitoba,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2018,Manitoba,Employees paid by the hour,Other furniture-related product manufacturing,,
+2018,Manitoba,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2018,Manitoba,Employees paid by the hour,Other miscellaneous manufacturing,,
+2018,Saskatchewan,All employees,Manufacturing,47,5
+2018,Saskatchewan,All employees,Non-durable goods,,1.83
+2018,Saskatchewan,All employees,Food manufacturing,,0.91
+2018,Saskatchewan,All employees,Animal food manufacturing,,0.1
+2018,Saskatchewan,All employees,Grain and oilseed milling,,0.19
+2018,Saskatchewan,All employees,Meat product manufacturing,,0.41
+2018,Saskatchewan,All employees,Beverage and tobacco product manufacturing,,0.17
+2018,Saskatchewan,All employees,Cannabis product manufacturing,,
+2018,Saskatchewan,All employees,Printing and related support activities,,0.1
+2018,Saskatchewan,All employees,Chemical manufacturing,,0.25
+2018,Saskatchewan,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.11
+2018,Saskatchewan,All employees,Durable goods,,3.17
+2018,Saskatchewan,All employees,Wood product manufacturing,,0.29
+2018,Saskatchewan,All employees,Sawmills and wood preservation,,0.11
+2018,Saskatchewan,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
+2018,Saskatchewan,All employees,Other wood product manufacturing,,0.05
+2018,Saskatchewan,All employees,Cement and concrete product manufacturing,,0.18
+2018,Saskatchewan,All employees,Fabricated metal product manufacturing,,0.61
+2018,Saskatchewan,All employees,Architectural and structural metals manufacturing,,0.25
+2018,Saskatchewan,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
+2018,Saskatchewan,All employees,Machinery manufacturing,,1.07
+2018,Saskatchewan,All employees,"Agricultural, construction and mining machinery manufacturing",,0.93
+2018,Saskatchewan,All employees,Computer and electronic product manufacturing,,0.15
+2018,Saskatchewan,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,Saskatchewan,All employees,Motor vehicle body and trailer manufacturing,,0.22
+2018,Saskatchewan,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.08
+2018,Saskatchewan,All employees,Miscellaneous manufacturing,,0.13
+2018,Saskatchewan,All employees,Medical equipment and supplies manufacturing,,0.06
+2018,Saskatchewan,All employees,Other miscellaneous manufacturing,,0.07
+2018,Saskatchewan,Salaried employees paid a fixed salary,Manufacturing,,1.35
+2018,Saskatchewan,Salaried employees paid a fixed salary,Non-durable goods,,0.5
+2018,Saskatchewan,Salaried employees paid a fixed salary,Food manufacturing,,
+2018,Saskatchewan,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2018,Saskatchewan,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2018,Saskatchewan,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,Saskatchewan,Salaried employees paid a fixed salary,Printing and related support activities,,
+2018,Saskatchewan,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2018,Saskatchewan,Salaried employees paid a fixed salary,Durable goods,,0.85
+2018,Saskatchewan,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2018,Saskatchewan,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2018,Saskatchewan,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2018,Saskatchewan,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2018,Saskatchewan,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2018,Saskatchewan,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,Saskatchewan,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2018,Saskatchewan,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,Saskatchewan,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2018,Saskatchewan,Employees paid by the hour,Manufacturing,,3.48
+2018,Saskatchewan,Employees paid by the hour,Non-durable goods,,1.26
+2018,Saskatchewan,Employees paid by the hour,Food manufacturing,,
+2018,Saskatchewan,Employees paid by the hour,Grain and oilseed milling,,
+2018,Saskatchewan,Employees paid by the hour,Meat product manufacturing,,
+2018,Saskatchewan,Employees paid by the hour,Cannabis product manufacturing,,
+2018,Saskatchewan,Employees paid by the hour,Printing and related support activities,,
+2018,Saskatchewan,Employees paid by the hour,Chemical manufacturing,,
+2018,Saskatchewan,Employees paid by the hour,Durable goods,,2.22
+2018,Saskatchewan,Employees paid by the hour,Fabricated metal product manufacturing,,
+2018,Saskatchewan,Employees paid by the hour,Machinery manufacturing,,
+2018,Saskatchewan,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2018,Saskatchewan,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2018,Saskatchewan,Employees paid by the hour,Computer and electronic product manufacturing,,
+2018,Saskatchewan,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,Saskatchewan,Employees paid by the hour,Transportation equipment manufacturing,,
+2018,Saskatchewan,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,Saskatchewan,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2018,Alberta,All employees,Manufacturing,48,6.13
+2018,Alberta,All employees,Non-durable goods,,2.59
+2018,Alberta,All employees,Food manufacturing,,1.11
+2018,Alberta,All employees,Animal food manufacturing,,0.06
+2018,Alberta,All employees,Grain and oilseed milling,,0.04
+2018,Alberta,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.08
+2018,Alberta,All employees,Meat product manufacturing,,0.54
+2018,Alberta,All employees,Bakeries and tortilla manufacturing,,0.16
+2018,Alberta,All employees,Other food manufacturing,,0.14
+2018,Alberta,All employees,Beverage and tobacco product manufacturing,,0.17
+2018,Alberta,All employees,Cannabis product manufacturing,,
+2018,Alberta,All employees,Cut and sew clothing manufacturing,,0.01
+2018,Alberta,All employees,Other leather and allied product manufacturing,,
+2018,Alberta,All employees,Paper manufacturing,,0.1
+2018,Alberta,All employees,"Pulp, paper and paperboard mills",,0.07
+2018,Alberta,All employees,Converted paper product manufacturing,,0.03
+2018,Alberta,All employees,Printing and related support activities,,0.21
+2018,Alberta,All employees,Petroleum and coal product manufacturing,,0.22
+2018,Alberta,All employees,Chemical manufacturing,,0.45
+2018,Alberta,All employees,Basic chemical manufacturing,,0.15
+2018,Alberta,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.12
+2018,Alberta,All employees,Other chemical product manufacturing,,0.08
+2018,Alberta,All employees,Plastics and rubber products manufacturing,,0.29
+2018,Alberta,All employees,Durable goods,,3.54
+2018,Alberta,All employees,Wood product manufacturing,,0.45
+2018,Alberta,All employees,Sawmills and wood preservation,,0.18
+2018,Alberta,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.1
+2018,Alberta,All employees,Other wood product manufacturing,,0.17
+2018,Alberta,All employees,Non-metallic mineral product manufacturing,,0.38
+2018,Alberta,All employees,Glass and glass product manufacturing,,0.02
+2018,Alberta,All employees,Cement and concrete product manufacturing,,0.24
+2018,Alberta,All employees,Other non-metallic mineral product manufacturing,,0.08
+2018,Alberta,All employees,Primary metal manufacturing,,0.16
+2018,Alberta,All employees,Fabricated metal product manufacturing,,1
+2018,Alberta,All employees,Forging and stamping,,
+2018,Alberta,All employees,Architectural and structural metals manufacturing,,0.43
+2018,Alberta,All employees,"Boiler, tank and shipping container manufacturing",,0.14
+2018,Alberta,All employees,Spring and wire product manufacturing,,0.03
+2018,Alberta,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.2
+2018,Alberta,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.06
+2018,Alberta,All employees,Other fabricated metal product manufacturing,,0.13
+2018,Alberta,All employees,Machinery manufacturing,,0.84
+2018,Alberta,All employees,"Agricultural, construction and mining machinery manufacturing",,0.41
+2018,Alberta,All employees,Industrial machinery manufacturing,,0.02
+2018,Alberta,All employees,Commercial and service industry machinery manufacturing,,0.02
+2018,Alberta,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.11
+2018,Alberta,All employees,Metalworking machinery manufacturing,,0.04
+2018,Alberta,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
+2018,Alberta,All employees,Other general-purpose machinery manufacturing,,0.2
+2018,Alberta,All employees,Computer and electronic product manufacturing,,0.15
+2018,Alberta,All employees,Computer and peripheral equipment manufacturing,,
+2018,Alberta,All employees,Communications equipment manufacturing,,
+2018,Alberta,All employees,Semiconductor and other electronic component manufacturing,,0.04
+2018,Alberta,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.08
+2018,Alberta,All employees,"Electrical equipment, appliance and component manufacturing",,0.1
+2018,Alberta,All employees,Electrical equipment manufacturing,,0.07
+2018,Alberta,All employees,Other electrical equipment and component manufacturing,,
+2018,Alberta,All employees,Transportation equipment manufacturing,,0.09
+2018,Alberta,All employees,Motor vehicle body and trailer manufacturing,,0.05
+2018,Alberta,All employees,Motor vehicle parts manufacturing,,0.01
+2018,Alberta,All employees,Aerospace product and parts manufacturing,,
+2018,Alberta,All employees,Furniture and related product manufacturing,,0.16
+2018,Alberta,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.1
+2018,Alberta,All employees,Office furniture (including fixtures) manufacturing,,0.04
+2018,Alberta,All employees,Other furniture-related product manufacturing,,0.03
+2018,Alberta,All employees,Miscellaneous manufacturing,,0.2
+2018,Alberta,All employees,Medical equipment and supplies manufacturing,,0.07
+2018,Alberta,All employees,Other miscellaneous manufacturing,,0.13
+2018,Alberta,Salaried employees paid a fixed salary,Manufacturing,,1.95
+2018,Alberta,Salaried employees paid a fixed salary,Non-durable goods,,
+2018,Alberta,Salaried employees paid a fixed salary,Food manufacturing,,0.2
+2018,Alberta,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2018,Alberta,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Paper manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2018,Alberta,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Printing and related support activities,,0.05
+2018,Alberta,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2018,Alberta,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Durable goods,,1.03
+2018,Alberta,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2018,Alberta,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2018,Alberta,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2018,Alberta,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2018,Alberta,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2018,Alberta,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,Alberta,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2018,Alberta,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2018,Alberta,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2018,Alberta,Employees paid by the hour,Manufacturing,,3.94
+2018,Alberta,Employees paid by the hour,Non-durable goods,,
+2018,Alberta,Employees paid by the hour,Food manufacturing,,0.87
+2018,Alberta,Employees paid by the hour,Grain and oilseed milling,,
+2018,Alberta,Employees paid by the hour,Meat product manufacturing,,
+2018,Alberta,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2018,Alberta,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2018,Alberta,Employees paid by the hour,Cannabis product manufacturing,,
+2018,Alberta,Employees paid by the hour,Paper manufacturing,,
+2018,Alberta,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2018,Alberta,Employees paid by the hour,Converted paper product manufacturing,,
+2018,Alberta,Employees paid by the hour,Printing and related support activities,,0.13
+2018,Alberta,Employees paid by the hour,Chemical manufacturing,,
+2018,Alberta,Employees paid by the hour,Basic chemical manufacturing,,
+2018,Alberta,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2018,Alberta,Employees paid by the hour,Other chemical product manufacturing,,
+2018,Alberta,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2018,Alberta,Employees paid by the hour,Durable goods,,2.36
+2018,Alberta,Employees paid by the hour,Wood product manufacturing,,
+2018,Alberta,Employees paid by the hour,Sawmills and wood preservation,,
+2018,Alberta,Employees paid by the hour,Other wood product manufacturing,,
+2018,Alberta,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2018,Alberta,Employees paid by the hour,Cement and concrete product manufacturing,,
+2018,Alberta,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2018,Alberta,Employees paid by the hour,Fabricated metal product manufacturing,,
+2018,Alberta,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2018,Alberta,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2018,Alberta,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2018,Alberta,Employees paid by the hour,Machinery manufacturing,,
+2018,Alberta,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2018,Alberta,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2018,Alberta,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2018,Alberta,Employees paid by the hour,Computer and electronic product manufacturing,,
+2018,Alberta,Employees paid by the hour,Communications equipment manufacturing,,
+2018,Alberta,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,Alberta,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2018,Alberta,Employees paid by the hour,Electrical equipment manufacturing,,
+2018,Alberta,Employees paid by the hour,Transportation equipment manufacturing,,
+2018,Alberta,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2018,Alberta,Employees paid by the hour,Motor vehicle parts manufacturing,,
+2018,Alberta,Employees paid by the hour,Furniture and related product manufacturing,,
+2018,Alberta,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,Alberta,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2018,Alberta,Employees paid by the hour,Other furniture-related product manufacturing,,
+2018,Alberta,Employees paid by the hour,Miscellaneous manufacturing,,
+2018,Alberta,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2018,Alberta,Employees paid by the hour,Other miscellaneous manufacturing,,
+2018,British Columbia,All employees,Manufacturing,59,6.67
+2018,British Columbia,All employees,Non-durable goods,,2.71
+2018,British Columbia,All employees,Food manufacturing,,1.16
+2018,British Columbia,All employees,Animal food manufacturing,,0.04
+2018,British Columbia,All employees,Grain and oilseed milling,,0.01
+2018,British Columbia,All employees,Sugar and confectionery product manufacturing,,0.05
+2018,British Columbia,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.07
+2018,British Columbia,All employees,Dairy product manufacturing,,0.09
+2018,British Columbia,All employees,Meat product manufacturing,,0.22
+2018,British Columbia,All employees,Seafood product preparation and packaging,,0.15
+2018,British Columbia,All employees,Bakeries and tortilla manufacturing,,0.28
+2018,British Columbia,All employees,Other food manufacturing,,0.24
+2018,British Columbia,All employees,Beverage and tobacco product manufacturing,,0.37
+2018,British Columbia,All employees,Cannabis product manufacturing,,
+2018,British Columbia,All employees,Fabric mills,,
+2018,British Columbia,All employees,Textile product mills,,0.04
+2018,British Columbia,All employees,Textile furnishings mills,,0.01
+2018,British Columbia,All employees,Other textile product mills,,0.03
+2018,British Columbia,All employees,Clothing manufacturing,,0.07
+2018,British Columbia,All employees,Cut and sew clothing manufacturing,,0.05
+2018,British Columbia,All employees,Other leather and allied product manufacturing,,
+2018,British Columbia,All employees,Paper manufacturing,,0.32
+2018,British Columbia,All employees,"Pulp, paper and paperboard mills",,0.26
+2018,British Columbia,All employees,Converted paper product manufacturing,,0.06
+2018,British Columbia,All employees,Printing and related support activities,,0.19
+2018,British Columbia,All employees,Petroleum and coal product manufacturing,,0.04
+2018,British Columbia,All employees,Chemical manufacturing,,0.28
+2018,British Columbia,All employees,Basic chemical manufacturing,,0.02
+2018,British Columbia,All employees,Pharmaceutical and medicine manufacturing,,0.11
+2018,British Columbia,All employees,"Paint, coating and adhesive manufacturing",,0.03
+2018,British Columbia,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.07
+2018,British Columbia,All employees,Other chemical product manufacturing,,0.02
+2018,British Columbia,All employees,Plastics and rubber products manufacturing,,0.24
+2018,British Columbia,All employees,Plastic product manufacturing,,0.21
+2018,British Columbia,All employees,Durable goods,,3.96
+2018,British Columbia,All employees,Wood product manufacturing,,1.22
+2018,British Columbia,All employees,Sawmills and wood preservation,,0.67
+2018,British Columbia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.22
+2018,British Columbia,All employees,Other wood product manufacturing,,0.33
+2018,British Columbia,All employees,Non-metallic mineral product manufacturing,,0.29
+2018,British Columbia,All employees,Glass and glass product manufacturing,,0.07
+2018,British Columbia,All employees,Cement and concrete product manufacturing,,0.16
+2018,British Columbia,All employees,Other non-metallic mineral product manufacturing,,0.05
+2018,British Columbia,All employees,Primary metal manufacturing,,0.16
+2018,British Columbia,All employees,Fabricated metal product manufacturing,,0.56
+2018,British Columbia,All employees,Forging and stamping,,0.01
+2018,British Columbia,All employees,Cutlery and hand tool manufacturing,,
+2018,British Columbia,All employees,Architectural and structural metals manufacturing,,0.28
+2018,British Columbia,All employees,"Boiler, tank and shipping container manufacturing",,0.03
+2018,British Columbia,All employees,Spring and wire product manufacturing,,0.02
+2018,British Columbia,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.08
+2018,British Columbia,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
+2018,British Columbia,All employees,Other fabricated metal product manufacturing,,0.08
+2018,British Columbia,All employees,Machinery manufacturing,,0.41
+2018,British Columbia,All employees,"Agricultural, construction and mining machinery manufacturing",,0.05
+2018,British Columbia,All employees,Industrial machinery manufacturing,,0.09
+2018,British Columbia,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.06
+2018,British Columbia,All employees,Metalworking machinery manufacturing,,0.04
+2018,British Columbia,All employees,Other general-purpose machinery manufacturing,,0.1
+2018,British Columbia,All employees,Computer and electronic product manufacturing,,0.25
+2018,British Columbia,All employees,Computer and peripheral equipment manufacturing,,0.04
+2018,British Columbia,All employees,Communications equipment manufacturing,,0.04
+2018,British Columbia,All employees,Semiconductor and other electronic component manufacturing,,0.06
+2018,British Columbia,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.1
+2018,British Columbia,All employees,"Electrical equipment, appliance and component manufacturing",,0.16
+2018,British Columbia,All employees,Electrical equipment manufacturing,,0.05
+2018,British Columbia,All employees,Other electrical equipment and component manufacturing,,0.08
+2018,British Columbia,All employees,Transportation equipment manufacturing,,0.34
+2018,British Columbia,All employees,Motor vehicle body and trailer manufacturing,,0.08
+2018,British Columbia,All employees,Aerospace product and parts manufacturing,,0.06
+2018,British Columbia,All employees,Ship and boat building,,0.12
+2018,British Columbia,All employees,Furniture and related product manufacturing,,0.26
+2018,British Columbia,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
+2018,British Columbia,All employees,Office furniture (including fixtures) manufacturing,,0.03
+2018,British Columbia,All employees,Other furniture-related product manufacturing,,0.02
+2018,British Columbia,All employees,Miscellaneous manufacturing,,0.31
+2018,British Columbia,All employees,Medical equipment and supplies manufacturing,,0.11
+2018,British Columbia,All employees,Other miscellaneous manufacturing,,0.21
+2018,British Columbia,Salaried employees paid a fixed salary,Manufacturing,,1.72
+2018,British Columbia,Salaried employees paid a fixed salary,Non-durable goods,,0.7
+2018,British Columbia,Salaried employees paid a fixed salary,Food manufacturing,,0.28
+2018,British Columbia,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2018,British Columbia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,0.11
+2018,British Columbia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Paper manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2018,British Columbia,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Printing and related support activities,,
+2018,British Columbia,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2018,British Columbia,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Plastic product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Durable goods,,1.02
+2018,British Columbia,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2018,British Columbia,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2018,British Columbia,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.06
+2018,British Columbia,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.15
+2018,British Columbia,Salaried employees paid a fixed salary,Forging and stamping,,
+2018,British Columbia,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2018,British Columbia,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2018,British Columbia,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2018,British Columbia,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,British Columbia,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Ship and boat building,,
+2018,British Columbia,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2018,British Columbia,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2018,British Columbia,Employees paid by the hour,Manufacturing,,4.62
+2018,British Columbia,Employees paid by the hour,Non-durable goods,,1.86
+2018,British Columbia,Employees paid by the hour,Food manufacturing,,0.83
+2018,British Columbia,Employees paid by the hour,Animal food manufacturing,,
+2018,British Columbia,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2018,British Columbia,Employees paid by the hour,Meat product manufacturing,,
+2018,British Columbia,Employees paid by the hour,Seafood product preparation and packaging,,
+2018,British Columbia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2018,British Columbia,Employees paid by the hour,Beverage and tobacco product manufacturing,,0.23
+2018,British Columbia,Employees paid by the hour,Cannabis product manufacturing,,
+2018,British Columbia,Employees paid by the hour,Clothing manufacturing,,
+2018,British Columbia,Employees paid by the hour,Other leather and allied product manufacturing,,
+2018,British Columbia,Employees paid by the hour,Paper manufacturing,,
+2018,British Columbia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2018,British Columbia,Employees paid by the hour,Converted paper product manufacturing,,
+2018,British Columbia,Employees paid by the hour,Printing and related support activities,,
+2018,British Columbia,Employees paid by the hour,Basic chemical manufacturing,,
+2018,British Columbia,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2018,British Columbia,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2018,British Columbia,Employees paid by the hour,Other chemical product manufacturing,,
+2018,British Columbia,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2018,British Columbia,Employees paid by the hour,Plastic product manufacturing,,
+2018,British Columbia,Employees paid by the hour,Durable goods,,2.76
+2018,British Columbia,Employees paid by the hour,Wood product manufacturing,,
+2018,British Columbia,Employees paid by the hour,Sawmills and wood preservation,,
+2018,British Columbia,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2018,British Columbia,Employees paid by the hour,Other wood product manufacturing,,0.29
+2018,British Columbia,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.22
+2018,British Columbia,Employees paid by the hour,Glass and glass product manufacturing,,
+2018,British Columbia,Employees paid by the hour,Cement and concrete product manufacturing,,
+2018,British Columbia,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2018,British Columbia,Employees paid by the hour,Primary metal manufacturing,,
+2018,British Columbia,Employees paid by the hour,Fabricated metal product manufacturing,,0.37
+2018,British Columbia,Employees paid by the hour,Forging and stamping,,
+2018,British Columbia,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2018,British Columbia,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2018,British Columbia,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2018,British Columbia,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2018,British Columbia,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2018,British Columbia,Employees paid by the hour,Machinery manufacturing,,
+2018,British Columbia,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2018,British Columbia,Employees paid by the hour,Industrial machinery manufacturing,,
+2018,British Columbia,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2018,British Columbia,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2018,British Columbia,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2018,British Columbia,Employees paid by the hour,Electrical equipment manufacturing,,
+2018,British Columbia,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2018,British Columbia,Employees paid by the hour,Transportation equipment manufacturing,,
+2018,British Columbia,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2018,British Columbia,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2018,British Columbia,Employees paid by the hour,Ship and boat building,,
+2018,British Columbia,Employees paid by the hour,Furniture and related product manufacturing,,
+2018,British Columbia,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2018,British Columbia,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2018,British Columbia,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2018,British Columbia,Employees paid by the hour,Other miscellaneous manufacturing,,
+2018,Yukon,All employees,Cannabis product manufacturing,,
+2018,Yukon,All employees,Durable goods,,
+2018,Yukon,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,Yukon,Salaried employees paid a fixed salary,Durable goods,,
+2018,Yukon,Employees paid by the hour,Cannabis product manufacturing,,
+2018,Yukon,Employees paid by the hour,Durable goods,,
+2018,Northwest Territories,All employees,Cannabis product manufacturing,,
+2018,Northwest Territories,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,Northwest Territories,Employees paid by the hour,Cannabis product manufacturing,,
+2018,Nunavut,All employees,Cannabis product manufacturing,,
+2018,Nunavut,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2018,Nunavut,Employees paid by the hour,Cannabis product manufacturing,,
+2019,Canada,All employees,Non-durable goods,,3.79
+2019,Canada,All employees,Food manufacturing,,1.45
+2019,Canada,All employees,Animal food manufacturing,,0.06
+2019,Canada,All employees,Grain and oilseed milling,,0.05
+2019,Canada,All employees,Sugar and confectionery product manufacturing,,0.06
+2019,Canada,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.11
+2019,Canada,All employees,Dairy product manufacturing,,0.16
+2019,Canada,All employees,Meat product manufacturing,,0.38
+2019,Canada,All employees,Seafood product preparation and packaging,,0.13
+2019,Canada,All employees,Bakeries and tortilla manufacturing,,0.29
+2019,Canada,All employees,Other food manufacturing,,0.21
+2019,Canada,All employees,Beverage and tobacco product manufacturing,,0.28
+2019,Canada,All employees,Beverage manufacturing,,0.26
+2019,Canada,All employees,Tobacco manufacturing,,
+2019,Canada,All employees,Cannabis product manufacturing,,
+2019,Canada,All employees,Textile mills,,0.04
+2019,Canada,All employees,"Fibre, yarn and thread mills",,0
+2019,Canada,All employees,Fabric mills,,0.02
+2019,Canada,All employees,Textile and fabric finishing and fabric coating,,0.01
+2019,Canada,All employees,Textile product mills,,0.05
+2019,Canada,All employees,Textile furnishings mills,,0.02
+2019,Canada,All employees,Other textile product mills,,0.04
+2019,Canada,All employees,Clothing manufacturing,,0.12
+2019,Canada,All employees,Clothing knitting mills,,0.01
+2019,Canada,All employees,Cut and sew clothing manufacturing,,0.09
+2019,Canada,All employees,Clothing accessories and other clothing manufacturing,,0.02
+2019,Canada,All employees,Leather and allied product manufacturing,,0.01
+2019,Canada,All employees,Leather and hide tanning and finishing,,0
+2019,Canada,All employees,Footwear manufacturing,,0.01
+2019,Canada,All employees,Other leather and allied product manufacturing,,0
+2019,Canada,All employees,Paper manufacturing,,0.31
+2019,Canada,All employees,"Pulp, paper and paperboard mills",,0.14
+2019,Canada,All employees,Converted paper product manufacturing,,0.17
+2019,Canada,All employees,Printing and related support activities,,0.29
+2019,Canada,All employees,Petroleum and coal product manufacturing,,0.11
+2019,Canada,All employees,Chemical manufacturing,,0.55
+2019,Canada,All employees,Basic chemical manufacturing,,0.08
+2019,Canada,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.03
+2019,Canada,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
+2019,Canada,All employees,Pharmaceutical and medicine manufacturing,,0.18
+2019,Canada,All employees,"Paint, coating and adhesive manufacturing",,0.05
+2019,Canada,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.1
+2019,Canada,All employees,Other chemical product manufacturing,,0.07
+2019,Canada,All employees,Plastics and rubber products manufacturing,,0.58
+2019,Canada,All employees,Plastic product manufacturing,,0.49
+2019,Canada,All employees,Rubber product manufacturing,,0.09
+2019,Canada,All employees,Durable goods,,5.52
+2019,Canada,All employees,Wood product manufacturing,,0.55
+2019,Canada,All employees,Sawmills and wood preservation,,0.21
+2019,Canada,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.11
+2019,Canada,All employees,Other wood product manufacturing,,0.23
+2019,Canada,All employees,Non-metallic mineral product manufacturing,,0.33
+2019,Canada,All employees,Clay product and refractory manufacturing,,0.01
+2019,Canada,All employees,Glass and glass product manufacturing,,0.05
+2019,Canada,All employees,Cement and concrete product manufacturing,,0.19
+2019,Canada,All employees,Lime and gypsum product manufacturing,,0.01
+2019,Canada,All employees,Other non-metallic mineral product manufacturing,,0.06
+2019,Canada,All employees,Primary metal manufacturing,,0.34
+2019,Canada,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.1
+2019,Canada,All employees,Steel product manufacturing from purchased steel,,0.05
+2019,Canada,All employees,Alumina and aluminum production and processing,,0.06
+2019,Canada,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
+2019,Canada,All employees,Foundries,,0.06
+2019,Canada,All employees,Fabricated metal product manufacturing,,0.96
+2019,Canada,All employees,Forging and stamping,,0.04
+2019,Canada,All employees,Cutlery and hand tool manufacturing,,0.02
+2019,Canada,All employees,Architectural and structural metals manufacturing,,0.37
+2019,Canada,All employees,"Boiler, tank and shipping container manufacturing",,0.07
+2019,Canada,All employees,Hardware manufacturing,,0.04
+2019,Canada,All employees,Spring and wire product manufacturing,,0.03
+2019,Canada,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.2
+2019,Canada,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2019,Canada,All employees,Other fabricated metal product manufacturing,,0.14
+2019,Canada,All employees,Machinery manufacturing,,0.83
+2019,Canada,All employees,"Agricultural, construction and mining machinery manufacturing",,0.19
+2019,Canada,All employees,Industrial machinery manufacturing,,0.11
+2019,Canada,All employees,Commercial and service industry machinery manufacturing,,0.1
+2019,Canada,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.1
+2019,Canada,All employees,Metalworking machinery manufacturing,,0.12
+2019,Canada,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
+2019,Canada,All employees,Other general-purpose machinery manufacturing,,0.19
+2019,Canada,All employees,Computer and electronic product manufacturing,,0.34
+2019,Canada,All employees,Computer and peripheral equipment manufacturing,,0.03
+2019,Canada,All employees,Communications equipment manufacturing,,0.07
+2019,Canada,All employees,Audio and video equipment manufacturing,,0.01
+2019,Canada,All employees,Semiconductor and other electronic component manufacturing,,0.1
+2019,Canada,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.13
+2019,Canada,All employees,Manufacturing and reproducing magnetic and optical media,,0
+2019,Canada,All employees,"Electrical equipment, appliance and component manufacturing",,0.21
+2019,Canada,All employees,Electric lighting equipment manufacturing,,0.03
+2019,Canada,All employees,Household appliance manufacturing,,0.01
+2019,Canada,All employees,Electrical equipment manufacturing,,0.09
+2019,Canada,All employees,Other electrical equipment and component manufacturing,,0.08
+2019,Canada,All employees,Transportation equipment manufacturing,,1.23
+2019,Canada,All employees,Motor vehicle manufacturing,,0.26
+2019,Canada,All employees,Motor vehicle body and trailer manufacturing,,0.09
+2019,Canada,All employees,Motor vehicle parts manufacturing,,0.44
+2019,Canada,All employees,Aerospace product and parts manufacturing,,0.3
+2019,Canada,All employees,Railroad rolling stock manufacturing,,0.03
+2019,Canada,All employees,Ship and boat building,,0.05
+2019,Canada,All employees,Other transportation equipment manufacturing,,0.06
+2019,Canada,All employees,Furniture and related product manufacturing,,0.39
+2019,Canada,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.24
+2019,Canada,All employees,Office furniture (including fixtures) manufacturing,,0.12
+2019,Canada,All employees,Other furniture-related product manufacturing,,0.03
+2019,Canada,All employees,Miscellaneous manufacturing,,0.35
+2019,Canada,All employees,Medical equipment and supplies manufacturing,,0.12
+2019,Canada,All employees,Other miscellaneous manufacturing,,0.23
+2019,Canada,Salaried employees paid a fixed salary,Manufacturing,,2.45
+2019,Canada,Salaried employees paid a fixed salary,Non-durable goods,,1.01
+2019,Canada,Salaried employees paid a fixed salary,Food manufacturing,,0.32
+2019,Canada,Salaried employees paid a fixed salary,Animal food manufacturing,,0.01
+2019,Canada,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2019,Canada,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,0.03
+2019,Canada,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Meat product manufacturing,,0.09
+2019,Canada,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2019,Canada,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.04
+2019,Canada,Salaried employees paid a fixed salary,Other food manufacturing,,0.05
+2019,Canada,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,0.1
+2019,Canada,Salaried employees paid a fixed salary,Beverage manufacturing,,0.08
+2019,Canada,Salaried employees paid a fixed salary,Tobacco manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Textile mills,,0.01
+2019,Canada,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2019,Canada,Salaried employees paid a fixed salary,Fabric mills,,0.01
+2019,Canada,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
+2019,Canada,Salaried employees paid a fixed salary,Textile product mills,,
+2019,Canada,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2019,Canada,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,0
+2019,Canada,Salaried employees paid a fixed salary,Paper manufacturing,,0.07
+2019,Canada,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,0.03
+2019,Canada,Salaried employees paid a fixed salary,Printing and related support activities,,0.06
+2019,Canada,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Chemical manufacturing,,0.25
+2019,Canada,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2019,Canada,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
+2019,Canada,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,0.08
+2019,Canada,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,0.03
+2019,Canada,Salaried employees paid a fixed salary,Other chemical product manufacturing,,0.03
+2019,Canada,Salaried employees paid a fixed salary,Rubber product manufacturing,,0.02
+2019,Canada,Salaried employees paid a fixed salary,Durable goods,,1.44
+2019,Canada,Salaried employees paid a fixed salary,Wood product manufacturing,,0.07
+2019,Canada,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.02
+2019,Canada,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,0.02
+2019,Canada,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.03
+2019,Canada,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.07
+2019,Canada,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,0.04
+2019,Canada,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,0.02
+2019,Canada,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2019,Canada,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2019,Canada,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2019,Canada,Salaried employees paid a fixed salary,Foundries,,0.01
+2019,Canada,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.19
+2019,Canada,Salaried employees paid a fixed salary,Forging and stamping,,
+2019,Canada,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.07
+2019,Canada,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,0.02
+2019,Canada,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
+2019,Canada,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
+2019,Canada,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,0.03
+2019,Canada,Salaried employees paid a fixed salary,Machinery manufacturing,,0.22
+2019,Canada,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,0.05
+2019,Canada,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.02
+2019,Canada,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,0.02
+2019,Canada,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2019,Canada,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,0.05
+2019,Canada,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Canada,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.09
+2019,Canada,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,0.03
+2019,Canada,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.38
+2019,Canada,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,0.11
+2019,Canada,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Ship and boat building,,
+2019,Canada,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.04
+2019,Canada,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.03
+2019,Canada,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2019,Canada,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.11
+2019,Canada,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,0.04
+2019,Canada,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.07
+2019,Canada,Employees paid by the hour,Manufacturing,,6.47
+2019,Canada,Employees paid by the hour,Non-durable goods,,2.61
+2019,Canada,Employees paid by the hour,Food manufacturing,,1.06
+2019,Canada,Employees paid by the hour,Animal food manufacturing,,0.04
+2019,Canada,Employees paid by the hour,Grain and oilseed milling,,0.03
+2019,Canada,Employees paid by the hour,Sugar and confectionery product manufacturing,,
+2019,Canada,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,0.08
+2019,Canada,Employees paid by the hour,Dairy product manufacturing,,
+2019,Canada,Employees paid by the hour,Meat product manufacturing,,0.27
+2019,Canada,Employees paid by the hour,Seafood product preparation and packaging,,
+2019,Canada,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.23
+2019,Canada,Employees paid by the hour,Other food manufacturing,,0.15
+2019,Canada,Employees paid by the hour,Beverage and tobacco product manufacturing,,0.17
+2019,Canada,Employees paid by the hour,Beverage manufacturing,,0.16
+2019,Canada,Employees paid by the hour,Tobacco manufacturing,,
+2019,Canada,Employees paid by the hour,Cannabis product manufacturing,,
+2019,Canada,Employees paid by the hour,Textile mills,,0.03
+2019,Canada,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2019,Canada,Employees paid by the hour,Fabric mills,,0.02
+2019,Canada,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
+2019,Canada,Employees paid by the hour,Textile product mills,,
+2019,Canada,Employees paid by the hour,Clothing manufacturing,,0.08
+2019,Canada,Employees paid by the hour,Cut and sew clothing manufacturing,,
+2019,Canada,Employees paid by the hour,Leather and allied product manufacturing,,0.01
+2019,Canada,Employees paid by the hour,Leather and hide tanning and finishing,,
+2019,Canada,Employees paid by the hour,Footwear manufacturing,,
+2019,Canada,Employees paid by the hour,Other leather and allied product manufacturing,,0
+2019,Canada,Employees paid by the hour,Paper manufacturing,,0.23
+2019,Canada,Employees paid by the hour,"Pulp, paper and paperboard mills",,0.1
+2019,Canada,Employees paid by the hour,Printing and related support activities,,0.21
+2019,Canada,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2019,Canada,Employees paid by the hour,Chemical manufacturing,,0.28
+2019,Canada,Employees paid by the hour,Basic chemical manufacturing,,
+2019,Canada,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2019,Canada,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
+2019,Canada,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,0.09
+2019,Canada,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,0.06
+2019,Canada,Employees paid by the hour,Other chemical product manufacturing,,0.03
+2019,Canada,Employees paid by the hour,Rubber product manufacturing,,0.07
+2019,Canada,Employees paid by the hour,Durable goods,,3.86
+2019,Canada,Employees paid by the hour,Wood product manufacturing,,0.46
+2019,Canada,Employees paid by the hour,Sawmills and wood preservation,,0.18
+2019,Canada,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.09
+2019,Canada,Employees paid by the hour,Other wood product manufacturing,,0.19
+2019,Canada,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.24
+2019,Canada,Employees paid by the hour,Clay product and refractory manufacturing,,
+2019,Canada,Employees paid by the hour,Glass and glass product manufacturing,,
+2019,Canada,Employees paid by the hour,Cement and concrete product manufacturing,,0.14
+2019,Canada,Employees paid by the hour,Lime and gypsum product manufacturing,,
+2019,Canada,Employees paid by the hour,Other non-metallic mineral product manufacturing,,0.04
+2019,Canada,Employees paid by the hour,Primary metal manufacturing,,
+2019,Canada,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2019,Canada,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2019,Canada,Employees paid by the hour,Alumina and aluminum production and processing,,
+2019,Canada,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2019,Canada,Employees paid by the hour,Foundries,,0.04
+2019,Canada,Employees paid by the hour,Fabricated metal product manufacturing,,0.73
+2019,Canada,Employees paid by the hour,Forging and stamping,,
+2019,Canada,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2019,Canada,Employees paid by the hour,Architectural and structural metals manufacturing,,0.28
+2019,Canada,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,0.05
+2019,Canada,Employees paid by the hour,Hardware manufacturing,,
+2019,Canada,Employees paid by the hour,Spring and wire product manufacturing,,
+2019,Canada,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.16
+2019,Canada,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
+2019,Canada,Employees paid by the hour,Other fabricated metal product manufacturing,,0.1
+2019,Canada,Employees paid by the hour,Machinery manufacturing,,0.56
+2019,Canada,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,0.13
+2019,Canada,Employees paid by the hour,Industrial machinery manufacturing,,
+2019,Canada,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2019,Canada,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.07
+2019,Canada,Employees paid by the hour,Metalworking machinery manufacturing,,0.08
+2019,Canada,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2019,Canada,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2019,Canada,Employees paid by the hour,Computer and electronic product manufacturing,,
+2019,Canada,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
+2019,Canada,Employees paid by the hour,Communications equipment manufacturing,,
+2019,Canada,Employees paid by the hour,Audio and video equipment manufacturing,,
+2019,Canada,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,0.04
+2019,Canada,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Canada,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.11
+2019,Canada,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2019,Canada,Employees paid by the hour,Household appliance manufacturing,,
+2019,Canada,Employees paid by the hour,Electrical equipment manufacturing,,
+2019,Canada,Employees paid by the hour,Other electrical equipment and component manufacturing,,0.04
+2019,Canada,Employees paid by the hour,Transportation equipment manufacturing,,0.84
+2019,Canada,Employees paid by the hour,Motor vehicle manufacturing,,
+2019,Canada,Employees paid by the hour,Motor vehicle parts manufacturing,,0.32
+2019,Canada,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2019,Canada,Employees paid by the hour,Ship and boat building,,
+2019,Canada,Employees paid by the hour,Other transportation equipment manufacturing,,
+2019,Canada,Employees paid by the hour,Furniture and related product manufacturing,,0.33
+2019,Canada,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.2
+2019,Canada,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2019,Canada,Employees paid by the hour,Other furniture-related product manufacturing,,
+2019,Canada,Employees paid by the hour,Miscellaneous manufacturing,,0.2
+2019,Canada,Employees paid by the hour,Medical equipment and supplies manufacturing,,0.07
+2019,Canada,Employees paid by the hour,Other miscellaneous manufacturing,,0.13
+2019,Newfoundland and Labrador,All employees,Manufacturing,10,4.52
+2019,Newfoundland and Labrador,All employees,Non-durable goods,,3.38
+2019,Newfoundland and Labrador,All employees,Food manufacturing,,2.49
+2019,Newfoundland and Labrador,All employees,Seafood product preparation and packaging,,2.03
+2019,Newfoundland and Labrador,All employees,Cannabis product manufacturing,,
+2019,Newfoundland and Labrador,All employees,Durable goods,,1.14
+2019,Newfoundland and Labrador,All employees,Sawmills and wood preservation,,
+2019,Newfoundland and Labrador,All employees,Ship and boat building,,
+2019,Newfoundland and Labrador,All employees,Other miscellaneous manufacturing,,0.05
+2019,Newfoundland and Labrador,Salaried employees paid a fixed salary,Manufacturing,,1.03
+2019,Newfoundland and Labrador,Salaried employees paid a fixed salary,Non-durable goods,,
+2019,Newfoundland and Labrador,Salaried employees paid a fixed salary,Food manufacturing,,0.48
+2019,Newfoundland and Labrador,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,Newfoundland and Labrador,Salaried employees paid a fixed salary,Durable goods,,0.22
+2019,Newfoundland and Labrador,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2019,Newfoundland and Labrador,Employees paid by the hour,Manufacturing,,3.25
+2019,Newfoundland and Labrador,Employees paid by the hour,Non-durable goods,,
+2019,Newfoundland and Labrador,Employees paid by the hour,Food manufacturing,,1.88
+2019,Newfoundland and Labrador,Employees paid by the hour,Cannabis product manufacturing,,
+2019,Newfoundland and Labrador,Employees paid by the hour,Durable goods,,0.85
+2019,Newfoundland and Labrador,Employees paid by the hour,Other miscellaneous manufacturing,,
+2019,Prince Edward Island,All employees,Manufacturing,11,7.75
+2019,Prince Edward Island,All employees,Non-durable goods,,5.06
+2019,Prince Edward Island,All employees,Food manufacturing,,3.13
+2019,Prince Edward Island,All employees,Seafood product preparation and packaging,,
+2019,Prince Edward Island,All employees,Cannabis product manufacturing,,
+2019,Prince Edward Island,All employees,Printing and related support activities,,0.37
+2019,Prince Edward Island,All employees,Durable goods,,2.69
+2019,Prince Edward Island,Salaried employees paid a fixed salary,Manufacturing,,2.64
+2019,Prince Edward Island,Salaried employees paid a fixed salary,Food manufacturing,,
+2019,Prince Edward Island,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2019,Prince Edward Island,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,Prince Edward Island,Salaried employees paid a fixed salary,Durable goods,,1.08
+2019,Prince Edward Island,Employees paid by the hour,Manufacturing,,4.65
+2019,Prince Edward Island,Employees paid by the hour,Food manufacturing,,
+2019,Prince Edward Island,Employees paid by the hour,Seafood product preparation and packaging,,
+2019,Prince Edward Island,Employees paid by the hour,Cannabis product manufacturing,,
+2019,Prince Edward Island,Employees paid by the hour,Durable goods,,1.47
+2019,Nova Scotia,All employees,Manufacturing,12,7.5
+2019,Nova Scotia,All employees,Non-durable goods,,4.72
+2019,Nova Scotia,All employees,Food manufacturing,,2.3
+2019,Nova Scotia,All employees,Animal food manufacturing,,0.07
+2019,Nova Scotia,All employees,Dairy product manufacturing,,
+2019,Nova Scotia,All employees,Meat product manufacturing,,0.15
+2019,Nova Scotia,All employees,Seafood product preparation and packaging,,1.31
+2019,Nova Scotia,All employees,Bakeries and tortilla manufacturing,,0.22
+2019,Nova Scotia,All employees,Beverage and tobacco product manufacturing,,0.31
+2019,Nova Scotia,All employees,Cannabis product manufacturing,,
+2019,Nova Scotia,All employees,Fabric mills,,
+2019,Nova Scotia,All employees,Clothing manufacturing,,
+2019,Nova Scotia,All employees,Paper manufacturing,,0.25
+2019,Nova Scotia,All employees,"Pulp, paper and paperboard mills",,
+2019,Nova Scotia,All employees,Printing and related support activities,,0.17
+2019,Nova Scotia,All employees,Plastics and rubber products manufacturing,,1.17
+2019,Nova Scotia,All employees,Durable goods,,2.78
+2019,Nova Scotia,All employees,Wood product manufacturing,,0.37
+2019,Nova Scotia,All employees,Sawmills and wood preservation,,0.2
+2019,Nova Scotia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.05
+2019,Nova Scotia,All employees,Other wood product manufacturing,,0.12
+2019,Nova Scotia,All employees,Non-metallic mineral product manufacturing,,0.19
+2019,Nova Scotia,All employees,Cement and concrete product manufacturing,,0.14
+2019,Nova Scotia,All employees,Other non-metallic mineral product manufacturing,,0.03
+2019,Nova Scotia,All employees,Fabricated metal product manufacturing,,0.46
+2019,Nova Scotia,All employees,Spring and wire product manufacturing,,0.02
+2019,Nova Scotia,All employees,Machinery manufacturing,,0.23
+2019,Nova Scotia,All employees,Commercial and service industry machinery manufacturing,,0.07
+2019,Nova Scotia,All employees,Other general-purpose machinery manufacturing,,0.03
+2019,Nova Scotia,All employees,Transportation equipment manufacturing,,0.99
+2019,Nova Scotia,All employees,Aerospace product and parts manufacturing,,0.36
+2019,Nova Scotia,All employees,Ship and boat building,,0.58
+2019,Nova Scotia,All employees,Miscellaneous manufacturing,,0.13
+2019,Nova Scotia,All employees,Medical equipment and supplies manufacturing,,0.05
+2019,Nova Scotia,All employees,Other miscellaneous manufacturing,,0.08
+2019,Nova Scotia,Salaried employees paid a fixed salary,Manufacturing,,1.79
+2019,Nova Scotia,Salaried employees paid a fixed salary,Non-durable goods,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Food manufacturing,,0.6
+2019,Nova Scotia,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Paper manufacturing,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Printing and related support activities,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.26
+2019,Nova Scotia,Salaried employees paid a fixed salary,Durable goods,,0.61
+2019,Nova Scotia,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2019,Nova Scotia,Salaried employees paid a fixed salary,Ship and boat building,,
+2019,Nova Scotia,Employees paid by the hour,Manufacturing,,5.28
+2019,Nova Scotia,Employees paid by the hour,Non-durable goods,,
+2019,Nova Scotia,Employees paid by the hour,Food manufacturing,,1.51
+2019,Nova Scotia,Employees paid by the hour,Animal food manufacturing,,
+2019,Nova Scotia,Employees paid by the hour,Seafood product preparation and packaging,,
+2019,Nova Scotia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2019,Nova Scotia,Employees paid by the hour,Cannabis product manufacturing,,
+2019,Nova Scotia,Employees paid by the hour,Paper manufacturing,,
+2019,Nova Scotia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2019,Nova Scotia,Employees paid by the hour,Printing and related support activities,,
+2019,Nova Scotia,Employees paid by the hour,Plastics and rubber products manufacturing,,0.88
+2019,Nova Scotia,Employees paid by the hour,Durable goods,,2.03
+2019,Nova Scotia,Employees paid by the hour,Wood product manufacturing,,
+2019,Nova Scotia,Employees paid by the hour,Sawmills and wood preservation,,
+2019,Nova Scotia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2019,Nova Scotia,Employees paid by the hour,Cement and concrete product manufacturing,,
+2019,Nova Scotia,Employees paid by the hour,Fabricated metal product manufacturing,,
+2019,Nova Scotia,Employees paid by the hour,Machinery manufacturing,,
+2019,Nova Scotia,Employees paid by the hour,Transportation equipment manufacturing,,
+2019,Nova Scotia,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2019,Nova Scotia,Employees paid by the hour,Ship and boat building,,
+2019,New Brunswick,All employees,Manufacturing,13,9.71
+2019,New Brunswick,All employees,Non-durable goods,,5.54
+2019,New Brunswick,All employees,Food manufacturing,,3.44
+2019,New Brunswick,All employees,Seafood product preparation and packaging,,1.43
+2019,New Brunswick,All employees,Beverage and tobacco product manufacturing,,0.35
+2019,New Brunswick,All employees,Cannabis product manufacturing,,
+2019,New Brunswick,All employees,"Fibre, yarn and thread mills",,
+2019,New Brunswick,All employees,Paper manufacturing,,0.84
+2019,New Brunswick,All employees,"Pulp, paper and paperboard mills",,0.53
+2019,New Brunswick,All employees,Converted paper product manufacturing,,0.31
+2019,New Brunswick,All employees,Printing and related support activities,,0.08
+2019,New Brunswick,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.1
+2019,New Brunswick,All employees,Durable goods,,4.17
+2019,New Brunswick,All employees,Wood product manufacturing,,1.55
+2019,New Brunswick,All employees,Sawmills and wood preservation,,0.83
+2019,New Brunswick,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.22
+2019,New Brunswick,All employees,Other wood product manufacturing,,0.5
+2019,New Brunswick,All employees,Non-metallic mineral product manufacturing,,0.28
+2019,New Brunswick,All employees,Other non-metallic mineral product manufacturing,,0.1
+2019,New Brunswick,All employees,Fabricated metal product manufacturing,,0.81
+2019,New Brunswick,All employees,Architectural and structural metals manufacturing,,0.46
+2019,New Brunswick,All employees,Machinery manufacturing,,0.38
+2019,New Brunswick,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.13
+2019,New Brunswick,All employees,Other general-purpose machinery manufacturing,,0.09
+2019,New Brunswick,All employees,Computer and electronic product manufacturing,,
+2019,New Brunswick,All employees,Furniture and related product manufacturing,,0.23
+2019,New Brunswick,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.22
+2019,New Brunswick,All employees,Miscellaneous manufacturing,,0.31
+2019,New Brunswick,All employees,Medical equipment and supplies manufacturing,,0.04
+2019,New Brunswick,All employees,Other miscellaneous manufacturing,,0.28
+2019,New Brunswick,Salaried employees paid a fixed salary,Manufacturing,,2.1
+2019,New Brunswick,Salaried employees paid a fixed salary,Non-durable goods,,1.27
+2019,New Brunswick,Salaried employees paid a fixed salary,Food manufacturing,,0.74
+2019,New Brunswick,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,New Brunswick,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2019,New Brunswick,Salaried employees paid a fixed salary,Paper manufacturing,,
+2019,New Brunswick,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2019,New Brunswick,Salaried employees paid a fixed salary,Durable goods,,0.82
+2019,New Brunswick,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2019,New Brunswick,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2019,New Brunswick,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2019,New Brunswick,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2019,New Brunswick,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.18
+2019,New Brunswick,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2019,New Brunswick,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2019,New Brunswick,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2019,New Brunswick,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2019,New Brunswick,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2019,New Brunswick,Employees paid by the hour,Manufacturing,,7.27
+2019,New Brunswick,Employees paid by the hour,Non-durable goods,,4.09
+2019,New Brunswick,Employees paid by the hour,Food manufacturing,,2.58
+2019,New Brunswick,Employees paid by the hour,Cannabis product manufacturing,,
+2019,New Brunswick,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2019,New Brunswick,Employees paid by the hour,Paper manufacturing,,
+2019,New Brunswick,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2019,New Brunswick,Employees paid by the hour,Durable goods,,3.19
+2019,New Brunswick,Employees paid by the hour,Wood product manufacturing,,
+2019,New Brunswick,Employees paid by the hour,Sawmills and wood preservation,,
+2019,New Brunswick,Employees paid by the hour,Other wood product manufacturing,,
+2019,New Brunswick,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2019,New Brunswick,Employees paid by the hour,Fabricated metal product manufacturing,,0.58
+2019,New Brunswick,Employees paid by the hour,Machinery manufacturing,,
+2019,New Brunswick,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2019,New Brunswick,Employees paid by the hour,Computer and electronic product manufacturing,,
+2019,New Brunswick,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2019,New Brunswick,Employees paid by the hour,Other miscellaneous manufacturing,,
+2019,Quebec,All employees,Manufacturing,24,11.8
+2019,Quebec,All employees,Non-durable goods,,4.82
+2019,Quebec,All employees,Food manufacturing,,1.74
+2019,Quebec,All employees,Animal food manufacturing,,0.07
+2019,Quebec,All employees,Grain and oilseed milling,,0.04
+2019,Quebec,All employees,Sugar and confectionery product manufacturing,,0.1
+2019,Quebec,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.13
+2019,Quebec,All employees,Dairy product manufacturing,,0.27
+2019,Quebec,All employees,Meat product manufacturing,,0.49
+2019,Quebec,All employees,Seafood product preparation and packaging,,0.04
+2019,Quebec,All employees,Bakeries and tortilla manufacturing,,0.31
+2019,Quebec,All employees,Other food manufacturing,,0.29
+2019,Quebec,All employees,Beverage and tobacco product manufacturing,,0.25
+2019,Quebec,All employees,Cannabis product manufacturing,,
+2019,Quebec,All employees,Textile mills,,0.08
+2019,Quebec,All employees,"Fibre, yarn and thread mills",,0.01
+2019,Quebec,All employees,Fabric mills,,0.06
+2019,Quebec,All employees,Textile and fabric finishing and fabric coating,,0.01
+2019,Quebec,All employees,Textile product mills,,0.08
+2019,Quebec,All employees,Textile furnishings mills,,0.03
+2019,Quebec,All employees,Other textile product mills,,0.05
+2019,Quebec,All employees,Clothing manufacturing,,0.27
+2019,Quebec,All employees,Clothing knitting mills,,0.02
+2019,Quebec,All employees,Cut and sew clothing manufacturing,,0.22
+2019,Quebec,All employees,Clothing accessories and other clothing manufacturing,,0.02
+2019,Quebec,All employees,Leather and allied product manufacturing,,0.03
+2019,Quebec,All employees,Leather and hide tanning and finishing,,0
+2019,Quebec,All employees,Footwear manufacturing,,0.03
+2019,Quebec,All employees,Other leather and allied product manufacturing,,0.01
+2019,Quebec,All employees,Paper manufacturing,,0.54
+2019,Quebec,All employees,"Pulp, paper and paperboard mills",,0.24
+2019,Quebec,All employees,Converted paper product manufacturing,,0.3
+2019,Quebec,All employees,Printing and related support activities,,0.33
+2019,Quebec,All employees,Petroleum and coal product manufacturing,,0.11
+2019,Quebec,All employees,Chemical manufacturing,,0.67
+2019,Quebec,All employees,Basic chemical manufacturing,,0.08
+2019,Quebec,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.02
+2019,Quebec,All employees,Pharmaceutical and medicine manufacturing,,0.24
+2019,Quebec,All employees,"Paint, coating and adhesive manufacturing",,0.07
+2019,Quebec,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.12
+2019,Quebec,All employees,Other chemical product manufacturing,,0.09
+2019,Quebec,All employees,Plastics and rubber products manufacturing,,0.74
+2019,Quebec,All employees,Plastic product manufacturing,,0.62
+2019,Quebec,All employees,Rubber product manufacturing,,0.12
+2019,Quebec,All employees,Durable goods,,6.97
+2019,Quebec,All employees,Wood product manufacturing,,0.78
+2019,Quebec,All employees,Sawmills and wood preservation,,0.25
+2019,Quebec,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.15
+2019,Quebec,All employees,Other wood product manufacturing,,0.38
+2019,Quebec,All employees,Non-metallic mineral product manufacturing,,0.39
+2019,Quebec,All employees,Clay product and refractory manufacturing,,0.01
+2019,Quebec,All employees,Glass and glass product manufacturing,,0.07
+2019,Quebec,All employees,Cement and concrete product manufacturing,,0.21
+2019,Quebec,All employees,Lime and gypsum product manufacturing,,0.02
+2019,Quebec,All employees,Other non-metallic mineral product manufacturing,,0.07
+2019,Quebec,All employees,Primary metal manufacturing,,0.43
+2019,Quebec,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.04
+2019,Quebec,All employees,Steel product manufacturing from purchased steel,,0.03
+2019,Quebec,All employees,Alumina and aluminum production and processing,,0.15
+2019,Quebec,All employees,Non-ferrous metal (except aluminum) production and processing,,0.1
+2019,Quebec,All employees,Foundries,,0.1
+2019,Quebec,All employees,Fabricated metal product manufacturing,,1.23
+2019,Quebec,All employees,Forging and stamping,,0.06
+2019,Quebec,All employees,Cutlery and hand tool manufacturing,,0.02
+2019,Quebec,All employees,Architectural and structural metals manufacturing,,0.5
+2019,Quebec,All employees,"Boiler, tank and shipping container manufacturing",,0.06
+2019,Quebec,All employees,Hardware manufacturing,,0.03
+2019,Quebec,All employees,Spring and wire product manufacturing,,0.03
+2019,Quebec,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.26
+2019,Quebec,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.08
+2019,Quebec,All employees,Other fabricated metal product manufacturing,,0.19
+2019,Quebec,All employees,Machinery manufacturing,,0.96
+2019,Quebec,All employees,"Agricultural, construction and mining machinery manufacturing",,0.13
+2019,Quebec,All employees,Industrial machinery manufacturing,,0.17
+2019,Quebec,All employees,Commercial and service industry machinery manufacturing,,0.2
+2019,Quebec,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.16
+2019,Quebec,All employees,Metalworking machinery manufacturing,,0.05
+2019,Quebec,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.05
+2019,Quebec,All employees,Other general-purpose machinery manufacturing,,0.19
+2019,Quebec,All employees,Computer and electronic product manufacturing,,0.41
+2019,Quebec,All employees,Communications equipment manufacturing,,0.07
+2019,Quebec,All employees,Audio and video equipment manufacturing,,0.01
+2019,Quebec,All employees,Semiconductor and other electronic component manufacturing,,0.14
+2019,Quebec,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.18
+2019,Quebec,All employees,Manufacturing and reproducing magnetic and optical media,,0
+2019,Quebec,All employees,"Electrical equipment, appliance and component manufacturing",,0.31
+2019,Quebec,All employees,Electric lighting equipment manufacturing,,0.08
+2019,Quebec,All employees,Household appliance manufacturing,,0.02
+2019,Quebec,All employees,Electrical equipment manufacturing,,0.11
+2019,Quebec,All employees,Other electrical equipment and component manufacturing,,0.1
+2019,Quebec,All employees,Transportation equipment manufacturing,,1.4
+2019,Quebec,All employees,Motor vehicle body and trailer manufacturing,,0.14
+2019,Quebec,All employees,Motor vehicle parts manufacturing,,0.14
+2019,Quebec,All employees,Aerospace product and parts manufacturing,,0.76
+2019,Quebec,All employees,Other transportation equipment manufacturing,,0.17
+2019,Quebec,All employees,Furniture and related product manufacturing,,0.62
+2019,Quebec,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.43
+2019,Quebec,All employees,Office furniture (including fixtures) manufacturing,,0.15
+2019,Quebec,All employees,Other furniture-related product manufacturing,,0.04
+2019,Quebec,All employees,Miscellaneous manufacturing,,0.45
+2019,Quebec,All employees,Medical equipment and supplies manufacturing,,0.14
+2019,Quebec,All employees,Other miscellaneous manufacturing,,0.31
+2019,Quebec,Salaried employees paid a fixed salary,Manufacturing,,3.05
+2019,Quebec,Salaried employees paid a fixed salary,Non-durable goods,,1.09
+2019,Quebec,Salaried employees paid a fixed salary,Food manufacturing,,0.32
+2019,Quebec,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2019,Quebec,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Other food manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Textile mills,,0.02
+2019,Quebec,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2019,Quebec,Salaried employees paid a fixed salary,Fabric mills,,0.01
+2019,Quebec,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
+2019,Quebec,Salaried employees paid a fixed salary,Textile product mills,,
+2019,Quebec,Salaried employees paid a fixed salary,Textile furnishings mills,,
+2019,Quebec,Salaried employees paid a fixed salary,Other textile product mills,,
+2019,Quebec,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Clothing knitting mills,,
+2019,Quebec,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Clothing accessories and other clothing manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2019,Quebec,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Paper manufacturing,,0.11
+2019,Quebec,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2019,Quebec,Salaried employees paid a fixed salary,Printing and related support activities,,0.06
+2019,Quebec,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Chemical manufacturing,,0.26
+2019,Quebec,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2019,Quebec,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
+2019,Quebec,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2019,Quebec,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.13
+2019,Quebec,Salaried employees paid a fixed salary,Plastic product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Durable goods,,1.97
+2019,Quebec,Salaried employees paid a fixed salary,Wood product manufacturing,,0.1
+2019,Quebec,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2019,Quebec,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2019,Quebec,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.08
+2019,Quebec,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2019,Quebec,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2019,Quebec,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2019,Quebec,Salaried employees paid a fixed salary,Foundries,,
+2019,Quebec,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.2
+2019,Quebec,Salaried employees paid a fixed salary,Forging and stamping,,
+2019,Quebec,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2019,Quebec,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Machinery manufacturing,,0.31
+2019,Quebec,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2019,Quebec,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2019,Quebec,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2019,Quebec,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Quebec,Salaried employees paid a fixed salary,Manufacturing and reproducing magnetic and optical media,,
+2019,Quebec,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2019,Quebec,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.66
+2019,Quebec,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,0.5
+2019,Quebec,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.06
+2019,Quebec,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.04
+2019,Quebec,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.13
+2019,Quebec,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2019,Quebec,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2019,Quebec,Employees paid by the hour,Manufacturing,,8.26
+2019,Quebec,Employees paid by the hour,Non-durable goods,,3.55
+2019,Quebec,Employees paid by the hour,Food manufacturing,,1.35
+2019,Quebec,Employees paid by the hour,Animal food manufacturing,,
+2019,Quebec,Employees paid by the hour,Grain and oilseed milling,,
+2019,Quebec,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2019,Quebec,Employees paid by the hour,Dairy product manufacturing,,
+2019,Quebec,Employees paid by the hour,Meat product manufacturing,,
+2019,Quebec,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2019,Quebec,Employees paid by the hour,Other food manufacturing,,
+2019,Quebec,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2019,Quebec,Employees paid by the hour,Cannabis product manufacturing,,
+2019,Quebec,Employees paid by the hour,Textile mills,,0.06
+2019,Quebec,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2019,Quebec,Employees paid by the hour,Fabric mills,,0.04
+2019,Quebec,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
+2019,Quebec,Employees paid by the hour,Textile product mills,,
+2019,Quebec,Employees paid by the hour,Textile furnishings mills,,
+2019,Quebec,Employees paid by the hour,Other textile product mills,,
+2019,Quebec,Employees paid by the hour,Clothing manufacturing,,
+2019,Quebec,Employees paid by the hour,Clothing knitting mills,,
+2019,Quebec,Employees paid by the hour,Cut and sew clothing manufacturing,,
+2019,Quebec,Employees paid by the hour,Clothing accessories and other clothing manufacturing,,
+2019,Quebec,Employees paid by the hour,Leather and hide tanning and finishing,,
+2019,Quebec,Employees paid by the hour,Footwear manufacturing,,
+2019,Quebec,Employees paid by the hour,Other leather and allied product manufacturing,,
+2019,Quebec,Employees paid by the hour,Paper manufacturing,,0.42
+2019,Quebec,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2019,Quebec,Employees paid by the hour,Printing and related support activities,,0.23
+2019,Quebec,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2019,Quebec,Employees paid by the hour,Chemical manufacturing,,0.38
+2019,Quebec,Employees paid by the hour,Basic chemical manufacturing,,
+2019,Quebec,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2019,Quebec,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2019,Quebec,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
+2019,Quebec,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2019,Quebec,Employees paid by the hour,Other chemical product manufacturing,,
+2019,Quebec,Employees paid by the hour,Plastics and rubber products manufacturing,,0.59
+2019,Quebec,Employees paid by the hour,Plastic product manufacturing,,
+2019,Quebec,Employees paid by the hour,Rubber product manufacturing,,
+2019,Quebec,Employees paid by the hour,Durable goods,,4.71
+2019,Quebec,Employees paid by the hour,Wood product manufacturing,,0.65
+2019,Quebec,Employees paid by the hour,Sawmills and wood preservation,,
+2019,Quebec,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.11
+2019,Quebec,Employees paid by the hour,Other wood product manufacturing,,0.33
+2019,Quebec,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.3
+2019,Quebec,Employees paid by the hour,Clay product and refractory manufacturing,,
+2019,Quebec,Employees paid by the hour,Glass and glass product manufacturing,,
+2019,Quebec,Employees paid by the hour,Cement and concrete product manufacturing,,
+2019,Quebec,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2019,Quebec,Employees paid by the hour,Primary metal manufacturing,,
+2019,Quebec,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2019,Quebec,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2019,Quebec,Employees paid by the hour,Alumina and aluminum production and processing,,
+2019,Quebec,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2019,Quebec,Employees paid by the hour,Foundries,,
+2019,Quebec,Employees paid by the hour,Fabricated metal product manufacturing,,0.98
+2019,Quebec,Employees paid by the hour,Forging and stamping,,
+2019,Quebec,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2019,Quebec,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2019,Quebec,Employees paid by the hour,Hardware manufacturing,,
+2019,Quebec,Employees paid by the hour,Spring and wire product manufacturing,,
+2019,Quebec,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2019,Quebec,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2019,Quebec,Employees paid by the hour,Machinery manufacturing,,0.59
+2019,Quebec,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2019,Quebec,Employees paid by the hour,Industrial machinery manufacturing,,
+2019,Quebec,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2019,Quebec,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2019,Quebec,Employees paid by the hour,Metalworking machinery manufacturing,,
+2019,Quebec,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2019,Quebec,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2019,Quebec,Employees paid by the hour,Communications equipment manufacturing,,
+2019,Quebec,Employees paid by the hour,Audio and video equipment manufacturing,,
+2019,Quebec,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2019,Quebec,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Quebec,Employees paid by the hour,Manufacturing and reproducing magnetic and optical media,,
+2019,Quebec,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2019,Quebec,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2019,Quebec,Employees paid by the hour,Household appliance manufacturing,,
+2019,Quebec,Employees paid by the hour,Electrical equipment manufacturing,,
+2019,Quebec,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2019,Quebec,Employees paid by the hour,Transportation equipment manufacturing,,0.72
+2019,Quebec,Employees paid by the hour,Aerospace product and parts manufacturing,,0.25
+2019,Quebec,Employees paid by the hour,Other transportation equipment manufacturing,,
+2019,Quebec,Employees paid by the hour,Furniture and related product manufacturing,,0.53
+2019,Quebec,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.36
+2019,Quebec,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2019,Quebec,Employees paid by the hour,Miscellaneous manufacturing,,0.28
+2019,Quebec,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2019,Quebec,Employees paid by the hour,Other miscellaneous manufacturing,,
+2019,Ontario,All employees,Manufacturing,35,10.47
+2019,Ontario,All employees,Non-durable goods,,3.93
+2019,Ontario,All employees,Food manufacturing,,1.31
+2019,Ontario,All employees,Animal food manufacturing,,0.06
+2019,Ontario,All employees,Grain and oilseed milling,,0.05
+2019,Ontario,All employees,Sugar and confectionery product manufacturing,,0.06
+2019,Ontario,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.09
+2019,Ontario,All employees,Dairy product manufacturing,,0.15
+2019,Ontario,All employees,Meat product manufacturing,,0.32
+2019,Ontario,All employees,Seafood product preparation and packaging,,0.01
+2019,Ontario,All employees,Bakeries and tortilla manufacturing,,0.36
+2019,Ontario,All employees,Other food manufacturing,,0.21
+2019,Ontario,All employees,Beverage and tobacco product manufacturing,,0.31
+2019,Ontario,All employees,Cannabis product manufacturing,,
+2019,Ontario,All employees,Textile mills,,0.04
+2019,Ontario,All employees,"Fibre, yarn and thread mills",,0
+2019,Ontario,All employees,Fabric mills,,0.02
+2019,Ontario,All employees,Textile and fabric finishing and fabric coating,,0.02
+2019,Ontario,All employees,Textile product mills,,0.06
+2019,Ontario,All employees,Textile furnishings mills,,0.02
+2019,Ontario,All employees,Other textile product mills,,0.04
+2019,Ontario,All employees,Clothing manufacturing,,0.08
+2019,Ontario,All employees,Clothing knitting mills,,
+2019,Ontario,All employees,Cut and sew clothing manufacturing,,0.06
+2019,Ontario,All employees,Clothing accessories and other clothing manufacturing,,
+2019,Ontario,All employees,Leather and allied product manufacturing,,0.01
+2019,Ontario,All employees,Leather and hide tanning and finishing,,0
+2019,Ontario,All employees,Footwear manufacturing,,0
+2019,Ontario,All employees,Other leather and allied product manufacturing,,0.01
+2019,Ontario,All employees,Paper manufacturing,,0.25
+2019,Ontario,All employees,"Pulp, paper and paperboard mills",,0.06
+2019,Ontario,All employees,Converted paper product manufacturing,,0.2
+2019,Ontario,All employees,Printing and related support activities,,0.35
+2019,Ontario,All employees,Petroleum and coal product manufacturing,,0.1
+2019,Ontario,All employees,Chemical manufacturing,,0.67
+2019,Ontario,All employees,Basic chemical manufacturing,,0.09
+2019,Ontario,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.04
+2019,Ontario,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
+2019,Ontario,All employees,Pharmaceutical and medicine manufacturing,,0.24
+2019,Ontario,All employees,"Paint, coating and adhesive manufacturing",,0.06
+2019,Ontario,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.15
+2019,Ontario,All employees,Other chemical product manufacturing,,0.08
+2019,Ontario,All employees,Plastics and rubber products manufacturing,,0.74
+2019,Ontario,All employees,Plastic product manufacturing,,0.65
+2019,Ontario,All employees,Rubber product manufacturing,,0.08
+2019,Ontario,All employees,Durable goods,,6.54
+2019,Ontario,All employees,Wood product manufacturing,,0.26
+2019,Ontario,All employees,Sawmills and wood preservation,,0.05
+2019,Ontario,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.05
+2019,Ontario,All employees,Other wood product manufacturing,,0.15
+2019,Ontario,All employees,Non-metallic mineral product manufacturing,,0.33
+2019,Ontario,All employees,Clay product and refractory manufacturing,,0.02
+2019,Ontario,All employees,Glass and glass product manufacturing,,0.04
+2019,Ontario,All employees,Cement and concrete product manufacturing,,0.19
+2019,Ontario,All employees,Lime and gypsum product manufacturing,,0.01
+2019,Ontario,All employees,Other non-metallic mineral product manufacturing,,0.06
+2019,Ontario,All employees,Primary metal manufacturing,,0.44
+2019,Ontario,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.2
+2019,Ontario,All employees,Steel product manufacturing from purchased steel,,0.07
+2019,Ontario,All employees,Alumina and aluminum production and processing,,0.04
+2019,Ontario,All employees,Non-ferrous metal (except aluminum) production and processing,,0.06
+2019,Ontario,All employees,Foundries,,0.06
+2019,Ontario,All employees,Fabricated metal product manufacturing,,1.06
+2019,Ontario,All employees,Forging and stamping,,0.05
+2019,Ontario,All employees,Cutlery and hand tool manufacturing,,0.03
+2019,Ontario,All employees,Architectural and structural metals manufacturing,,0.34
+2019,Ontario,All employees,"Boiler, tank and shipping container manufacturing",,0.06
+2019,Ontario,All employees,Hardware manufacturing,,0.07
+2019,Ontario,All employees,Spring and wire product manufacturing,,0.03
+2019,Ontario,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.23
+2019,Ontario,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.09
+2019,Ontario,All employees,Other fabricated metal product manufacturing,,0.16
+2019,Ontario,All employees,Machinery manufacturing,,0.97
+2019,Ontario,All employees,"Agricultural, construction and mining machinery manufacturing",,0.14
+2019,Ontario,All employees,Industrial machinery manufacturing,,0.12
+2019,Ontario,All employees,Commercial and service industry machinery manufacturing,,0.11
+2019,Ontario,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.09
+2019,Ontario,All employees,Metalworking machinery manufacturing,,0.24
+2019,Ontario,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.02
+2019,Ontario,All employees,Other general-purpose machinery manufacturing,,0.25
+2019,Ontario,All employees,Computer and electronic product manufacturing,,0.45
+2019,Ontario,All employees,Computer and peripheral equipment manufacturing,,0.06
+2019,Ontario,All employees,Communications equipment manufacturing,,0.1
+2019,Ontario,All employees,Audio and video equipment manufacturing,,0.01
+2019,Ontario,All employees,Semiconductor and other electronic component manufacturing,,0.12
+2019,Ontario,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.15
+2019,Ontario,All employees,"Electrical equipment, appliance and component manufacturing",,0.26
+2019,Ontario,All employees,Electric lighting equipment manufacturing,,0.03
+2019,Ontario,All employees,Household appliance manufacturing,,0.02
+2019,Ontario,All employees,Electrical equipment manufacturing,,0.11
+2019,Ontario,All employees,Other electrical equipment and component manufacturing,,0.1
+2019,Ontario,All employees,Transportation equipment manufacturing,,1.97
+2019,Ontario,All employees,Motor vehicle manufacturing,,0.57
+2019,Ontario,All employees,Motor vehicle body and trailer manufacturing,,0.07
+2019,Ontario,All employees,Motor vehicle parts manufacturing,,1
+2019,Ontario,All employees,Aerospace product and parts manufacturing,,0.21
+2019,Ontario,All employees,Railroad rolling stock manufacturing,,0.05
+2019,Ontario,All employees,Furniture and related product manufacturing,,0.43
+2019,Ontario,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.2
+2019,Ontario,All employees,Office furniture (including fixtures) manufacturing,,0.2
+2019,Ontario,All employees,Other furniture-related product manufacturing,,0.03
+2019,Ontario,All employees,Miscellaneous manufacturing,,0.39
+2019,Ontario,All employees,Medical equipment and supplies manufacturing,,0.15
+2019,Ontario,All employees,Other miscellaneous manufacturing,,0.24
+2019,Ontario,Salaried employees paid a fixed salary,Manufacturing,,2.9
+2019,Ontario,Salaried employees paid a fixed salary,Non-durable goods,,1.19
+2019,Ontario,Salaried employees paid a fixed salary,Food manufacturing,,0.36
+2019,Ontario,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2019,Ontario,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.08
+2019,Ontario,Salaried employees paid a fixed salary,Other food manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Textile mills,,0.01
+2019,Ontario,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2019,Ontario,Salaried employees paid a fixed salary,Fabric mills,,0.01
+2019,Ontario,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
+2019,Ontario,Salaried employees paid a fixed salary,Textile furnishings mills,,
+2019,Ontario,Salaried employees paid a fixed salary,Other textile product mills,,
+2019,Ontario,Salaried employees paid a fixed salary,Clothing manufacturing,,0.02
+2019,Ontario,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2019,Ontario,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Paper manufacturing,,0.07
+2019,Ontario,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2019,Ontario,Salaried employees paid a fixed salary,Printing and related support activities,,0.08
+2019,Ontario,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Chemical manufacturing,,0.32
+2019,Ontario,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2019,Ontario,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2019,Ontario,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
+2019,Ontario,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2019,Ontario,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.14
+2019,Ontario,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.12
+2019,Ontario,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Durable goods,,1.71
+2019,Ontario,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2019,Ontario,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2019,Ontario,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.02
+2019,Ontario,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.08
+2019,Ontario,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2019,Ontario,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2019,Ontario,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2019,Ontario,Salaried employees paid a fixed salary,Foundries,,
+2019,Ontario,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.23
+2019,Ontario,Salaried employees paid a fixed salary,Forging and stamping,,
+2019,Ontario,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2019,Ontario,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
+2019,Ontario,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
+2019,Ontario,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Machinery manufacturing,,0.22
+2019,Ontario,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2019,Ontario,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2019,Ontario,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2019,Ontario,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Ontario,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2019,Ontario,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,0.25
+2019,Ontario,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Railroad rolling stock manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.14
+2019,Ontario,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2019,Ontario,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2019,Ontario,Employees paid by the hour,Manufacturing,,7.15
+2019,Ontario,Employees paid by the hour,Non-durable goods,,2.57
+2019,Ontario,Employees paid by the hour,Food manufacturing,,0.88
+2019,Ontario,Employees paid by the hour,Animal food manufacturing,,
+2019,Ontario,Employees paid by the hour,Grain and oilseed milling,,
+2019,Ontario,Employees paid by the hour,Sugar and confectionery product manufacturing,,
+2019,Ontario,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2019,Ontario,Employees paid by the hour,Dairy product manufacturing,,
+2019,Ontario,Employees paid by the hour,Meat product manufacturing,,
+2019,Ontario,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.27
+2019,Ontario,Employees paid by the hour,Other food manufacturing,,
+2019,Ontario,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2019,Ontario,Employees paid by the hour,Cannabis product manufacturing,,
+2019,Ontario,Employees paid by the hour,Textile mills,,0.03
+2019,Ontario,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2019,Ontario,Employees paid by the hour,Fabric mills,,0.02
+2019,Ontario,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
+2019,Ontario,Employees paid by the hour,Textile furnishings mills,,
+2019,Ontario,Employees paid by the hour,Other textile product mills,,
+2019,Ontario,Employees paid by the hour,Clothing manufacturing,,0.05
+2019,Ontario,Employees paid by the hour,Leather and allied product manufacturing,,
+2019,Ontario,Employees paid by the hour,Leather and hide tanning and finishing,,
+2019,Ontario,Employees paid by the hour,Footwear manufacturing,,
+2019,Ontario,Employees paid by the hour,Other leather and allied product manufacturing,,
+2019,Ontario,Employees paid by the hour,Paper manufacturing,,0.18
+2019,Ontario,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2019,Ontario,Employees paid by the hour,Printing and related support activities,,0.25
+2019,Ontario,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2019,Ontario,Employees paid by the hour,Chemical manufacturing,,0.33
+2019,Ontario,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2019,Ontario,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2019,Ontario,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
+2019,Ontario,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2019,Ontario,Employees paid by the hour,Other chemical product manufacturing,,
+2019,Ontario,Employees paid by the hour,Plastics and rubber products manufacturing,,0.57
+2019,Ontario,Employees paid by the hour,Plastic product manufacturing,,0.51
+2019,Ontario,Employees paid by the hour,Rubber product manufacturing,,
+2019,Ontario,Employees paid by the hour,Durable goods,,4.58
+2019,Ontario,Employees paid by the hour,Wood product manufacturing,,
+2019,Ontario,Employees paid by the hour,Sawmills and wood preservation,,
+2019,Ontario,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2019,Ontario,Employees paid by the hour,Other wood product manufacturing,,0.12
+2019,Ontario,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.24
+2019,Ontario,Employees paid by the hour,Clay product and refractory manufacturing,,
+2019,Ontario,Employees paid by the hour,Glass and glass product manufacturing,,
+2019,Ontario,Employees paid by the hour,Cement and concrete product manufacturing,,
+2019,Ontario,Employees paid by the hour,Lime and gypsum product manufacturing,,
+2019,Ontario,Employees paid by the hour,Primary metal manufacturing,,
+2019,Ontario,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2019,Ontario,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2019,Ontario,Employees paid by the hour,Alumina and aluminum production and processing,,
+2019,Ontario,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2019,Ontario,Employees paid by the hour,Foundries,,
+2019,Ontario,Employees paid by the hour,Fabricated metal product manufacturing,,0.78
+2019,Ontario,Employees paid by the hour,Forging and stamping,,
+2019,Ontario,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2019,Ontario,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2019,Ontario,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2019,Ontario,Employees paid by the hour,Hardware manufacturing,,
+2019,Ontario,Employees paid by the hour,Spring and wire product manufacturing,,
+2019,Ontario,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.17
+2019,Ontario,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
+2019,Ontario,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2019,Ontario,Employees paid by the hour,Machinery manufacturing,,0.68
+2019,Ontario,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2019,Ontario,Employees paid by the hour,Industrial machinery manufacturing,,
+2019,Ontario,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2019,Ontario,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2019,Ontario,Employees paid by the hour,Metalworking machinery manufacturing,,
+2019,Ontario,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2019,Ontario,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2019,Ontario,Employees paid by the hour,Computer and electronic product manufacturing,,
+2019,Ontario,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
+2019,Ontario,Employees paid by the hour,Communications equipment manufacturing,,
+2019,Ontario,Employees paid by the hour,Audio and video equipment manufacturing,,
+2019,Ontario,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2019,Ontario,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Ontario,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2019,Ontario,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2019,Ontario,Employees paid by the hour,Household appliance manufacturing,,
+2019,Ontario,Employees paid by the hour,Electrical equipment manufacturing,,
+2019,Ontario,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2019,Ontario,Employees paid by the hour,Transportation equipment manufacturing,,
+2019,Ontario,Employees paid by the hour,Motor vehicle manufacturing,,
+2019,Ontario,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2019,Ontario,Employees paid by the hour,Motor vehicle parts manufacturing,,0.74
+2019,Ontario,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2019,Ontario,Employees paid by the hour,Railroad rolling stock manufacturing,,
+2019,Ontario,Employees paid by the hour,Furniture and related product manufacturing,,0.36
+2019,Ontario,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.17
+2019,Ontario,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2019,Ontario,Employees paid by the hour,Miscellaneous manufacturing,,0.22
+2019,Ontario,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2019,Ontario,Employees paid by the hour,Other miscellaneous manufacturing,,
+2019,Manitoba,All employees,Manufacturing,46,9.3
+2019,Manitoba,All employees,Non-durable goods,,4.04
+2019,Manitoba,All employees,Food manufacturing,,1.76
+2019,Manitoba,All employees,Animal food manufacturing,,0.07
+2019,Manitoba,All employees,Meat product manufacturing,,0.86
+2019,Manitoba,All employees,Bakeries and tortilla manufacturing,,0.23
+2019,Manitoba,All employees,Beverage and tobacco product manufacturing,,0.18
+2019,Manitoba,All employees,Cannabis product manufacturing,,
+2019,Manitoba,All employees,Textile and fabric finishing and fabric coating,,
+2019,Manitoba,All employees,Other textile product mills,,
+2019,Manitoba,All employees,Cut and sew clothing manufacturing,,0.25
+2019,Manitoba,All employees,Leather and hide tanning and finishing,,
+2019,Manitoba,All employees,Paper manufacturing,,0.22
+2019,Manitoba,All employees,"Pulp, paper and paperboard mills",,
+2019,Manitoba,All employees,Printing and related support activities,,0.49
+2019,Manitoba,All employees,Chemical manufacturing,,0.5
+2019,Manitoba,All employees,Basic chemical manufacturing,,0.06
+2019,Manitoba,All employees,Durable goods,,5.26
+2019,Manitoba,All employees,Wood product manufacturing,,0.33
+2019,Manitoba,All employees,Sawmills and wood preservation,,0.06
+2019,Manitoba,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.06
+2019,Manitoba,All employees,Other wood product manufacturing,,0.2
+2019,Manitoba,All employees,Non-metallic mineral product manufacturing,,0.25
+2019,Manitoba,All employees,Cement and concrete product manufacturing,,0.17
+2019,Manitoba,All employees,Other non-metallic mineral product manufacturing,,0.05
+2019,Manitoba,All employees,Primary metal manufacturing,,0.53
+2019,Manitoba,All employees,Foundries,,0.13
+2019,Manitoba,All employees,Fabricated metal product manufacturing,,0.74
+2019,Manitoba,All employees,Architectural and structural metals manufacturing,,0.29
+2019,Manitoba,All employees,"Boiler, tank and shipping container manufacturing",,0.11
+2019,Manitoba,All employees,Spring and wire product manufacturing,,
+2019,Manitoba,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2019,Manitoba,All employees,Machinery manufacturing,,0.89
+2019,Manitoba,All employees,"Agricultural, construction and mining machinery manufacturing",,0.59
+2019,Manitoba,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.07
+2019,Manitoba,All employees,Other general-purpose machinery manufacturing,,0.12
+2019,Manitoba,All employees,Computer and electronic product manufacturing,,0.07
+2019,Manitoba,All employees,Semiconductor and other electronic component manufacturing,,0.04
+2019,Manitoba,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.02
+2019,Manitoba,All employees,Electrical equipment manufacturing,,0.12
+2019,Manitoba,All employees,Transportation equipment manufacturing,,1.44
+2019,Manitoba,All employees,Motor vehicle body and trailer manufacturing,,0.28
+2019,Manitoba,All employees,Aerospace product and parts manufacturing,,0.66
+2019,Manitoba,All employees,Furniture and related product manufacturing,,0.59
+2019,Manitoba,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.53
+2019,Manitoba,All employees,Office furniture (including fixtures) manufacturing,,0.05
+2019,Manitoba,All employees,Other furniture-related product manufacturing,,0.01
+2019,Manitoba,All employees,Miscellaneous manufacturing,,0.28
+2019,Manitoba,All employees,Medical equipment and supplies manufacturing,,0.09
+2019,Manitoba,All employees,Other miscellaneous manufacturing,,0.19
+2019,Manitoba,Salaried employees paid a fixed salary,Manufacturing,,2.15
+2019,Manitoba,Salaried employees paid a fixed salary,Non-durable goods,,0.89
+2019,Manitoba,Salaried employees paid a fixed salary,Food manufacturing,,0.28
+2019,Manitoba,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
+2019,Manitoba,Salaried employees paid a fixed salary,Other textile product mills,,
+2019,Manitoba,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Paper manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2019,Manitoba,Salaried employees paid a fixed salary,Printing and related support activities,,0.11
+2019,Manitoba,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Durable goods,,1.26
+2019,Manitoba,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2019,Manitoba,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2019,Manitoba,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.12
+2019,Manitoba,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Machinery manufacturing,,0.26
+2019,Manitoba,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2019,Manitoba,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2019,Manitoba,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Manitoba,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.34
+2019,Manitoba,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2019,Manitoba,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2019,Manitoba,Employees paid by the hour,Manufacturing,,6.76
+2019,Manitoba,Employees paid by the hour,Non-durable goods,,2.96
+2019,Manitoba,Employees paid by the hour,Food manufacturing,,1.44
+2019,Manitoba,Employees paid by the hour,Animal food manufacturing,,
+2019,Manitoba,Employees paid by the hour,Meat product manufacturing,,
+2019,Manitoba,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2019,Manitoba,Employees paid by the hour,Cannabis product manufacturing,,
+2019,Manitoba,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
+2019,Manitoba,Employees paid by the hour,Other textile product mills,,
+2019,Manitoba,Employees paid by the hour,Clothing manufacturing,,
+2019,Manitoba,Employees paid by the hour,Cut and sew clothing manufacturing,,
+2019,Manitoba,Employees paid by the hour,Leather and hide tanning and finishing,,
+2019,Manitoba,Employees paid by the hour,Paper manufacturing,,
+2019,Manitoba,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2019,Manitoba,Employees paid by the hour,Printing and related support activities,,0.34
+2019,Manitoba,Employees paid by the hour,Chemical manufacturing,,
+2019,Manitoba,Employees paid by the hour,Basic chemical manufacturing,,
+2019,Manitoba,Employees paid by the hour,Durable goods,,3.8
+2019,Manitoba,Employees paid by the hour,Wood product manufacturing,,
+2019,Manitoba,Employees paid by the hour,Sawmills and wood preservation,,
+2019,Manitoba,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2019,Manitoba,Employees paid by the hour,Other wood product manufacturing,,
+2019,Manitoba,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2019,Manitoba,Employees paid by the hour,Cement and concrete product manufacturing,,
+2019,Manitoba,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2019,Manitoba,Employees paid by the hour,Primary metal manufacturing,,0.41
+2019,Manitoba,Employees paid by the hour,Fabricated metal product manufacturing,,
+2019,Manitoba,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2019,Manitoba,Employees paid by the hour,Machinery manufacturing,,0.61
+2019,Manitoba,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2019,Manitoba,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2019,Manitoba,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2019,Manitoba,Employees paid by the hour,Computer and electronic product manufacturing,,
+2019,Manitoba,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Manitoba,Employees paid by the hour,Electrical equipment manufacturing,,
+2019,Manitoba,Employees paid by the hour,Transportation equipment manufacturing,,1.09
+2019,Manitoba,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,0.17
+2019,Manitoba,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2019,Manitoba,Employees paid by the hour,Furniture and related product manufacturing,,
+2019,Manitoba,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2019,Manitoba,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2019,Manitoba,Employees paid by the hour,Other furniture-related product manufacturing,,
+2019,Manitoba,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2019,Manitoba,Employees paid by the hour,Other miscellaneous manufacturing,,
+2019,Saskatchewan,All employees,Manufacturing,47,5.21
+2019,Saskatchewan,All employees,Non-durable goods,,2.09
+2019,Saskatchewan,All employees,Food manufacturing,,1
+2019,Saskatchewan,All employees,Animal food manufacturing,,0.11
+2019,Saskatchewan,All employees,Grain and oilseed milling,,0.25
+2019,Saskatchewan,All employees,Meat product manufacturing,,0.42
+2019,Saskatchewan,All employees,Beverage and tobacco product manufacturing,,0.22
+2019,Saskatchewan,All employees,Cannabis product manufacturing,,
+2019,Saskatchewan,All employees,Printing and related support activities,,0.1
+2019,Saskatchewan,All employees,Chemical manufacturing,,0.33
+2019,Saskatchewan,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.13
+2019,Saskatchewan,All employees,Durable goods,,3.12
+2019,Saskatchewan,All employees,Wood product manufacturing,,0.3
+2019,Saskatchewan,All employees,Sawmills and wood preservation,,0.09
+2019,Saskatchewan,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.17
+2019,Saskatchewan,All employees,Other wood product manufacturing,,0.04
+2019,Saskatchewan,All employees,Cement and concrete product manufacturing,,0.17
+2019,Saskatchewan,All employees,Fabricated metal product manufacturing,,0.66
+2019,Saskatchewan,All employees,Architectural and structural metals manufacturing,,0.26
+2019,Saskatchewan,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.06
+2019,Saskatchewan,All employees,Machinery manufacturing,,0.97
+2019,Saskatchewan,All employees,"Agricultural, construction and mining machinery manufacturing",,0.83
+2019,Saskatchewan,All employees,Computer and electronic product manufacturing,,
+2019,Saskatchewan,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Saskatchewan,All employees,Motor vehicle body and trailer manufacturing,,0.23
+2019,Saskatchewan,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.09
+2019,Saskatchewan,All employees,Miscellaneous manufacturing,,0.12
+2019,Saskatchewan,All employees,Medical equipment and supplies manufacturing,,0.05
+2019,Saskatchewan,All employees,Other miscellaneous manufacturing,,0.07
+2019,Saskatchewan,Salaried employees paid a fixed salary,Manufacturing,,1.31
+2019,Saskatchewan,Salaried employees paid a fixed salary,Non-durable goods,,
+2019,Saskatchewan,Salaried employees paid a fixed salary,Food manufacturing,,0.17
+2019,Saskatchewan,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2019,Saskatchewan,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2019,Saskatchewan,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,Saskatchewan,Salaried employees paid a fixed salary,Printing and related support activities,,
+2019,Saskatchewan,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2019,Saskatchewan,Salaried employees paid a fixed salary,Durable goods,,0.72
+2019,Saskatchewan,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.11
+2019,Saskatchewan,Salaried employees paid a fixed salary,Machinery manufacturing,,0.23
+2019,Saskatchewan,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,0.19
+2019,Saskatchewan,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2019,Saskatchewan,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2019,Saskatchewan,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Saskatchewan,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2019,Saskatchewan,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2019,Saskatchewan,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2019,Saskatchewan,Employees paid by the hour,Manufacturing,,3.7
+2019,Saskatchewan,Employees paid by the hour,Non-durable goods,,
+2019,Saskatchewan,Employees paid by the hour,Food manufacturing,,0.78
+2019,Saskatchewan,Employees paid by the hour,Grain and oilseed milling,,
+2019,Saskatchewan,Employees paid by the hour,Meat product manufacturing,,
+2019,Saskatchewan,Employees paid by the hour,Cannabis product manufacturing,,
+2019,Saskatchewan,Employees paid by the hour,Printing and related support activities,,
+2019,Saskatchewan,Employees paid by the hour,Chemical manufacturing,,
+2019,Saskatchewan,Employees paid by the hour,Durable goods,,2.28
+2019,Saskatchewan,Employees paid by the hour,Fabricated metal product manufacturing,,0.52
+2019,Saskatchewan,Employees paid by the hour,Machinery manufacturing,,0.69
+2019,Saskatchewan,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,0.6
+2019,Saskatchewan,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2019,Saskatchewan,Employees paid by the hour,Computer and electronic product manufacturing,,
+2019,Saskatchewan,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Saskatchewan,Employees paid by the hour,Transportation equipment manufacturing,,
+2019,Saskatchewan,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2019,Saskatchewan,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2019,Alberta,All employees,Manufacturing,48,6.11
+2019,Alberta,All employees,Non-durable goods,,2.55
+2019,Alberta,All employees,Food manufacturing,,1.09
+2019,Alberta,All employees,Animal food manufacturing,,0.04
+2019,Alberta,All employees,Grain and oilseed milling,,0.04
+2019,Alberta,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.07
+2019,Alberta,All employees,Meat product manufacturing,,0.54
+2019,Alberta,All employees,Bakeries and tortilla manufacturing,,0.16
+2019,Alberta,All employees,Other food manufacturing,,0.14
+2019,Alberta,All employees,Beverage and tobacco product manufacturing,,0.18
+2019,Alberta,All employees,Cannabis product manufacturing,,
+2019,Alberta,All employees,Cut and sew clothing manufacturing,,
+2019,Alberta,All employees,Other leather and allied product manufacturing,,
+2019,Alberta,All employees,Paper manufacturing,,0.1
+2019,Alberta,All employees,"Pulp, paper and paperboard mills",,0.08
+2019,Alberta,All employees,Converted paper product manufacturing,,0.03
+2019,Alberta,All employees,Printing and related support activities,,0.21
+2019,Alberta,All employees,Petroleum and coal product manufacturing,,0.18
+2019,Alberta,All employees,Chemical manufacturing,,0.46
+2019,Alberta,All employees,Basic chemical manufacturing,,0.16
+2019,Alberta,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2019,Alberta,All employees,Other chemical product manufacturing,,0.08
+2019,Alberta,All employees,Plastics and rubber products manufacturing,,0.29
+2019,Alberta,All employees,Durable goods,,3.56
+2019,Alberta,All employees,Wood product manufacturing,,0.46
+2019,Alberta,All employees,Sawmills and wood preservation,,0.16
+2019,Alberta,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.12
+2019,Alberta,All employees,Other wood product manufacturing,,0.18
+2019,Alberta,All employees,Non-metallic mineral product manufacturing,,0.36
+2019,Alberta,All employees,Glass and glass product manufacturing,,0.02
+2019,Alberta,All employees,Cement and concrete product manufacturing,,0.23
+2019,Alberta,All employees,Other non-metallic mineral product manufacturing,,0.06
+2019,Alberta,All employees,Primary metal manufacturing,,0.17
+2019,Alberta,All employees,Fabricated metal product manufacturing,,1
+2019,Alberta,All employees,Forging and stamping,,
+2019,Alberta,All employees,Architectural and structural metals manufacturing,,0.43
+2019,Alberta,All employees,"Boiler, tank and shipping container manufacturing",,0.15
+2019,Alberta,All employees,Spring and wire product manufacturing,,0.03
+2019,Alberta,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.2
+2019,Alberta,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2019,Alberta,All employees,Other fabricated metal product manufacturing,,0.12
+2019,Alberta,All employees,Machinery manufacturing,,0.84
+2019,Alberta,All employees,"Agricultural, construction and mining machinery manufacturing",,0.42
+2019,Alberta,All employees,Industrial machinery manufacturing,,0.03
+2019,Alberta,All employees,Commercial and service industry machinery manufacturing,,0.02
+2019,Alberta,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.11
+2019,Alberta,All employees,Metalworking machinery manufacturing,,0.04
+2019,Alberta,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
+2019,Alberta,All employees,Other general-purpose machinery manufacturing,,0.2
+2019,Alberta,All employees,Computer and electronic product manufacturing,,0.17
+2019,Alberta,All employees,Computer and peripheral equipment manufacturing,,
+2019,Alberta,All employees,Communications equipment manufacturing,,
+2019,Alberta,All employees,Semiconductor and other electronic component manufacturing,,0.04
+2019,Alberta,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.1
+2019,Alberta,All employees,"Electrical equipment, appliance and component manufacturing",,0.09
+2019,Alberta,All employees,Electrical equipment manufacturing,,0.05
+2019,Alberta,All employees,Other electrical equipment and component manufacturing,,
+2019,Alberta,All employees,Transportation equipment manufacturing,,0.1
+2019,Alberta,All employees,Motor vehicle body and trailer manufacturing,,0.06
+2019,Alberta,All employees,Motor vehicle parts manufacturing,,0.01
+2019,Alberta,All employees,Aerospace product and parts manufacturing,,0.02
+2019,Alberta,All employees,Furniture and related product manufacturing,,0.15
+2019,Alberta,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.09
+2019,Alberta,All employees,Office furniture (including fixtures) manufacturing,,0.04
+2019,Alberta,All employees,Other furniture-related product manufacturing,,0.03
+2019,Alberta,All employees,Miscellaneous manufacturing,,0.21
+2019,Alberta,All employees,Medical equipment and supplies manufacturing,,0.07
+2019,Alberta,All employees,Other miscellaneous manufacturing,,0.14
+2019,Alberta,Salaried employees paid a fixed salary,Manufacturing,,1.69
+2019,Alberta,Salaried employees paid a fixed salary,Non-durable goods,,0.86
+2019,Alberta,Salaried employees paid a fixed salary,Food manufacturing,,0.24
+2019,Alberta,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2019,Alberta,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Paper manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2019,Alberta,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Printing and related support activities,,0.04
+2019,Alberta,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2019,Alberta,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.06
+2019,Alberta,Salaried employees paid a fixed salary,Durable goods,,0.83
+2019,Alberta,Salaried employees paid a fixed salary,Wood product manufacturing,,0.06
+2019,Alberta,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2019,Alberta,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.07
+2019,Alberta,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,0.05
+2019,Alberta,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2019,Alberta,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2019,Alberta,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2019,Alberta,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2019,Alberta,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Alberta,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2019,Alberta,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.03
+2019,Alberta,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2019,Alberta,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2019,Alberta,Employees paid by the hour,Manufacturing,,4.18
+2019,Alberta,Employees paid by the hour,Non-durable goods,,1.59
+2019,Alberta,Employees paid by the hour,Food manufacturing,,0.81
+2019,Alberta,Employees paid by the hour,Grain and oilseed milling,,
+2019,Alberta,Employees paid by the hour,Meat product manufacturing,,
+2019,Alberta,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2019,Alberta,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2019,Alberta,Employees paid by the hour,Cannabis product manufacturing,,
+2019,Alberta,Employees paid by the hour,Paper manufacturing,,
+2019,Alberta,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2019,Alberta,Employees paid by the hour,Converted paper product manufacturing,,
+2019,Alberta,Employees paid by the hour,Printing and related support activities,,0.15
+2019,Alberta,Employees paid by the hour,Chemical manufacturing,,
+2019,Alberta,Employees paid by the hour,Basic chemical manufacturing,,
+2019,Alberta,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2019,Alberta,Employees paid by the hour,Other chemical product manufacturing,,
+2019,Alberta,Employees paid by the hour,Plastics and rubber products manufacturing,,0.21
+2019,Alberta,Employees paid by the hour,Durable goods,,2.59
+2019,Alberta,Employees paid by the hour,Wood product manufacturing,,0.38
+2019,Alberta,Employees paid by the hour,Sawmills and wood preservation,,
+2019,Alberta,Employees paid by the hour,Other wood product manufacturing,,0.14
+2019,Alberta,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.27
+2019,Alberta,Employees paid by the hour,Cement and concrete product manufacturing,,0.18
+2019,Alberta,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2019,Alberta,Employees paid by the hour,Fabricated metal product manufacturing,,
+2019,Alberta,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2019,Alberta,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2019,Alberta,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2019,Alberta,Employees paid by the hour,Machinery manufacturing,,
+2019,Alberta,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2019,Alberta,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2019,Alberta,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2019,Alberta,Employees paid by the hour,Computer and electronic product manufacturing,,
+2019,Alberta,Employees paid by the hour,Communications equipment manufacturing,,
+2019,Alberta,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,Alberta,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2019,Alberta,Employees paid by the hour,Electrical equipment manufacturing,,
+2019,Alberta,Employees paid by the hour,Transportation equipment manufacturing,,
+2019,Alberta,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2019,Alberta,Employees paid by the hour,Motor vehicle parts manufacturing,,
+2019,Alberta,Employees paid by the hour,Furniture and related product manufacturing,,0.12
+2019,Alberta,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2019,Alberta,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2019,Alberta,Employees paid by the hour,Other furniture-related product manufacturing,,
+2019,Alberta,Employees paid by the hour,Miscellaneous manufacturing,,
+2019,Alberta,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2019,Alberta,Employees paid by the hour,Other miscellaneous manufacturing,,
+2019,British Columbia,All employees,Manufacturing,59,6.64
+2019,British Columbia,All employees,Non-durable goods,,2.74
+2019,British Columbia,All employees,Food manufacturing,,1.16
+2019,British Columbia,All employees,Animal food manufacturing,,0.04
+2019,British Columbia,All employees,Grain and oilseed milling,,0.02
+2019,British Columbia,All employees,Sugar and confectionery product manufacturing,,0.05
+2019,British Columbia,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.07
+2019,British Columbia,All employees,Dairy product manufacturing,,0.1
+2019,British Columbia,All employees,Meat product manufacturing,,0.21
+2019,British Columbia,All employees,Seafood product preparation and packaging,,0.13
+2019,British Columbia,All employees,Bakeries and tortilla manufacturing,,0.28
+2019,British Columbia,All employees,Other food manufacturing,,0.25
+2019,British Columbia,All employees,Beverage and tobacco product manufacturing,,0.4
+2019,British Columbia,All employees,Cannabis product manufacturing,,
+2019,British Columbia,All employees,Fabric mills,,
+2019,British Columbia,All employees,Textile product mills,,0.04
+2019,British Columbia,All employees,Textile furnishings mills,,0.01
+2019,British Columbia,All employees,Other textile product mills,,0.03
+2019,British Columbia,All employees,Clothing manufacturing,,0.06
+2019,British Columbia,All employees,Cut and sew clothing manufacturing,,0.04
+2019,British Columbia,All employees,Other leather and allied product manufacturing,,0
+2019,British Columbia,All employees,Paper manufacturing,,0.31
+2019,British Columbia,All employees,"Pulp, paper and paperboard mills",,0.25
+2019,British Columbia,All employees,Converted paper product manufacturing,,0.05
+2019,British Columbia,All employees,Printing and related support activities,,0.19
+2019,British Columbia,All employees,Petroleum and coal product manufacturing,,0.04
+2019,British Columbia,All employees,Chemical manufacturing,,0.3
+2019,British Columbia,All employees,Basic chemical manufacturing,,0.03
+2019,British Columbia,All employees,Pharmaceutical and medicine manufacturing,,0.13
+2019,British Columbia,All employees,"Paint, coating and adhesive manufacturing",,0.02
+2019,British Columbia,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.08
+2019,British Columbia,All employees,Other chemical product manufacturing,,0.03
+2019,British Columbia,All employees,Plastics and rubber products manufacturing,,0.24
+2019,British Columbia,All employees,Plastic product manufacturing,,0.21
+2019,British Columbia,All employees,Durable goods,,3.9
+2019,British Columbia,All employees,Wood product manufacturing,,1.14
+2019,British Columbia,All employees,Sawmills and wood preservation,,0.62
+2019,British Columbia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.21
+2019,British Columbia,All employees,Other wood product manufacturing,,0.31
+2019,British Columbia,All employees,Non-metallic mineral product manufacturing,,0.3
+2019,British Columbia,All employees,Glass and glass product manufacturing,,0.06
+2019,British Columbia,All employees,Cement and concrete product manufacturing,,0.17
+2019,British Columbia,All employees,Other non-metallic mineral product manufacturing,,0.05
+2019,British Columbia,All employees,Primary metal manufacturing,,0.16
+2019,British Columbia,All employees,Fabricated metal product manufacturing,,0.55
+2019,British Columbia,All employees,Forging and stamping,,0.01
+2019,British Columbia,All employees,Cutlery and hand tool manufacturing,,
+2019,British Columbia,All employees,Architectural and structural metals manufacturing,,0.27
+2019,British Columbia,All employees,"Boiler, tank and shipping container manufacturing",,0.03
+2019,British Columbia,All employees,Spring and wire product manufacturing,,0.02
+2019,British Columbia,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.08
+2019,British Columbia,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
+2019,British Columbia,All employees,Other fabricated metal product manufacturing,,0.08
+2019,British Columbia,All employees,Machinery manufacturing,,0.42
+2019,British Columbia,All employees,"Agricultural, construction and mining machinery manufacturing",,0.05
+2019,British Columbia,All employees,Industrial machinery manufacturing,,0.1
+2019,British Columbia,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.05
+2019,British Columbia,All employees,Metalworking machinery manufacturing,,0.04
+2019,British Columbia,All employees,Other general-purpose machinery manufacturing,,0.1
+2019,British Columbia,All employees,Computer and electronic product manufacturing,,0.25
+2019,British Columbia,All employees,Computer and peripheral equipment manufacturing,,0.03
+2019,British Columbia,All employees,Communications equipment manufacturing,,0.04
+2019,British Columbia,All employees,Semiconductor and other electronic component manufacturing,,0.07
+2019,British Columbia,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.1
+2019,British Columbia,All employees,"Electrical equipment, appliance and component manufacturing",,0.17
+2019,British Columbia,All employees,Electrical equipment manufacturing,,0.05
+2019,British Columbia,All employees,Other electrical equipment and component manufacturing,,0.09
+2019,British Columbia,All employees,Transportation equipment manufacturing,,0.35
+2019,British Columbia,All employees,Motor vehicle body and trailer manufacturing,,0.07
+2019,British Columbia,All employees,Aerospace product and parts manufacturing,,0.08
+2019,British Columbia,All employees,Ship and boat building,,0.12
+2019,British Columbia,All employees,Furniture and related product manufacturing,,0.26
+2019,British Columbia,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
+2019,British Columbia,All employees,Office furniture (including fixtures) manufacturing,,0.03
+2019,British Columbia,All employees,Other furniture-related product manufacturing,,0.02
+2019,British Columbia,All employees,Miscellaneous manufacturing,,0.31
+2019,British Columbia,All employees,Medical equipment and supplies manufacturing,,0.11
+2019,British Columbia,All employees,Other miscellaneous manufacturing,,0.21
+2019,British Columbia,Salaried employees paid a fixed salary,Manufacturing,,1.55
+2019,British Columbia,Salaried employees paid a fixed salary,Non-durable goods,,0.62
+2019,British Columbia,Salaried employees paid a fixed salary,Food manufacturing,,0.2
+2019,British Columbia,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2019,British Columbia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Paper manufacturing,,0.06
+2019,British Columbia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2019,British Columbia,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Printing and related support activities,,
+2019,British Columbia,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2019,British Columbia,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.05
+2019,British Columbia,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.04
+2019,British Columbia,Salaried employees paid a fixed salary,Durable goods,,0.93
+2019,British Columbia,Salaried employees paid a fixed salary,Wood product manufacturing,,0.12
+2019,British Columbia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2019,British Columbia,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2019,British Columbia,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.03
+2019,British Columbia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.05
+2019,British Columbia,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.1
+2019,British Columbia,Salaried employees paid a fixed salary,Forging and stamping,,
+2019,British Columbia,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2019,British Columbia,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2019,British Columbia,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Machinery manufacturing,,0.12
+2019,British Columbia,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2019,British Columbia,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,British Columbia,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Ship and boat building,,
+2019,British Columbia,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2019,British Columbia,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2019,British Columbia,Employees paid by the hour,Manufacturing,,4.77
+2019,British Columbia,Employees paid by the hour,Non-durable goods,,1.98
+2019,British Columbia,Employees paid by the hour,Food manufacturing,,0.91
+2019,British Columbia,Employees paid by the hour,Animal food manufacturing,,
+2019,British Columbia,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2019,British Columbia,Employees paid by the hour,Meat product manufacturing,,
+2019,British Columbia,Employees paid by the hour,Seafood product preparation and packaging,,
+2019,British Columbia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2019,British Columbia,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2019,British Columbia,Employees paid by the hour,Cannabis product manufacturing,,
+2019,British Columbia,Employees paid by the hour,Clothing manufacturing,,
+2019,British Columbia,Employees paid by the hour,Other leather and allied product manufacturing,,
+2019,British Columbia,Employees paid by the hour,Paper manufacturing,,0.24
+2019,British Columbia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2019,British Columbia,Employees paid by the hour,Converted paper product manufacturing,,
+2019,British Columbia,Employees paid by the hour,Printing and related support activities,,0.12
+2019,British Columbia,Employees paid by the hour,Basic chemical manufacturing,,
+2019,British Columbia,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2019,British Columbia,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2019,British Columbia,Employees paid by the hour,Other chemical product manufacturing,,
+2019,British Columbia,Employees paid by the hour,Plastics and rubber products manufacturing,,0.18
+2019,British Columbia,Employees paid by the hour,Plastic product manufacturing,,0.16
+2019,British Columbia,Employees paid by the hour,Durable goods,,2.79
+2019,British Columbia,Employees paid by the hour,Wood product manufacturing,,0.99
+2019,British Columbia,Employees paid by the hour,Sawmills and wood preservation,,0.55
+2019,British Columbia,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2019,British Columbia,Employees paid by the hour,Other wood product manufacturing,,0.26
+2019,British Columbia,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.23
+2019,British Columbia,Employees paid by the hour,Glass and glass product manufacturing,,
+2019,British Columbia,Employees paid by the hour,Cement and concrete product manufacturing,,
+2019,British Columbia,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2019,British Columbia,Employees paid by the hour,Primary metal manufacturing,,
+2019,British Columbia,Employees paid by the hour,Fabricated metal product manufacturing,,0.41
+2019,British Columbia,Employees paid by the hour,Forging and stamping,,
+2019,British Columbia,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2019,British Columbia,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2019,British Columbia,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2019,British Columbia,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2019,British Columbia,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2019,British Columbia,Employees paid by the hour,Machinery manufacturing,,0.28
+2019,British Columbia,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2019,British Columbia,Employees paid by the hour,Industrial machinery manufacturing,,
+2019,British Columbia,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2019,British Columbia,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2019,British Columbia,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2019,British Columbia,Employees paid by the hour,Electrical equipment manufacturing,,
+2019,British Columbia,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2019,British Columbia,Employees paid by the hour,Transportation equipment manufacturing,,
+2019,British Columbia,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2019,British Columbia,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2019,British Columbia,Employees paid by the hour,Ship and boat building,,
+2019,British Columbia,Employees paid by the hour,Furniture and related product manufacturing,,
+2019,British Columbia,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2019,British Columbia,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2019,British Columbia,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2019,British Columbia,Employees paid by the hour,Other miscellaneous manufacturing,,
+2019,Yukon,All employees,Cannabis product manufacturing,,
+2019,Yukon,All employees,Durable goods,,
+2019,Yukon,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,Yukon,Salaried employees paid a fixed salary,Durable goods,,
+2019,Yukon,Employees paid by the hour,Cannabis product manufacturing,,
+2019,Yukon,Employees paid by the hour,Durable goods,,
+2019,Northwest Territories,All employees,Cannabis product manufacturing,,
+2019,Northwest Territories,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,Northwest Territories,Employees paid by the hour,Cannabis product manufacturing,,
+2019,Nunavut,All employees,Cannabis product manufacturing,,
+2019,Nunavut,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2019,Nunavut,Employees paid by the hour,Cannabis product manufacturing,,
+2020,Canada,All employees,Non-durable goods,,3.87
+2020,Canada,All employees,Food manufacturing,,1.53
+2020,Canada,All employees,Animal food manufacturing,,0.07
+2020,Canada,All employees,Grain and oilseed milling,,0.06
+2020,Canada,All employees,Sugar and confectionery product manufacturing,,0.06
+2020,Canada,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.12
+2020,Canada,All employees,Dairy product manufacturing,,0.16
+2020,Canada,All employees,Meat product manufacturing,,0.42
+2020,Canada,All employees,Seafood product preparation and packaging,,0.13
+2020,Canada,All employees,Bakeries and tortilla manufacturing,,0.3
+2020,Canada,All employees,Other food manufacturing,,0.23
+2020,Canada,All employees,Beverage and tobacco product manufacturing,,0.3
+2020,Canada,All employees,Beverage manufacturing,,0.27
+2020,Canada,All employees,Tobacco manufacturing,,0.01
+2020,Canada,All employees,Cannabis product manufacturing,,0.02
+2020,Canada,All employees,Textile mills,,0.04
+2020,Canada,All employees,"Fibre, yarn and thread mills",,0
+2020,Canada,All employees,Fabric mills,,0.02
+2020,Canada,All employees,Textile and fabric finishing and fabric coating,,0.01
+2020,Canada,All employees,Textile product mills,,0.05
+2020,Canada,All employees,Textile furnishings mills,,0.02
+2020,Canada,All employees,Other textile product mills,,0.04
+2020,Canada,All employees,Clothing manufacturing,,0.1
+2020,Canada,All employees,Clothing knitting mills,,0.01
+2020,Canada,All employees,Cut and sew clothing manufacturing,,0.08
+2020,Canada,All employees,Clothing accessories and other clothing manufacturing,,0.01
+2020,Canada,All employees,Leather and allied product manufacturing,,0.01
+2020,Canada,All employees,Leather and hide tanning and finishing,,0
+2020,Canada,All employees,Footwear manufacturing,,0.01
+2020,Canada,All employees,Other leather and allied product manufacturing,,0
+2020,Canada,All employees,Paper manufacturing,,0.31
+2020,Canada,All employees,"Pulp, paper and paperboard mills",,0.14
+2020,Canada,All employees,Converted paper product manufacturing,,0.17
+2020,Canada,All employees,Printing and related support activities,,0.27
+2020,Canada,All employees,Petroleum and coal product manufacturing,,0.1
+2020,Canada,All employees,Chemical manufacturing,,0.56
+2020,Canada,All employees,Basic chemical manufacturing,,0.08
+2020,Canada,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.03
+2020,Canada,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
+2020,Canada,All employees,Pharmaceutical and medicine manufacturing,,0.2
+2020,Canada,All employees,"Paint, coating and adhesive manufacturing",,0.04
+2020,Canada,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.1
+2020,Canada,All employees,Other chemical product manufacturing,,0.07
+2020,Canada,All employees,Plastics and rubber products manufacturing,,0.59
+2020,Canada,All employees,Plastic product manufacturing,,0.51
+2020,Canada,All employees,Rubber product manufacturing,,0.09
+2020,Canada,All employees,Durable goods,,5.46
+2020,Canada,All employees,Wood product manufacturing,,0.55
+2020,Canada,All employees,Sawmills and wood preservation,,0.21
+2020,Canada,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.12
+2020,Canada,All employees,Other wood product manufacturing,,0.23
+2020,Canada,All employees,Non-metallic mineral product manufacturing,,0.32
+2020,Canada,All employees,Clay product and refractory manufacturing,,0.01
+2020,Canada,All employees,Glass and glass product manufacturing,,0.05
+2020,Canada,All employees,Cement and concrete product manufacturing,,0.19
+2020,Canada,All employees,Lime and gypsum product manufacturing,,0.01
+2020,Canada,All employees,Other non-metallic mineral product manufacturing,,0.06
+2020,Canada,All employees,Primary metal manufacturing,,0.34
+2020,Canada,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.09
+2020,Canada,All employees,Steel product manufacturing from purchased steel,,0.05
+2020,Canada,All employees,Alumina and aluminum production and processing,,0.06
+2020,Canada,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
+2020,Canada,All employees,Foundries,,0.05
+2020,Canada,All employees,Fabricated metal product manufacturing,,0.95
+2020,Canada,All employees,Forging and stamping,,0.03
+2020,Canada,All employees,Cutlery and hand tool manufacturing,,0.02
+2020,Canada,All employees,Architectural and structural metals manufacturing,,0.37
+2020,Canada,All employees,"Boiler, tank and shipping container manufacturing",,0.07
+2020,Canada,All employees,Hardware manufacturing,,0.04
+2020,Canada,All employees,Spring and wire product manufacturing,,0.03
+2020,Canada,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.19
+2020,Canada,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2020,Canada,All employees,Other fabricated metal product manufacturing,,0.14
+2020,Canada,All employees,Machinery manufacturing,,0.82
+2020,Canada,All employees,"Agricultural, construction and mining machinery manufacturing",,0.18
+2020,Canada,All employees,Industrial machinery manufacturing,,0.11
+2020,Canada,All employees,Commercial and service industry machinery manufacturing,,0.1
+2020,Canada,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.11
+2020,Canada,All employees,Metalworking machinery manufacturing,,0.12
+2020,Canada,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
+2020,Canada,All employees,Other general-purpose machinery manufacturing,,0.19
+2020,Canada,All employees,Computer and electronic product manufacturing,,0.35
+2020,Canada,All employees,Computer and peripheral equipment manufacturing,,0.04
+2020,Canada,All employees,Communications equipment manufacturing,,0.07
+2020,Canada,All employees,Audio and video equipment manufacturing,,0.01
+2020,Canada,All employees,Semiconductor and other electronic component manufacturing,,0.1
+2020,Canada,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.14
+2020,Canada,All employees,Manufacturing and reproducing magnetic and optical media,,0
+2020,Canada,All employees,"Electrical equipment, appliance and component manufacturing",,0.23
+2020,Canada,All employees,Electric lighting equipment manufacturing,,0.04
+2020,Canada,All employees,Household appliance manufacturing,,0.01
+2020,Canada,All employees,Electrical equipment manufacturing,,0.09
+2020,Canada,All employees,Other electrical equipment and component manufacturing,,0.08
+2020,Canada,All employees,Transportation equipment manufacturing,,1.19
+2020,Canada,All employees,Motor vehicle manufacturing,,0.24
+2020,Canada,All employees,Motor vehicle body and trailer manufacturing,,0.09
+2020,Canada,All employees,Motor vehicle parts manufacturing,,0.43
+2020,Canada,All employees,Aerospace product and parts manufacturing,,0.3
+2020,Canada,All employees,Railroad rolling stock manufacturing,,0.03
+2020,Canada,All employees,Ship and boat building,,0.05
+2020,Canada,All employees,Other transportation equipment manufacturing,,0.05
+2020,Canada,All employees,Furniture and related product manufacturing,,0.37
+2020,Canada,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.23
+2020,Canada,All employees,Office furniture (including fixtures) manufacturing,,0.12
+2020,Canada,All employees,Other furniture-related product manufacturing,,0.03
+2020,Canada,All employees,Miscellaneous manufacturing,,0.34
+2020,Canada,All employees,Medical equipment and supplies manufacturing,,0.12
+2020,Canada,All employees,Other miscellaneous manufacturing,,0.22
+2020,Canada,Salaried employees paid a fixed salary,Manufacturing,,2.57
+2020,Canada,Salaried employees paid a fixed salary,Non-durable goods,,1.1
+2020,Canada,Salaried employees paid a fixed salary,Food manufacturing,,0.31
+2020,Canada,Salaried employees paid a fixed salary,Animal food manufacturing,,0.02
+2020,Canada,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2020,Canada,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,0.02
+2020,Canada,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Meat product manufacturing,,0.09
+2020,Canada,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,0.02
+2020,Canada,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.04
+2020,Canada,Salaried employees paid a fixed salary,Other food manufacturing,,0.05
+2020,Canada,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,0.1
+2020,Canada,Salaried employees paid a fixed salary,Beverage manufacturing,,0.09
+2020,Canada,Salaried employees paid a fixed salary,Tobacco manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Textile mills,,0.01
+2020,Canada,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2020,Canada,Salaried employees paid a fixed salary,Fabric mills,,
+2020,Canada,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
+2020,Canada,Salaried employees paid a fixed salary,Textile product mills,,
+2020,Canada,Salaried employees paid a fixed salary,Clothing manufacturing,,0.03
+2020,Canada,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,0.02
+2020,Canada,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
+2020,Canada,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2020,Canada,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Paper manufacturing,,0.08
+2020,Canada,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2020,Canada,Salaried employees paid a fixed salary,Printing and related support activities,,0.07
+2020,Canada,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Chemical manufacturing,,0.29
+2020,Canada,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2020,Canada,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2020,Canada,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,0.1
+2020,Canada,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2020,Canada,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Rubber product manufacturing,,0.02
+2020,Canada,Salaried employees paid a fixed salary,Durable goods,,1.47
+2020,Canada,Salaried employees paid a fixed salary,Wood product manufacturing,,0.08
+2020,Canada,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.03
+2020,Canada,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,0.02
+2020,Canada,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.02
+2020,Canada,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.08
+2020,Canada,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,0.05
+2020,Canada,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,0.02
+2020,Canada,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2020,Canada,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2020,Canada,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2020,Canada,Salaried employees paid a fixed salary,Foundries,,0.01
+2020,Canada,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.18
+2020,Canada,Salaried employees paid a fixed salary,Forging and stamping,,
+2020,Canada,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.08
+2020,Canada,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2020,Canada,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2020,Canada,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
+2020,Canada,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,0.03
+2020,Canada,Salaried employees paid a fixed salary,Machinery manufacturing,,0.25
+2020,Canada,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,0.05
+2020,Canada,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,0.04
+2020,Canada,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,0.04
+2020,Canada,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2020,Canada,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,0.03
+2020,Canada,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2020,Canada,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,0.06
+2020,Canada,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.21
+2020,Canada,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Communications equipment manufacturing,,0.04
+2020,Canada,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,0.09
+2020,Canada,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.09
+2020,Canada,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,0.04
+2020,Canada,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.32
+2020,Canada,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,0.11
+2020,Canada,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Ship and boat building,,
+2020,Canada,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.04
+2020,Canada,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.02
+2020,Canada,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,0.01
+2020,Canada,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.13
+2020,Canada,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2020,Canada,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.09
+2020,Canada,Employees paid by the hour,Manufacturing,,6.39
+2020,Canada,Employees paid by the hour,Non-durable goods,,2.64
+2020,Canada,Employees paid by the hour,Food manufacturing,,1.19
+2020,Canada,Employees paid by the hour,Animal food manufacturing,,0.05
+2020,Canada,Employees paid by the hour,Grain and oilseed milling,,
+2020,Canada,Employees paid by the hour,Sugar and confectionery product manufacturing,,
+2020,Canada,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,0.1
+2020,Canada,Employees paid by the hour,Dairy product manufacturing,,
+2020,Canada,Employees paid by the hour,Meat product manufacturing,,0.32
+2020,Canada,Employees paid by the hour,Seafood product preparation and packaging,,0.1
+2020,Canada,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.25
+2020,Canada,Employees paid by the hour,Other food manufacturing,,0.17
+2020,Canada,Employees paid by the hour,Beverage and tobacco product manufacturing,,0.19
+2020,Canada,Employees paid by the hour,Beverage manufacturing,,0.17
+2020,Canada,Employees paid by the hour,Tobacco manufacturing,,
+2020,Canada,Employees paid by the hour,Cannabis product manufacturing,,
+2020,Canada,Employees paid by the hour,Textile mills,,0.03
+2020,Canada,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2020,Canada,Employees paid by the hour,Fabric mills,,
+2020,Canada,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
+2020,Canada,Employees paid by the hour,Textile product mills,,
+2020,Canada,Employees paid by the hour,Clothing manufacturing,,0.06
+2020,Canada,Employees paid by the hour,Cut and sew clothing manufacturing,,0.05
+2020,Canada,Employees paid by the hour,Leather and allied product manufacturing,,0.01
+2020,Canada,Employees paid by the hour,Leather and hide tanning and finishing,,
+2020,Canada,Employees paid by the hour,Footwear manufacturing,,0.01
+2020,Canada,Employees paid by the hour,Other leather and allied product manufacturing,,0
+2020,Canada,Employees paid by the hour,Paper manufacturing,,0.22
+2020,Canada,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2020,Canada,Employees paid by the hour,Printing and related support activities,,0.18
+2020,Canada,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2020,Canada,Employees paid by the hour,Chemical manufacturing,,0.27
+2020,Canada,Employees paid by the hour,Basic chemical manufacturing,,
+2020,Canada,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2020,Canada,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2020,Canada,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,0.1
+2020,Canada,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2020,Canada,Employees paid by the hour,Other chemical product manufacturing,,
+2020,Canada,Employees paid by the hour,Rubber product manufacturing,,0.06
+2020,Canada,Employees paid by the hour,Durable goods,,3.75
+2020,Canada,Employees paid by the hour,Wood product manufacturing,,0.45
+2020,Canada,Employees paid by the hour,Sawmills and wood preservation,,0.17
+2020,Canada,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.09
+2020,Canada,Employees paid by the hour,Other wood product manufacturing,,0.18
+2020,Canada,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.23
+2020,Canada,Employees paid by the hour,Clay product and refractory manufacturing,,
+2020,Canada,Employees paid by the hour,Glass and glass product manufacturing,,
+2020,Canada,Employees paid by the hour,Cement and concrete product manufacturing,,0.14
+2020,Canada,Employees paid by the hour,Lime and gypsum product manufacturing,,
+2020,Canada,Employees paid by the hour,Other non-metallic mineral product manufacturing,,0.04
+2020,Canada,Employees paid by the hour,Primary metal manufacturing,,
+2020,Canada,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2020,Canada,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2020,Canada,Employees paid by the hour,Alumina and aluminum production and processing,,
+2020,Canada,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2020,Canada,Employees paid by the hour,Foundries,,0.04
+2020,Canada,Employees paid by the hour,Fabricated metal product manufacturing,,0.72
+2020,Canada,Employees paid by the hour,Forging and stamping,,
+2020,Canada,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2020,Canada,Employees paid by the hour,Architectural and structural metals manufacturing,,0.27
+2020,Canada,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2020,Canada,Employees paid by the hour,Hardware manufacturing,,
+2020,Canada,Employees paid by the hour,Spring and wire product manufacturing,,
+2020,Canada,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.16
+2020,Canada,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
+2020,Canada,Employees paid by the hour,Other fabricated metal product manufacturing,,0.1
+2020,Canada,Employees paid by the hour,Machinery manufacturing,,0.52
+2020,Canada,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,0.12
+2020,Canada,Employees paid by the hour,Industrial machinery manufacturing,,0.07
+2020,Canada,Employees paid by the hour,Commercial and service industry machinery manufacturing,,0.05
+2020,Canada,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2020,Canada,Employees paid by the hour,Metalworking machinery manufacturing,,0.08
+2020,Canada,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2020,Canada,Employees paid by the hour,Other general-purpose machinery manufacturing,,0.12
+2020,Canada,Employees paid by the hour,Computer and electronic product manufacturing,,0.12
+2020,Canada,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
+2020,Canada,Employees paid by the hour,Communications equipment manufacturing,,0.02
+2020,Canada,Employees paid by the hour,Audio and video equipment manufacturing,,
+2020,Canada,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2020,Canada,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,0.04
+2020,Canada,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.12
+2020,Canada,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2020,Canada,Employees paid by the hour,Household appliance manufacturing,,
+2020,Canada,Employees paid by the hour,Electrical equipment manufacturing,,0.05
+2020,Canada,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2020,Canada,Employees paid by the hour,Transportation equipment manufacturing,,0.85
+2020,Canada,Employees paid by the hour,Motor vehicle manufacturing,,
+2020,Canada,Employees paid by the hour,Motor vehicle parts manufacturing,,0.3
+2020,Canada,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2020,Canada,Employees paid by the hour,Ship and boat building,,
+2020,Canada,Employees paid by the hour,Other transportation equipment manufacturing,,
+2020,Canada,Employees paid by the hour,Furniture and related product manufacturing,,0.31
+2020,Canada,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.19
+2020,Canada,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,0.09
+2020,Canada,Employees paid by the hour,Other furniture-related product manufacturing,,
+2020,Canada,Employees paid by the hour,Miscellaneous manufacturing,,0.17
+2020,Canada,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2020,Canada,Employees paid by the hour,Other miscellaneous manufacturing,,0.11
+2020,Newfoundland and Labrador,All employees,Manufacturing,10,4.4
+2020,Newfoundland and Labrador,All employees,Non-durable goods,,3.26
+2020,Newfoundland and Labrador,All employees,Food manufacturing,,2.57
+2020,Newfoundland and Labrador,All employees,Seafood product preparation and packaging,,2.11
+2020,Newfoundland and Labrador,All employees,Cannabis product manufacturing,,
+2020,Newfoundland and Labrador,All employees,Durable goods,,1.14
+2020,Newfoundland and Labrador,All employees,Sawmills and wood preservation,,
+2020,Newfoundland and Labrador,All employees,Ship and boat building,,
+2020,Newfoundland and Labrador,All employees,Other miscellaneous manufacturing,,0.05
+2020,Newfoundland and Labrador,Salaried employees paid a fixed salary,Manufacturing,,1.25
+2020,Newfoundland and Labrador,Salaried employees paid a fixed salary,Non-durable goods,,
+2020,Newfoundland and Labrador,Salaried employees paid a fixed salary,Food manufacturing,,
+2020,Newfoundland and Labrador,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,Newfoundland and Labrador,Salaried employees paid a fixed salary,Durable goods,,
+2020,Newfoundland and Labrador,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2020,Newfoundland and Labrador,Employees paid by the hour,Manufacturing,,3.03
+2020,Newfoundland and Labrador,Employees paid by the hour,Non-durable goods,,
+2020,Newfoundland and Labrador,Employees paid by the hour,Food manufacturing,,
+2020,Newfoundland and Labrador,Employees paid by the hour,Cannabis product manufacturing,,
+2020,Newfoundland and Labrador,Employees paid by the hour,Durable goods,,
+2020,Newfoundland and Labrador,Employees paid by the hour,Other miscellaneous manufacturing,,
+2020,Prince Edward Island,All employees,Manufacturing,11,7.87
+2020,Prince Edward Island,All employees,Non-durable goods,,5.13
+2020,Prince Edward Island,All employees,Food manufacturing,,3.24
+2020,Prince Edward Island,All employees,Seafood product preparation and packaging,,
+2020,Prince Edward Island,All employees,Cannabis product manufacturing,,
+2020,Prince Edward Island,All employees,Printing and related support activities,,0.17
+2020,Prince Edward Island,All employees,Durable goods,,2.73
+2020,Prince Edward Island,Salaried employees paid a fixed salary,Manufacturing,,
+2020,Prince Edward Island,Salaried employees paid a fixed salary,Food manufacturing,,
+2020,Prince Edward Island,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2020,Prince Edward Island,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,Prince Edward Island,Salaried employees paid a fixed salary,Durable goods,,
+2020,Prince Edward Island,Employees paid by the hour,Manufacturing,,
+2020,Prince Edward Island,Employees paid by the hour,Food manufacturing,,
+2020,Prince Edward Island,Employees paid by the hour,Seafood product preparation and packaging,,
+2020,Prince Edward Island,Employees paid by the hour,Cannabis product manufacturing,,
+2020,Prince Edward Island,Employees paid by the hour,Durable goods,,
+2020,Nova Scotia,All employees,Manufacturing,12,7.58
+2020,Nova Scotia,All employees,Non-durable goods,,4.75
+2020,Nova Scotia,All employees,Food manufacturing,,2.22
+2020,Nova Scotia,All employees,Animal food manufacturing,,0.07
+2020,Nova Scotia,All employees,Dairy product manufacturing,,
+2020,Nova Scotia,All employees,Meat product manufacturing,,0.15
+2020,Nova Scotia,All employees,Seafood product preparation and packaging,,1.23
+2020,Nova Scotia,All employees,Bakeries and tortilla manufacturing,,0.23
+2020,Nova Scotia,All employees,Beverage and tobacco product manufacturing,,0.33
+2020,Nova Scotia,All employees,Cannabis product manufacturing,,
+2020,Nova Scotia,All employees,Fabric mills,,
+2020,Nova Scotia,All employees,Clothing manufacturing,,
+2020,Nova Scotia,All employees,Paper manufacturing,,0.18
+2020,Nova Scotia,All employees,"Pulp, paper and paperboard mills",,
+2020,Nova Scotia,All employees,Printing and related support activities,,0.16
+2020,Nova Scotia,All employees,Plastics and rubber products manufacturing,,1.33
+2020,Nova Scotia,All employees,Durable goods,,2.83
+2020,Nova Scotia,All employees,Wood product manufacturing,,0.35
+2020,Nova Scotia,All employees,Sawmills and wood preservation,,0.18
+2020,Nova Scotia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.06
+2020,Nova Scotia,All employees,Other wood product manufacturing,,0.11
+2020,Nova Scotia,All employees,Non-metallic mineral product manufacturing,,0.19
+2020,Nova Scotia,All employees,Cement and concrete product manufacturing,,0.14
+2020,Nova Scotia,All employees,Other non-metallic mineral product manufacturing,,0.03
+2020,Nova Scotia,All employees,Fabricated metal product manufacturing,,0.47
+2020,Nova Scotia,All employees,Spring and wire product manufacturing,,0.02
+2020,Nova Scotia,All employees,Machinery manufacturing,,0.25
+2020,Nova Scotia,All employees,Commercial and service industry machinery manufacturing,,0.08
+2020,Nova Scotia,All employees,Other general-purpose machinery manufacturing,,0.04
+2020,Nova Scotia,All employees,Transportation equipment manufacturing,,1
+2020,Nova Scotia,All employees,Aerospace product and parts manufacturing,,0.36
+2020,Nova Scotia,All employees,Ship and boat building,,0.61
+2020,Nova Scotia,All employees,Miscellaneous manufacturing,,0.11
+2020,Nova Scotia,All employees,Medical equipment and supplies manufacturing,,0.05
+2020,Nova Scotia,All employees,Other miscellaneous manufacturing,,0.07
+2020,Nova Scotia,Salaried employees paid a fixed salary,Manufacturing,,1.82
+2020,Nova Scotia,Salaried employees paid a fixed salary,Non-durable goods,,1.02
+2020,Nova Scotia,Salaried employees paid a fixed salary,Food manufacturing,,0.4
+2020,Nova Scotia,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2020,Nova Scotia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2020,Nova Scotia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2020,Nova Scotia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,Nova Scotia,Salaried employees paid a fixed salary,Paper manufacturing,,
+2020,Nova Scotia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2020,Nova Scotia,Salaried employees paid a fixed salary,Printing and related support activities,,
+2020,Nova Scotia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.27
+2020,Nova Scotia,Salaried employees paid a fixed salary,Durable goods,,0.81
+2020,Nova Scotia,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2020,Nova Scotia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.02
+2020,Nova Scotia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2020,Nova Scotia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2020,Nova Scotia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.06
+2020,Nova Scotia,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2020,Nova Scotia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2020,Nova Scotia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2020,Nova Scotia,Salaried employees paid a fixed salary,Ship and boat building,,
+2020,Nova Scotia,Employees paid by the hour,Manufacturing,,5.4
+2020,Nova Scotia,Employees paid by the hour,Non-durable goods,,3.5
+2020,Nova Scotia,Employees paid by the hour,Food manufacturing,,1.68
+2020,Nova Scotia,Employees paid by the hour,Animal food manufacturing,,
+2020,Nova Scotia,Employees paid by the hour,Seafood product preparation and packaging,,
+2020,Nova Scotia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2020,Nova Scotia,Employees paid by the hour,Cannabis product manufacturing,,
+2020,Nova Scotia,Employees paid by the hour,Paper manufacturing,,
+2020,Nova Scotia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2020,Nova Scotia,Employees paid by the hour,Printing and related support activities,,
+2020,Nova Scotia,Employees paid by the hour,Plastics and rubber products manufacturing,,1.03
+2020,Nova Scotia,Employees paid by the hour,Durable goods,,1.9
+2020,Nova Scotia,Employees paid by the hour,Wood product manufacturing,,
+2020,Nova Scotia,Employees paid by the hour,Sawmills and wood preservation,,0.16
+2020,Nova Scotia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2020,Nova Scotia,Employees paid by the hour,Cement and concrete product manufacturing,,
+2020,Nova Scotia,Employees paid by the hour,Fabricated metal product manufacturing,,0.36
+2020,Nova Scotia,Employees paid by the hour,Machinery manufacturing,,
+2020,Nova Scotia,Employees paid by the hour,Transportation equipment manufacturing,,
+2020,Nova Scotia,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2020,Nova Scotia,Employees paid by the hour,Ship and boat building,,
+2020,New Brunswick,All employees,Manufacturing,13,9.48
+2020,New Brunswick,All employees,Non-durable goods,,5.38
+2020,New Brunswick,All employees,Food manufacturing,,3.34
+2020,New Brunswick,All employees,Seafood product preparation and packaging,,1.32
+2020,New Brunswick,All employees,Beverage and tobacco product manufacturing,,0.37
+2020,New Brunswick,All employees,Cannabis product manufacturing,,
+2020,New Brunswick,All employees,"Fibre, yarn and thread mills",,
+2020,New Brunswick,All employees,Paper manufacturing,,0.89
+2020,New Brunswick,All employees,"Pulp, paper and paperboard mills",,0.55
+2020,New Brunswick,All employees,Converted paper product manufacturing,,0.34
+2020,New Brunswick,All employees,Printing and related support activities,,0.07
+2020,New Brunswick,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.1
+2020,New Brunswick,All employees,Durable goods,,4.1
+2020,New Brunswick,All employees,Wood product manufacturing,,1.68
+2020,New Brunswick,All employees,Sawmills and wood preservation,,0.89
+2020,New Brunswick,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.24
+2020,New Brunswick,All employees,Other wood product manufacturing,,0.55
+2020,New Brunswick,All employees,Non-metallic mineral product manufacturing,,0.29
+2020,New Brunswick,All employees,Other non-metallic mineral product manufacturing,,0.1
+2020,New Brunswick,All employees,Fabricated metal product manufacturing,,0.77
+2020,New Brunswick,All employees,Architectural and structural metals manufacturing,,0.47
+2020,New Brunswick,All employees,Machinery manufacturing,,0.36
+2020,New Brunswick,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.1
+2020,New Brunswick,All employees,Other general-purpose machinery manufacturing,,0.09
+2020,New Brunswick,All employees,Computer and electronic product manufacturing,,
+2020,New Brunswick,All employees,Furniture and related product manufacturing,,0.22
+2020,New Brunswick,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.2
+2020,New Brunswick,All employees,Miscellaneous manufacturing,,0.29
+2020,New Brunswick,All employees,Medical equipment and supplies manufacturing,,0.03
+2020,New Brunswick,All employees,Other miscellaneous manufacturing,,0.26
+2020,New Brunswick,Salaried employees paid a fixed salary,Manufacturing,,2.26
+2020,New Brunswick,Salaried employees paid a fixed salary,Non-durable goods,,1.29
+2020,New Brunswick,Salaried employees paid a fixed salary,Food manufacturing,,0.75
+2020,New Brunswick,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,New Brunswick,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2020,New Brunswick,Salaried employees paid a fixed salary,Paper manufacturing,,
+2020,New Brunswick,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2020,New Brunswick,Salaried employees paid a fixed salary,Durable goods,,0.98
+2020,New Brunswick,Salaried employees paid a fixed salary,Wood product manufacturing,,0.25
+2020,New Brunswick,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2020,New Brunswick,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.09
+2020,New Brunswick,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2020,New Brunswick,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.2
+2020,New Brunswick,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2020,New Brunswick,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2020,New Brunswick,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2020,New Brunswick,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2020,New Brunswick,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.1
+2020,New Brunswick,Employees paid by the hour,Manufacturing,,6.9
+2020,New Brunswick,Employees paid by the hour,Non-durable goods,,3.97
+2020,New Brunswick,Employees paid by the hour,Food manufacturing,,2.51
+2020,New Brunswick,Employees paid by the hour,Cannabis product manufacturing,,
+2020,New Brunswick,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2020,New Brunswick,Employees paid by the hour,Paper manufacturing,,
+2020,New Brunswick,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2020,New Brunswick,Employees paid by the hour,Durable goods,,2.93
+2020,New Brunswick,Employees paid by the hour,Wood product manufacturing,,1.36
+2020,New Brunswick,Employees paid by the hour,Sawmills and wood preservation,,
+2020,New Brunswick,Employees paid by the hour,Other wood product manufacturing,,0.44
+2020,New Brunswick,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2020,New Brunswick,Employees paid by the hour,Fabricated metal product manufacturing,,0.52
+2020,New Brunswick,Employees paid by the hour,Machinery manufacturing,,
+2020,New Brunswick,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2020,New Brunswick,Employees paid by the hour,Computer and electronic product manufacturing,,
+2020,New Brunswick,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2020,New Brunswick,Employees paid by the hour,Other miscellaneous manufacturing,,0.14
+2020,Quebec,All employees,Manufacturing,24,11.77
+2020,Quebec,All employees,Non-durable goods,,4.79
+2020,Quebec,All employees,Food manufacturing,,1.8
+2020,Quebec,All employees,Animal food manufacturing,,0.08
+2020,Quebec,All employees,Grain and oilseed milling,,0.04
+2020,Quebec,All employees,Sugar and confectionery product manufacturing,,0.1
+2020,Quebec,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.14
+2020,Quebec,All employees,Dairy product manufacturing,,0.26
+2020,Quebec,All employees,Meat product manufacturing,,0.51
+2020,Quebec,All employees,Seafood product preparation and packaging,,0.04
+2020,Quebec,All employees,Bakeries and tortilla manufacturing,,0.32
+2020,Quebec,All employees,Other food manufacturing,,0.33
+2020,Quebec,All employees,Beverage and tobacco product manufacturing,,0.25
+2020,Quebec,All employees,Cannabis product manufacturing,,
+2020,Quebec,All employees,Textile mills,,0.07
+2020,Quebec,All employees,"Fibre, yarn and thread mills",,0.01
+2020,Quebec,All employees,Fabric mills,,0.05
+2020,Quebec,All employees,Textile and fabric finishing and fabric coating,,0.01
+2020,Quebec,All employees,Textile product mills,,0.09
+2020,Quebec,All employees,Textile furnishings mills,,0.04
+2020,Quebec,All employees,Other textile product mills,,0.05
+2020,Quebec,All employees,Clothing manufacturing,,0.24
+2020,Quebec,All employees,Clothing knitting mills,,0.01
+2020,Quebec,All employees,Cut and sew clothing manufacturing,,0.2
+2020,Quebec,All employees,Clothing accessories and other clothing manufacturing,,0.02
+2020,Quebec,All employees,Leather and allied product manufacturing,,0.03
+2020,Quebec,All employees,Leather and hide tanning and finishing,,0
+2020,Quebec,All employees,Footwear manufacturing,,0.02
+2020,Quebec,All employees,Other leather and allied product manufacturing,,0.01
+2020,Quebec,All employees,Paper manufacturing,,0.5
+2020,Quebec,All employees,"Pulp, paper and paperboard mills",,0.23
+2020,Quebec,All employees,Converted paper product manufacturing,,0.27
+2020,Quebec,All employees,Printing and related support activities,,0.29
+2020,Quebec,All employees,Petroleum and coal product manufacturing,,0.1
+2020,Quebec,All employees,Chemical manufacturing,,0.66
+2020,Quebec,All employees,Basic chemical manufacturing,,0.08
+2020,Quebec,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.03
+2020,Quebec,All employees,Pharmaceutical and medicine manufacturing,,0.26
+2020,Quebec,All employees,"Paint, coating and adhesive manufacturing",,0.06
+2020,Quebec,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.12
+2020,Quebec,All employees,Other chemical product manufacturing,,0.09
+2020,Quebec,All employees,Plastics and rubber products manufacturing,,0.75
+2020,Quebec,All employees,Plastic product manufacturing,,0.64
+2020,Quebec,All employees,Rubber product manufacturing,,0.11
+2020,Quebec,All employees,Durable goods,,6.98
+2020,Quebec,All employees,Wood product manufacturing,,0.77
+2020,Quebec,All employees,Sawmills and wood preservation,,0.26
+2020,Quebec,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.15
+2020,Quebec,All employees,Other wood product manufacturing,,0.36
+2020,Quebec,All employees,Non-metallic mineral product manufacturing,,0.4
+2020,Quebec,All employees,Clay product and refractory manufacturing,,0.01
+2020,Quebec,All employees,Glass and glass product manufacturing,,0.07
+2020,Quebec,All employees,Cement and concrete product manufacturing,,0.23
+2020,Quebec,All employees,Lime and gypsum product manufacturing,,0.02
+2020,Quebec,All employees,Other non-metallic mineral product manufacturing,,0.07
+2020,Quebec,All employees,Primary metal manufacturing,,0.49
+2020,Quebec,All employees,Iron and steel mills and ferro-alloy manufacturing,,
+2020,Quebec,All employees,Steel product manufacturing from purchased steel,,
+2020,Quebec,All employees,Alumina and aluminum production and processing,,0.18
+2020,Quebec,All employees,Non-ferrous metal (except aluminum) production and processing,,0.14
+2020,Quebec,All employees,Foundries,,0.1
+2020,Quebec,All employees,Fabricated metal product manufacturing,,1.21
+2020,Quebec,All employees,Forging and stamping,,0.06
+2020,Quebec,All employees,Cutlery and hand tool manufacturing,,0.02
+2020,Quebec,All employees,Architectural and structural metals manufacturing,,0.48
+2020,Quebec,All employees,"Boiler, tank and shipping container manufacturing",,0.07
+2020,Quebec,All employees,Hardware manufacturing,,0.03
+2020,Quebec,All employees,Spring and wire product manufacturing,,0.03
+2020,Quebec,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.25
+2020,Quebec,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2020,Quebec,All employees,Other fabricated metal product manufacturing,,0.19
+2020,Quebec,All employees,Machinery manufacturing,,0.95
+2020,Quebec,All employees,"Agricultural, construction and mining machinery manufacturing",,0.13
+2020,Quebec,All employees,Industrial machinery manufacturing,,0.17
+2020,Quebec,All employees,Commercial and service industry machinery manufacturing,,0.19
+2020,Quebec,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.16
+2020,Quebec,All employees,Metalworking machinery manufacturing,,0.05
+2020,Quebec,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.06
+2020,Quebec,All employees,Other general-purpose machinery manufacturing,,0.19
+2020,Quebec,All employees,Computer and electronic product manufacturing,,0.43
+2020,Quebec,All employees,Communications equipment manufacturing,,0.07
+2020,Quebec,All employees,Audio and video equipment manufacturing,,0.01
+2020,Quebec,All employees,Semiconductor and other electronic component manufacturing,,0.15
+2020,Quebec,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.19
+2020,Quebec,All employees,Manufacturing and reproducing magnetic and optical media,,0
+2020,Quebec,All employees,"Electrical equipment, appliance and component manufacturing",,0.33
+2020,Quebec,All employees,Electric lighting equipment manufacturing,,0.08
+2020,Quebec,All employees,Household appliance manufacturing,,0.01
+2020,Quebec,All employees,Electrical equipment manufacturing,,0.12
+2020,Quebec,All employees,Other electrical equipment and component manufacturing,,0.11
+2020,Quebec,All employees,Transportation equipment manufacturing,,1.4
+2020,Quebec,All employees,Motor vehicle body and trailer manufacturing,,0.13
+2020,Quebec,All employees,Motor vehicle parts manufacturing,,0.12
+2020,Quebec,All employees,Aerospace product and parts manufacturing,,0.82
+2020,Quebec,All employees,Other transportation equipment manufacturing,,0.12
+2020,Quebec,All employees,Furniture and related product manufacturing,,0.57
+2020,Quebec,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.4
+2020,Quebec,All employees,Office furniture (including fixtures) manufacturing,,0.14
+2020,Quebec,All employees,Other furniture-related product manufacturing,,0.04
+2020,Quebec,All employees,Miscellaneous manufacturing,,0.43
+2020,Quebec,All employees,Medical equipment and supplies manufacturing,,0.14
+2020,Quebec,All employees,Other miscellaneous manufacturing,,0.29
+2020,Quebec,Salaried employees paid a fixed salary,Manufacturing,,3.07
+2020,Quebec,Salaried employees paid a fixed salary,Non-durable goods,,1.2
+2020,Quebec,Salaried employees paid a fixed salary,Food manufacturing,,0.32
+2020,Quebec,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2020,Quebec,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Other food manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Textile mills,,0.02
+2020,Quebec,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2020,Quebec,Salaried employees paid a fixed salary,Fabric mills,,
+2020,Quebec,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
+2020,Quebec,Salaried employees paid a fixed salary,Textile product mills,,
+2020,Quebec,Salaried employees paid a fixed salary,Textile furnishings mills,,
+2020,Quebec,Salaried employees paid a fixed salary,Other textile product mills,,
+2020,Quebec,Salaried employees paid a fixed salary,Clothing manufacturing,,0.06
+2020,Quebec,Salaried employees paid a fixed salary,Clothing knitting mills,,
+2020,Quebec,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,0.05
+2020,Quebec,Salaried employees paid a fixed salary,Clothing accessories and other clothing manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2020,Quebec,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Paper manufacturing,,0.14
+2020,Quebec,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2020,Quebec,Salaried employees paid a fixed salary,Printing and related support activities,,0.07
+2020,Quebec,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Chemical manufacturing,,0.28
+2020,Quebec,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2020,Quebec,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
+2020,Quebec,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2020,Quebec,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.13
+2020,Quebec,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.11
+2020,Quebec,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Durable goods,,1.86
+2020,Quebec,Salaried employees paid a fixed salary,Wood product manufacturing,,0.1
+2020,Quebec,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2020,Quebec,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2020,Quebec,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.09
+2020,Quebec,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2020,Quebec,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2020,Quebec,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2020,Quebec,Salaried employees paid a fixed salary,Foundries,,
+2020,Quebec,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.21
+2020,Quebec,Salaried employees paid a fixed salary,Forging and stamping,,
+2020,Quebec,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.1
+2020,Quebec,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2020,Quebec,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Machinery manufacturing,,0.32
+2020,Quebec,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2020,Quebec,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2020,Quebec,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2020,Quebec,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,Quebec,Salaried employees paid a fixed salary,Manufacturing and reproducing magnetic and optical media,,
+2020,Quebec,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2020,Quebec,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.43
+2020,Quebec,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2020,Quebec,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2020,Quebec,Employees paid by the hour,Manufacturing,,8.23
+2020,Quebec,Employees paid by the hour,Non-durable goods,,3.41
+2020,Quebec,Employees paid by the hour,Food manufacturing,,1.43
+2020,Quebec,Employees paid by the hour,Animal food manufacturing,,
+2020,Quebec,Employees paid by the hour,Grain and oilseed milling,,
+2020,Quebec,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2020,Quebec,Employees paid by the hour,Dairy product manufacturing,,
+2020,Quebec,Employees paid by the hour,Meat product manufacturing,,
+2020,Quebec,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2020,Quebec,Employees paid by the hour,Other food manufacturing,,
+2020,Quebec,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2020,Quebec,Employees paid by the hour,Cannabis product manufacturing,,
+2020,Quebec,Employees paid by the hour,Textile mills,,0.06
+2020,Quebec,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2020,Quebec,Employees paid by the hour,Fabric mills,,
+2020,Quebec,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
+2020,Quebec,Employees paid by the hour,Textile product mills,,
+2020,Quebec,Employees paid by the hour,Textile furnishings mills,,
+2020,Quebec,Employees paid by the hour,Other textile product mills,,
+2020,Quebec,Employees paid by the hour,Clothing manufacturing,,0.15
+2020,Quebec,Employees paid by the hour,Clothing knitting mills,,
+2020,Quebec,Employees paid by the hour,Cut and sew clothing manufacturing,,0.12
+2020,Quebec,Employees paid by the hour,Clothing accessories and other clothing manufacturing,,
+2020,Quebec,Employees paid by the hour,Leather and hide tanning and finishing,,
+2020,Quebec,Employees paid by the hour,Footwear manufacturing,,
+2020,Quebec,Employees paid by the hour,Other leather and allied product manufacturing,,
+2020,Quebec,Employees paid by the hour,Paper manufacturing,,0.36
+2020,Quebec,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2020,Quebec,Employees paid by the hour,Printing and related support activities,,0.19
+2020,Quebec,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2020,Quebec,Employees paid by the hour,Chemical manufacturing,,0.36
+2020,Quebec,Employees paid by the hour,Basic chemical manufacturing,,
+2020,Quebec,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2020,Quebec,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2020,Quebec,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
+2020,Quebec,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2020,Quebec,Employees paid by the hour,Other chemical product manufacturing,,
+2020,Quebec,Employees paid by the hour,Plastics and rubber products manufacturing,,0.59
+2020,Quebec,Employees paid by the hour,Plastic product manufacturing,,0.51
+2020,Quebec,Employees paid by the hour,Rubber product manufacturing,,
+2020,Quebec,Employees paid by the hour,Durable goods,,4.82
+2020,Quebec,Employees paid by the hour,Wood product manufacturing,,0.63
+2020,Quebec,Employees paid by the hour,Sawmills and wood preservation,,
+2020,Quebec,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2020,Quebec,Employees paid by the hour,Other wood product manufacturing,,0.29
+2020,Quebec,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.29
+2020,Quebec,Employees paid by the hour,Clay product and refractory manufacturing,,
+2020,Quebec,Employees paid by the hour,Glass and glass product manufacturing,,
+2020,Quebec,Employees paid by the hour,Cement and concrete product manufacturing,,
+2020,Quebec,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2020,Quebec,Employees paid by the hour,Primary metal manufacturing,,
+2020,Quebec,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2020,Quebec,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2020,Quebec,Employees paid by the hour,Alumina and aluminum production and processing,,
+2020,Quebec,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2020,Quebec,Employees paid by the hour,Foundries,,
+2020,Quebec,Employees paid by the hour,Fabricated metal product manufacturing,,0.94
+2020,Quebec,Employees paid by the hour,Forging and stamping,,
+2020,Quebec,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2020,Quebec,Employees paid by the hour,Architectural and structural metals manufacturing,,0.36
+2020,Quebec,Employees paid by the hour,Hardware manufacturing,,
+2020,Quebec,Employees paid by the hour,Spring and wire product manufacturing,,
+2020,Quebec,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2020,Quebec,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2020,Quebec,Employees paid by the hour,Machinery manufacturing,,0.59
+2020,Quebec,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2020,Quebec,Employees paid by the hour,Industrial machinery manufacturing,,
+2020,Quebec,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2020,Quebec,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2020,Quebec,Employees paid by the hour,Metalworking machinery manufacturing,,
+2020,Quebec,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2020,Quebec,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2020,Quebec,Employees paid by the hour,Communications equipment manufacturing,,
+2020,Quebec,Employees paid by the hour,Audio and video equipment manufacturing,,
+2020,Quebec,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2020,Quebec,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,Quebec,Employees paid by the hour,Manufacturing and reproducing magnetic and optical media,,
+2020,Quebec,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2020,Quebec,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2020,Quebec,Employees paid by the hour,Household appliance manufacturing,,
+2020,Quebec,Employees paid by the hour,Electrical equipment manufacturing,,
+2020,Quebec,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2020,Quebec,Employees paid by the hour,Transportation equipment manufacturing,,0.96
+2020,Quebec,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2020,Quebec,Employees paid by the hour,Other transportation equipment manufacturing,,
+2020,Quebec,Employees paid by the hour,Furniture and related product manufacturing,,
+2020,Quebec,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2020,Quebec,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2020,Quebec,Employees paid by the hour,Miscellaneous manufacturing,,
+2020,Quebec,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2020,Quebec,Employees paid by the hour,Other miscellaneous manufacturing,,
+2020,Ontario,All employees,Manufacturing,35,10.49
+2020,Ontario,All employees,Non-durable goods,,4.04
+2020,Ontario,All employees,Food manufacturing,,1.41
+2020,Ontario,All employees,Animal food manufacturing,,0.07
+2020,Ontario,All employees,Grain and oilseed milling,,0.06
+2020,Ontario,All employees,Sugar and confectionery product manufacturing,,0.07
+2020,Ontario,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.1
+2020,Ontario,All employees,Dairy product manufacturing,,0.16
+2020,Ontario,All employees,Meat product manufacturing,,0.35
+2020,Ontario,All employees,Seafood product preparation and packaging,,0.01
+2020,Ontario,All employees,Bakeries and tortilla manufacturing,,0.38
+2020,Ontario,All employees,Other food manufacturing,,0.22
+2020,Ontario,All employees,Beverage and tobacco product manufacturing,,0.33
+2020,Ontario,All employees,Cannabis product manufacturing,,
+2020,Ontario,All employees,Textile mills,,0.04
+2020,Ontario,All employees,"Fibre, yarn and thread mills",,0
+2020,Ontario,All employees,Fabric mills,,0.03
+2020,Ontario,All employees,Textile and fabric finishing and fabric coating,,0.01
+2020,Ontario,All employees,Textile product mills,,0.05
+2020,Ontario,All employees,Textile furnishings mills,,0.01
+2020,Ontario,All employees,Other textile product mills,,0.03
+2020,Ontario,All employees,Clothing manufacturing,,0.07
+2020,Ontario,All employees,Clothing knitting mills,,
+2020,Ontario,All employees,Cut and sew clothing manufacturing,,0.05
+2020,Ontario,All employees,Clothing accessories and other clothing manufacturing,,
+2020,Ontario,All employees,Leather and allied product manufacturing,,0.01
+2020,Ontario,All employees,Leather and hide tanning and finishing,,0
+2020,Ontario,All employees,Footwear manufacturing,,0
+2020,Ontario,All employees,Other leather and allied product manufacturing,,0.01
+2020,Ontario,All employees,Paper manufacturing,,0.26
+2020,Ontario,All employees,"Pulp, paper and paperboard mills",,0.05
+2020,Ontario,All employees,Converted paper product manufacturing,,0.2
+2020,Ontario,All employees,Printing and related support activities,,0.33
+2020,Ontario,All employees,Petroleum and coal product manufacturing,,0.09
+2020,Ontario,All employees,Chemical manufacturing,,0.69
+2020,Ontario,All employees,Basic chemical manufacturing,,0.09
+2020,Ontario,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.04
+2020,Ontario,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.03
+2020,Ontario,All employees,Pharmaceutical and medicine manufacturing,,0.26
+2020,Ontario,All employees,"Paint, coating and adhesive manufacturing",,0.05
+2020,Ontario,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.14
+2020,Ontario,All employees,Other chemical product manufacturing,,0.07
+2020,Ontario,All employees,Plastics and rubber products manufacturing,,0.75
+2020,Ontario,All employees,Plastic product manufacturing,,0.67
+2020,Ontario,All employees,Rubber product manufacturing,,0.08
+2020,Ontario,All employees,Durable goods,,6.46
+2020,Ontario,All employees,Wood product manufacturing,,0.27
+2020,Ontario,All employees,Sawmills and wood preservation,,0.05
+2020,Ontario,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.07
+2020,Ontario,All employees,Other wood product manufacturing,,0.15
+2020,Ontario,All employees,Non-metallic mineral product manufacturing,,0.33
+2020,Ontario,All employees,Clay product and refractory manufacturing,,0.02
+2020,Ontario,All employees,Glass and glass product manufacturing,,0.04
+2020,Ontario,All employees,Cement and concrete product manufacturing,,0.19
+2020,Ontario,All employees,Lime and gypsum product manufacturing,,0.01
+2020,Ontario,All employees,Other non-metallic mineral product manufacturing,,0.07
+2020,Ontario,All employees,Primary metal manufacturing,,0.44
+2020,Ontario,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.19
+2020,Ontario,All employees,Steel product manufacturing from purchased steel,,0.07
+2020,Ontario,All employees,Alumina and aluminum production and processing,,0.04
+2020,Ontario,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
+2020,Ontario,All employees,Foundries,,0.06
+2020,Ontario,All employees,Fabricated metal product manufacturing,,1.07
+2020,Ontario,All employees,Forging and stamping,,0.04
+2020,Ontario,All employees,Cutlery and hand tool manufacturing,,0.03
+2020,Ontario,All employees,Architectural and structural metals manufacturing,,0.36
+2020,Ontario,All employees,"Boiler, tank and shipping container manufacturing",,0.07
+2020,Ontario,All employees,Hardware manufacturing,,0.06
+2020,Ontario,All employees,Spring and wire product manufacturing,,0.03
+2020,Ontario,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.22
+2020,Ontario,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.09
+2020,Ontario,All employees,Other fabricated metal product manufacturing,,0.16
+2020,Ontario,All employees,Machinery manufacturing,,0.97
+2020,Ontario,All employees,"Agricultural, construction and mining machinery manufacturing",,0.14
+2020,Ontario,All employees,Industrial machinery manufacturing,,0.12
+2020,Ontario,All employees,Commercial and service industry machinery manufacturing,,0.1
+2020,Ontario,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.1
+2020,Ontario,All employees,Metalworking machinery manufacturing,,0.24
+2020,Ontario,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
+2020,Ontario,All employees,Other general-purpose machinery manufacturing,,0.26
+2020,Ontario,All employees,Computer and electronic product manufacturing,,0.47
+2020,Ontario,All employees,Computer and peripheral equipment manufacturing,,0.06
+2020,Ontario,All employees,Communications equipment manufacturing,,0.1
+2020,Ontario,All employees,Audio and video equipment manufacturing,,0.01
+2020,Ontario,All employees,Semiconductor and other electronic component manufacturing,,0.13
+2020,Ontario,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.16
+2020,Ontario,All employees,"Electrical equipment, appliance and component manufacturing",,0.27
+2020,Ontario,All employees,Electric lighting equipment manufacturing,,0.03
+2020,Ontario,All employees,Household appliance manufacturing,,0.02
+2020,Ontario,All employees,Electrical equipment manufacturing,,0.12
+2020,Ontario,All employees,Other electrical equipment and component manufacturing,,0.1
+2020,Ontario,All employees,Transportation equipment manufacturing,,1.84
+2020,Ontario,All employees,Motor vehicle manufacturing,,0.5
+2020,Ontario,All employees,Motor vehicle body and trailer manufacturing,,0.06
+2020,Ontario,All employees,Motor vehicle parts manufacturing,,0.99
+2020,Ontario,All employees,Aerospace product and parts manufacturing,,0.17
+2020,Ontario,All employees,Railroad rolling stock manufacturing,,0.05
+2020,Ontario,All employees,Furniture and related product manufacturing,,0.41
+2020,Ontario,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.19
+2020,Ontario,All employees,Office furniture (including fixtures) manufacturing,,0.19
+2020,Ontario,All employees,Other furniture-related product manufacturing,,0.03
+2020,Ontario,All employees,Miscellaneous manufacturing,,0.39
+2020,Ontario,All employees,Medical equipment and supplies manufacturing,,0.15
+2020,Ontario,All employees,Other miscellaneous manufacturing,,0.24
+2020,Ontario,Salaried employees paid a fixed salary,Manufacturing,,3.04
+2020,Ontario,Salaried employees paid a fixed salary,Non-durable goods,,1.27
+2020,Ontario,Salaried employees paid a fixed salary,Food manufacturing,,0.32
+2020,Ontario,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2020,Ontario,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Dairy product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.07
+2020,Ontario,Salaried employees paid a fixed salary,Other food manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Textile mills,,
+2020,Ontario,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
+2020,Ontario,Salaried employees paid a fixed salary,Fabric mills,,
+2020,Ontario,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
+2020,Ontario,Salaried employees paid a fixed salary,Textile furnishings mills,,
+2020,Ontario,Salaried employees paid a fixed salary,Other textile product mills,,
+2020,Ontario,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2020,Ontario,Salaried employees paid a fixed salary,Footwear manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Paper manufacturing,,0.07
+2020,Ontario,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2020,Ontario,Salaried employees paid a fixed salary,Printing and related support activities,,
+2020,Ontario,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Chemical manufacturing,,0.38
+2020,Ontario,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2020,Ontario,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2020,Ontario,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
+2020,Ontario,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2020,Ontario,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.18
+2020,Ontario,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.16
+2020,Ontario,Salaried employees paid a fixed salary,Rubber product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Durable goods,,1.78
+2020,Ontario,Salaried employees paid a fixed salary,Wood product manufacturing,,0.03
+2020,Ontario,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2020,Ontario,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2020,Ontario,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
+2020,Ontario,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
+2020,Ontario,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
+2020,Ontario,Salaried employees paid a fixed salary,Foundries,,
+2020,Ontario,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.2
+2020,Ontario,Salaried employees paid a fixed salary,Forging and stamping,,
+2020,Ontario,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.08
+2020,Ontario,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2020,Ontario,Salaried employees paid a fixed salary,Hardware manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2020,Ontario,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
+2020,Ontario,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Machinery manufacturing,,0.28
+2020,Ontario,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2020,Ontario,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2020,Ontario,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,0.06
+2020,Ontario,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2020,Ontario,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.28
+2020,Ontario,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,Ontario,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.1
+2020,Ontario,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Household appliance manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,0.27
+2020,Ontario,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,0.06
+2020,Ontario,Salaried employees paid a fixed salary,Railroad rolling stock manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.05
+2020,Ontario,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.17
+2020,Ontario,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2020,Ontario,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.11
+2020,Ontario,Employees paid by the hour,Manufacturing,,7.04
+2020,Ontario,Employees paid by the hour,Non-durable goods,,2.63
+2020,Ontario,Employees paid by the hour,Food manufacturing,,1.07
+2020,Ontario,Employees paid by the hour,Animal food manufacturing,,
+2020,Ontario,Employees paid by the hour,Grain and oilseed milling,,
+2020,Ontario,Employees paid by the hour,Sugar and confectionery product manufacturing,,
+2020,Ontario,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2020,Ontario,Employees paid by the hour,Dairy product manufacturing,,
+2020,Ontario,Employees paid by the hour,Meat product manufacturing,,
+2020,Ontario,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.3
+2020,Ontario,Employees paid by the hour,Other food manufacturing,,
+2020,Ontario,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2020,Ontario,Employees paid by the hour,Cannabis product manufacturing,,
+2020,Ontario,Employees paid by the hour,Textile mills,,
+2020,Ontario,Employees paid by the hour,"Fibre, yarn and thread mills",,
+2020,Ontario,Employees paid by the hour,Fabric mills,,
+2020,Ontario,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
+2020,Ontario,Employees paid by the hour,Textile furnishings mills,,
+2020,Ontario,Employees paid by the hour,Other textile product mills,,
+2020,Ontario,Employees paid by the hour,Clothing manufacturing,,
+2020,Ontario,Employees paid by the hour,Leather and allied product manufacturing,,
+2020,Ontario,Employees paid by the hour,Leather and hide tanning and finishing,,
+2020,Ontario,Employees paid by the hour,Footwear manufacturing,,
+2020,Ontario,Employees paid by the hour,Other leather and allied product manufacturing,,
+2020,Ontario,Employees paid by the hour,Paper manufacturing,,0.18
+2020,Ontario,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2020,Ontario,Employees paid by the hour,Printing and related support activities,,
+2020,Ontario,Employees paid by the hour,Petroleum and coal product manufacturing,,
+2020,Ontario,Employees paid by the hour,Chemical manufacturing,,0.31
+2020,Ontario,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
+2020,Ontario,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2020,Ontario,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
+2020,Ontario,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2020,Ontario,Employees paid by the hour,Other chemical product manufacturing,,
+2020,Ontario,Employees paid by the hour,Plastics and rubber products manufacturing,,0.52
+2020,Ontario,Employees paid by the hour,Plastic product manufacturing,,0.47
+2020,Ontario,Employees paid by the hour,Rubber product manufacturing,,
+2020,Ontario,Employees paid by the hour,Durable goods,,4.41
+2020,Ontario,Employees paid by the hour,Wood product manufacturing,,0.22
+2020,Ontario,Employees paid by the hour,Sawmills and wood preservation,,
+2020,Ontario,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2020,Ontario,Employees paid by the hour,Other wood product manufacturing,,0.12
+2020,Ontario,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2020,Ontario,Employees paid by the hour,Clay product and refractory manufacturing,,
+2020,Ontario,Employees paid by the hour,Glass and glass product manufacturing,,
+2020,Ontario,Employees paid by the hour,Cement and concrete product manufacturing,,
+2020,Ontario,Employees paid by the hour,Lime and gypsum product manufacturing,,
+2020,Ontario,Employees paid by the hour,Primary metal manufacturing,,
+2020,Ontario,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
+2020,Ontario,Employees paid by the hour,Steel product manufacturing from purchased steel,,
+2020,Ontario,Employees paid by the hour,Alumina and aluminum production and processing,,
+2020,Ontario,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
+2020,Ontario,Employees paid by the hour,Foundries,,
+2020,Ontario,Employees paid by the hour,Fabricated metal product manufacturing,,0.81
+2020,Ontario,Employees paid by the hour,Forging and stamping,,
+2020,Ontario,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2020,Ontario,Employees paid by the hour,Architectural and structural metals manufacturing,,0.26
+2020,Ontario,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2020,Ontario,Employees paid by the hour,Hardware manufacturing,,
+2020,Ontario,Employees paid by the hour,Spring and wire product manufacturing,,
+2020,Ontario,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.18
+2020,Ontario,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
+2020,Ontario,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2020,Ontario,Employees paid by the hour,Machinery manufacturing,,0.63
+2020,Ontario,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2020,Ontario,Employees paid by the hour,Industrial machinery manufacturing,,
+2020,Ontario,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
+2020,Ontario,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2020,Ontario,Employees paid by the hour,Metalworking machinery manufacturing,,0.16
+2020,Ontario,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2020,Ontario,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2020,Ontario,Employees paid by the hour,Computer and electronic product manufacturing,,0.16
+2020,Ontario,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
+2020,Ontario,Employees paid by the hour,Communications equipment manufacturing,,
+2020,Ontario,Employees paid by the hour,Audio and video equipment manufacturing,,
+2020,Ontario,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2020,Ontario,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,Ontario,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.15
+2020,Ontario,Employees paid by the hour,Electric lighting equipment manufacturing,,
+2020,Ontario,Employees paid by the hour,Household appliance manufacturing,,
+2020,Ontario,Employees paid by the hour,Electrical equipment manufacturing,,
+2020,Ontario,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2020,Ontario,Employees paid by the hour,Transportation equipment manufacturing,,
+2020,Ontario,Employees paid by the hour,Motor vehicle manufacturing,,
+2020,Ontario,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2020,Ontario,Employees paid by the hour,Motor vehicle parts manufacturing,,0.71
+2020,Ontario,Employees paid by the hour,Aerospace product and parts manufacturing,,0.11
+2020,Ontario,Employees paid by the hour,Railroad rolling stock manufacturing,,
+2020,Ontario,Employees paid by the hour,Furniture and related product manufacturing,,0.33
+2020,Ontario,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2020,Ontario,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2020,Ontario,Employees paid by the hour,Miscellaneous manufacturing,,0.18
+2020,Ontario,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2020,Ontario,Employees paid by the hour,Other miscellaneous manufacturing,,0.1
+2020,Manitoba,All employees,Manufacturing,46,9.4
+2020,Manitoba,All employees,Non-durable goods,,4.27
+2020,Manitoba,All employees,Food manufacturing,,1.88
+2020,Manitoba,All employees,Animal food manufacturing,,0.07
+2020,Manitoba,All employees,Meat product manufacturing,,0.95
+2020,Manitoba,All employees,Bakeries and tortilla manufacturing,,0.23
+2020,Manitoba,All employees,Beverage and tobacco product manufacturing,,0.19
+2020,Manitoba,All employees,Cannabis product manufacturing,,
+2020,Manitoba,All employees,Textile and fabric finishing and fabric coating,,
+2020,Manitoba,All employees,Other textile product mills,,
+2020,Manitoba,All employees,Cut and sew clothing manufacturing,,0.26
+2020,Manitoba,All employees,Leather and hide tanning and finishing,,
+2020,Manitoba,All employees,Paper manufacturing,,0.23
+2020,Manitoba,All employees,"Pulp, paper and paperboard mills",,
+2020,Manitoba,All employees,Printing and related support activities,,0.5
+2020,Manitoba,All employees,Chemical manufacturing,,0.57
+2020,Manitoba,All employees,Basic chemical manufacturing,,0.08
+2020,Manitoba,All employees,Durable goods,,5.13
+2020,Manitoba,All employees,Wood product manufacturing,,0.32
+2020,Manitoba,All employees,Sawmills and wood preservation,,0.06
+2020,Manitoba,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.06
+2020,Manitoba,All employees,Other wood product manufacturing,,0.21
+2020,Manitoba,All employees,Non-metallic mineral product manufacturing,,0.26
+2020,Manitoba,All employees,Cement and concrete product manufacturing,,0.18
+2020,Manitoba,All employees,Other non-metallic mineral product manufacturing,,0.05
+2020,Manitoba,All employees,Primary metal manufacturing,,0.46
+2020,Manitoba,All employees,Foundries,,
+2020,Manitoba,All employees,Fabricated metal product manufacturing,,0.75
+2020,Manitoba,All employees,Architectural and structural metals manufacturing,,0.29
+2020,Manitoba,All employees,"Boiler, tank and shipping container manufacturing",,0.13
+2020,Manitoba,All employees,Spring and wire product manufacturing,,
+2020,Manitoba,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
+2020,Manitoba,All employees,Machinery manufacturing,,0.87
+2020,Manitoba,All employees,"Agricultural, construction and mining machinery manufacturing",,0.56
+2020,Manitoba,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.07
+2020,Manitoba,All employees,Other general-purpose machinery manufacturing,,0.12
+2020,Manitoba,All employees,Computer and electronic product manufacturing,,0.08
+2020,Manitoba,All employees,Semiconductor and other electronic component manufacturing,,0.04
+2020,Manitoba,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,Manitoba,All employees,Electrical equipment manufacturing,,
+2020,Manitoba,All employees,Transportation equipment manufacturing,,1.46
+2020,Manitoba,All employees,Motor vehicle body and trailer manufacturing,,0.34
+2020,Manitoba,All employees,Aerospace product and parts manufacturing,,0.69
+2020,Manitoba,All employees,Furniture and related product manufacturing,,0.54
+2020,Manitoba,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.49
+2020,Manitoba,All employees,Office furniture (including fixtures) manufacturing,,
+2020,Manitoba,All employees,Other furniture-related product manufacturing,,
+2020,Manitoba,All employees,Miscellaneous manufacturing,,0.26
+2020,Manitoba,All employees,Medical equipment and supplies manufacturing,,0.1
+2020,Manitoba,All employees,Other miscellaneous manufacturing,,0.16
+2020,Manitoba,Salaried employees paid a fixed salary,Manufacturing,,2.29
+2020,Manitoba,Salaried employees paid a fixed salary,Non-durable goods,,1.06
+2020,Manitoba,Salaried employees paid a fixed salary,Food manufacturing,,0.37
+2020,Manitoba,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Meat product manufacturing,,0.16
+2020,Manitoba,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
+2020,Manitoba,Salaried employees paid a fixed salary,Other textile product mills,,
+2020,Manitoba,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Paper manufacturing,,0.05
+2020,Manitoba,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2020,Manitoba,Salaried employees paid a fixed salary,Printing and related support activities,,0.13
+2020,Manitoba,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Durable goods,,1.23
+2020,Manitoba,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2020,Manitoba,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2020,Manitoba,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Primary metal manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2020,Manitoba,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2020,Manitoba,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,Manitoba,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.06
+2020,Manitoba,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.05
+2020,Manitoba,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2020,Manitoba,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2020,Manitoba,Employees paid by the hour,Manufacturing,,6.77
+2020,Manitoba,Employees paid by the hour,Non-durable goods,,3.06
+2020,Manitoba,Employees paid by the hour,Food manufacturing,,1.48
+2020,Manitoba,Employees paid by the hour,Animal food manufacturing,,
+2020,Manitoba,Employees paid by the hour,Meat product manufacturing,,0.78
+2020,Manitoba,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2020,Manitoba,Employees paid by the hour,Cannabis product manufacturing,,
+2020,Manitoba,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
+2020,Manitoba,Employees paid by the hour,Other textile product mills,,
+2020,Manitoba,Employees paid by the hour,Clothing manufacturing,,
+2020,Manitoba,Employees paid by the hour,Cut and sew clothing manufacturing,,
+2020,Manitoba,Employees paid by the hour,Leather and hide tanning and finishing,,
+2020,Manitoba,Employees paid by the hour,Paper manufacturing,,0.18
+2020,Manitoba,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2020,Manitoba,Employees paid by the hour,Printing and related support activities,,0.33
+2020,Manitoba,Employees paid by the hour,Chemical manufacturing,,
+2020,Manitoba,Employees paid by the hour,Basic chemical manufacturing,,
+2020,Manitoba,Employees paid by the hour,Durable goods,,3.71
+2020,Manitoba,Employees paid by the hour,Wood product manufacturing,,
+2020,Manitoba,Employees paid by the hour,Sawmills and wood preservation,,
+2020,Manitoba,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2020,Manitoba,Employees paid by the hour,Other wood product manufacturing,,
+2020,Manitoba,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2020,Manitoba,Employees paid by the hour,Cement and concrete product manufacturing,,
+2020,Manitoba,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2020,Manitoba,Employees paid by the hour,Primary metal manufacturing,,
+2020,Manitoba,Employees paid by the hour,Fabricated metal product manufacturing,,
+2020,Manitoba,Employees paid by the hour,Architectural and structural metals manufacturing,,
+2020,Manitoba,Employees paid by the hour,Machinery manufacturing,,
+2020,Manitoba,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2020,Manitoba,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
+2020,Manitoba,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2020,Manitoba,Employees paid by the hour,Computer and electronic product manufacturing,,
+2020,Manitoba,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,Manitoba,Employees paid by the hour,Electrical equipment manufacturing,,
+2020,Manitoba,Employees paid by the hour,Transportation equipment manufacturing,,
+2020,Manitoba,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2020,Manitoba,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2020,Manitoba,Employees paid by the hour,Furniture and related product manufacturing,,0.45
+2020,Manitoba,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.41
+2020,Manitoba,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2020,Manitoba,Employees paid by the hour,Other furniture-related product manufacturing,,
+2020,Manitoba,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2020,Manitoba,Employees paid by the hour,Other miscellaneous manufacturing,,
+2020,Saskatchewan,All employees,Manufacturing,47,5.2
+2020,Saskatchewan,All employees,Non-durable goods,,2.28
+2020,Saskatchewan,All employees,Food manufacturing,,1.09
+2020,Saskatchewan,All employees,Animal food manufacturing,,0.11
+2020,Saskatchewan,All employees,Grain and oilseed milling,,0.29
+2020,Saskatchewan,All employees,Meat product manufacturing,,0.47
+2020,Saskatchewan,All employees,Beverage and tobacco product manufacturing,,0.22
+2020,Saskatchewan,All employees,Cannabis product manufacturing,,
+2020,Saskatchewan,All employees,Printing and related support activities,,0.09
+2020,Saskatchewan,All employees,Chemical manufacturing,,0.33
+2020,Saskatchewan,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.13
+2020,Saskatchewan,All employees,Durable goods,,2.92
+2020,Saskatchewan,All employees,Wood product manufacturing,,0.31
+2020,Saskatchewan,All employees,Sawmills and wood preservation,,0.09
+2020,Saskatchewan,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.17
+2020,Saskatchewan,All employees,Other wood product manufacturing,,0.05
+2020,Saskatchewan,All employees,Cement and concrete product manufacturing,,0.15
+2020,Saskatchewan,All employees,Fabricated metal product manufacturing,,0.64
+2020,Saskatchewan,All employees,Architectural and structural metals manufacturing,,0.25
+2020,Saskatchewan,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.06
+2020,Saskatchewan,All employees,Machinery manufacturing,,1.01
+2020,Saskatchewan,All employees,"Agricultural, construction and mining machinery manufacturing",,0.86
+2020,Saskatchewan,All employees,Computer and electronic product manufacturing,,
+2020,Saskatchewan,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,Saskatchewan,All employees,Motor vehicle body and trailer manufacturing,,0.21
+2020,Saskatchewan,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.09
+2020,Saskatchewan,All employees,Miscellaneous manufacturing,,0.11
+2020,Saskatchewan,All employees,Medical equipment and supplies manufacturing,,0.04
+2020,Saskatchewan,All employees,Other miscellaneous manufacturing,,0.07
+2020,Saskatchewan,Salaried employees paid a fixed salary,Manufacturing,,1.42
+2020,Saskatchewan,Salaried employees paid a fixed salary,Non-durable goods,,0.71
+2020,Saskatchewan,Salaried employees paid a fixed salary,Food manufacturing,,0.22
+2020,Saskatchewan,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2020,Saskatchewan,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2020,Saskatchewan,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,Saskatchewan,Salaried employees paid a fixed salary,Printing and related support activities,,
+2020,Saskatchewan,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2020,Saskatchewan,Salaried employees paid a fixed salary,Durable goods,,0.71
+2020,Saskatchewan,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
+2020,Saskatchewan,Salaried employees paid a fixed salary,Machinery manufacturing,,
+2020,Saskatchewan,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2020,Saskatchewan,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2020,Saskatchewan,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
+2020,Saskatchewan,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,Saskatchewan,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2020,Saskatchewan,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2020,Saskatchewan,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2020,Saskatchewan,Employees paid by the hour,Manufacturing,,3.6
+2020,Saskatchewan,Employees paid by the hour,Non-durable goods,,1.51
+2020,Saskatchewan,Employees paid by the hour,Food manufacturing,,0.84
+2020,Saskatchewan,Employees paid by the hour,Grain and oilseed milling,,
+2020,Saskatchewan,Employees paid by the hour,Meat product manufacturing,,
+2020,Saskatchewan,Employees paid by the hour,Cannabis product manufacturing,,
+2020,Saskatchewan,Employees paid by the hour,Printing and related support activities,,
+2020,Saskatchewan,Employees paid by the hour,Chemical manufacturing,,
+2020,Saskatchewan,Employees paid by the hour,Durable goods,,2.09
+2020,Saskatchewan,Employees paid by the hour,Fabricated metal product manufacturing,,
+2020,Saskatchewan,Employees paid by the hour,Machinery manufacturing,,
+2020,Saskatchewan,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2020,Saskatchewan,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2020,Saskatchewan,Employees paid by the hour,Computer and electronic product manufacturing,,
+2020,Saskatchewan,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,Saskatchewan,Employees paid by the hour,Transportation equipment manufacturing,,
+2020,Saskatchewan,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
+2020,Saskatchewan,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2020,Alberta,All employees,Manufacturing,48,6.13
+2020,Alberta,All employees,Non-durable goods,,2.73
+2020,Alberta,All employees,Food manufacturing,,1.22
+2020,Alberta,All employees,Animal food manufacturing,,0.05
+2020,Alberta,All employees,Grain and oilseed milling,,0.06
+2020,Alberta,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.08
+2020,Alberta,All employees,Meat product manufacturing,,0.63
+2020,Alberta,All employees,Bakeries and tortilla manufacturing,,0.16
+2020,Alberta,All employees,Other food manufacturing,,0.15
+2020,Alberta,All employees,Beverage and tobacco product manufacturing,,0.2
+2020,Alberta,All employees,Cannabis product manufacturing,,
+2020,Alberta,All employees,Cut and sew clothing manufacturing,,0.01
+2020,Alberta,All employees,Other leather and allied product manufacturing,,
+2020,Alberta,All employees,Paper manufacturing,,0.13
+2020,Alberta,All employees,"Pulp, paper and paperboard mills",,0.1
+2020,Alberta,All employees,Converted paper product manufacturing,,0.03
+2020,Alberta,All employees,Printing and related support activities,,0.19
+2020,Alberta,All employees,Petroleum and coal product manufacturing,,0.17
+2020,Alberta,All employees,Chemical manufacturing,,0.49
+2020,Alberta,All employees,Basic chemical manufacturing,,0.17
+2020,Alberta,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.14
+2020,Alberta,All employees,Other chemical product manufacturing,,0.08
+2020,Alberta,All employees,Plastics and rubber products manufacturing,,0.3
+2020,Alberta,All employees,Durable goods,,3.4
+2020,Alberta,All employees,Wood product manufacturing,,0.48
+2020,Alberta,All employees,Sawmills and wood preservation,,0.17
+2020,Alberta,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.13
+2020,Alberta,All employees,Other wood product manufacturing,,0.18
+2020,Alberta,All employees,Non-metallic mineral product manufacturing,,0.32
+2020,Alberta,All employees,Glass and glass product manufacturing,,0.02
+2020,Alberta,All employees,Cement and concrete product manufacturing,,0.22
+2020,Alberta,All employees,Other non-metallic mineral product manufacturing,,0.07
+2020,Alberta,All employees,Primary metal manufacturing,,0.14
+2020,Alberta,All employees,Fabricated metal product manufacturing,,0.94
+2020,Alberta,All employees,Forging and stamping,,
+2020,Alberta,All employees,Architectural and structural metals manufacturing,,0.42
+2020,Alberta,All employees,"Boiler, tank and shipping container manufacturing",,0.12
+2020,Alberta,All employees,Spring and wire product manufacturing,,0.03
+2020,Alberta,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.18
+2020,Alberta,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.06
+2020,Alberta,All employees,Other fabricated metal product manufacturing,,0.12
+2020,Alberta,All employees,Machinery manufacturing,,0.79
+2020,Alberta,All employees,"Agricultural, construction and mining machinery manufacturing",,0.34
+2020,Alberta,All employees,Industrial machinery manufacturing,,0.04
+2020,Alberta,All employees,Commercial and service industry machinery manufacturing,,0.02
+2020,Alberta,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.15
+2020,Alberta,All employees,Metalworking machinery manufacturing,,0.03
+2020,Alberta,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.02
+2020,Alberta,All employees,Other general-purpose machinery manufacturing,,0.19
+2020,Alberta,All employees,Computer and electronic product manufacturing,,0.17
+2020,Alberta,All employees,Computer and peripheral equipment manufacturing,,
+2020,Alberta,All employees,Communications equipment manufacturing,,
+2020,Alberta,All employees,Semiconductor and other electronic component manufacturing,,0.04
+2020,Alberta,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.1
+2020,Alberta,All employees,"Electrical equipment, appliance and component manufacturing",,0.09
+2020,Alberta,All employees,Electrical equipment manufacturing,,0.05
+2020,Alberta,All employees,Other electrical equipment and component manufacturing,,
+2020,Alberta,All employees,Transportation equipment manufacturing,,0.11
+2020,Alberta,All employees,Motor vehicle body and trailer manufacturing,,0.06
+2020,Alberta,All employees,Motor vehicle parts manufacturing,,0.01
+2020,Alberta,All employees,Aerospace product and parts manufacturing,,0.03
+2020,Alberta,All employees,Furniture and related product manufacturing,,0.16
+2020,Alberta,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.09
+2020,Alberta,All employees,Office furniture (including fixtures) manufacturing,,0.04
+2020,Alberta,All employees,Other furniture-related product manufacturing,,0.02
+2020,Alberta,All employees,Miscellaneous manufacturing,,0.21
+2020,Alberta,All employees,Medical equipment and supplies manufacturing,,0.06
+2020,Alberta,All employees,Other miscellaneous manufacturing,,0.14
+2020,Alberta,Salaried employees paid a fixed salary,Manufacturing,,1.89
+2020,Alberta,Salaried employees paid a fixed salary,Non-durable goods,,0.96
+2020,Alberta,Salaried employees paid a fixed salary,Food manufacturing,,0.24
+2020,Alberta,Salaried employees paid a fixed salary,Grain and oilseed milling,,
+2020,Alberta,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Paper manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2020,Alberta,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Printing and related support activities,,
+2020,Alberta,Salaried employees paid a fixed salary,Chemical manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2020,Alberta,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Durable goods,,0.93
+2020,Alberta,Salaried employees paid a fixed salary,Wood product manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2020,Alberta,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.17
+2020,Alberta,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.08
+2020,Alberta,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2020,Alberta,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2020,Alberta,Salaried employees paid a fixed salary,Machinery manufacturing,,0.26
+2020,Alberta,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,0.13
+2020,Alberta,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
+2020,Alberta,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.09
+2020,Alberta,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,Alberta,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
+2020,Alberta,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.02
+2020,Alberta,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2020,Alberta,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2020,Alberta,Employees paid by the hour,Manufacturing,,4.01
+2020,Alberta,Employees paid by the hour,Non-durable goods,,1.71
+2020,Alberta,Employees paid by the hour,Food manufacturing,,0.94
+2020,Alberta,Employees paid by the hour,Grain and oilseed milling,,
+2020,Alberta,Employees paid by the hour,Meat product manufacturing,,
+2020,Alberta,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2020,Alberta,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2020,Alberta,Employees paid by the hour,Cannabis product manufacturing,,
+2020,Alberta,Employees paid by the hour,Paper manufacturing,,
+2020,Alberta,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2020,Alberta,Employees paid by the hour,Converted paper product manufacturing,,
+2020,Alberta,Employees paid by the hour,Printing and related support activities,,
+2020,Alberta,Employees paid by the hour,Chemical manufacturing,,
+2020,Alberta,Employees paid by the hour,Basic chemical manufacturing,,
+2020,Alberta,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
+2020,Alberta,Employees paid by the hour,Other chemical product manufacturing,,
+2020,Alberta,Employees paid by the hour,Plastics and rubber products manufacturing,,
+2020,Alberta,Employees paid by the hour,Durable goods,,2.3
+2020,Alberta,Employees paid by the hour,Wood product manufacturing,,
+2020,Alberta,Employees paid by the hour,Sawmills and wood preservation,,
+2020,Alberta,Employees paid by the hour,Other wood product manufacturing,,
+2020,Alberta,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2020,Alberta,Employees paid by the hour,Cement and concrete product manufacturing,,
+2020,Alberta,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2020,Alberta,Employees paid by the hour,Fabricated metal product manufacturing,,0.72
+2020,Alberta,Employees paid by the hour,Architectural and structural metals manufacturing,,0.31
+2020,Alberta,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2020,Alberta,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2020,Alberta,Employees paid by the hour,Machinery manufacturing,,0.49
+2020,Alberta,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,0.2
+2020,Alberta,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
+2020,Alberta,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2020,Alberta,Employees paid by the hour,Computer and electronic product manufacturing,,0.07
+2020,Alberta,Employees paid by the hour,Communications equipment manufacturing,,
+2020,Alberta,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,Alberta,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
+2020,Alberta,Employees paid by the hour,Electrical equipment manufacturing,,
+2020,Alberta,Employees paid by the hour,Transportation equipment manufacturing,,
+2020,Alberta,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2020,Alberta,Employees paid by the hour,Motor vehicle parts manufacturing,,
+2020,Alberta,Employees paid by the hour,Furniture and related product manufacturing,,0.12
+2020,Alberta,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.07
+2020,Alberta,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2020,Alberta,Employees paid by the hour,Other furniture-related product manufacturing,,
+2020,Alberta,Employees paid by the hour,Miscellaneous manufacturing,,
+2020,Alberta,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2020,Alberta,Employees paid by the hour,Other miscellaneous manufacturing,,
+2020,British Columbia,All employees,Manufacturing,59,6.68
+2020,British Columbia,All employees,Non-durable goods,,2.84
+2020,British Columbia,All employees,Food manufacturing,,1.22
+2020,British Columbia,All employees,Animal food manufacturing,,0.05
+2020,British Columbia,All employees,Grain and oilseed milling,,0.02
+2020,British Columbia,All employees,Sugar and confectionery product manufacturing,,0.05
+2020,British Columbia,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.08
+2020,British Columbia,All employees,Dairy product manufacturing,,0.1
+2020,British Columbia,All employees,Meat product manufacturing,,0.24
+2020,British Columbia,All employees,Seafood product preparation and packaging,,0.14
+2020,British Columbia,All employees,Bakeries and tortilla manufacturing,,0.28
+2020,British Columbia,All employees,Other food manufacturing,,0.25
+2020,British Columbia,All employees,Beverage and tobacco product manufacturing,,0.43
+2020,British Columbia,All employees,Cannabis product manufacturing,,
+2020,British Columbia,All employees,Fabric mills,,
+2020,British Columbia,All employees,Textile product mills,,0.04
+2020,British Columbia,All employees,Textile furnishings mills,,
+2020,British Columbia,All employees,Other textile product mills,,
+2020,British Columbia,All employees,Clothing manufacturing,,0.05
+2020,British Columbia,All employees,Cut and sew clothing manufacturing,,0.04
+2020,British Columbia,All employees,Other leather and allied product manufacturing,,
+2020,British Columbia,All employees,Paper manufacturing,,0.31
+2020,British Columbia,All employees,"Pulp, paper and paperboard mills",,0.25
+2020,British Columbia,All employees,Converted paper product manufacturing,,0.05
+2020,British Columbia,All employees,Printing and related support activities,,0.17
+2020,British Columbia,All employees,Petroleum and coal product manufacturing,,0.04
+2020,British Columbia,All employees,Chemical manufacturing,,0.33
+2020,British Columbia,All employees,Basic chemical manufacturing,,0.03
+2020,British Columbia,All employees,Pharmaceutical and medicine manufacturing,,0.16
+2020,British Columbia,All employees,"Paint, coating and adhesive manufacturing",,0.03
+2020,British Columbia,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.08
+2020,British Columbia,All employees,Other chemical product manufacturing,,0.03
+2020,British Columbia,All employees,Plastics and rubber products manufacturing,,0.25
+2020,British Columbia,All employees,Plastic product manufacturing,,0.22
+2020,British Columbia,All employees,Durable goods,,3.85
+2020,British Columbia,All employees,Wood product manufacturing,,1.07
+2020,British Columbia,All employees,Sawmills and wood preservation,,0.58
+2020,British Columbia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.2
+2020,British Columbia,All employees,Other wood product manufacturing,,0.29
+2020,British Columbia,All employees,Non-metallic mineral product manufacturing,,0.28
+2020,British Columbia,All employees,Glass and glass product manufacturing,,0.06
+2020,British Columbia,All employees,Cement and concrete product manufacturing,,0.16
+2020,British Columbia,All employees,Other non-metallic mineral product manufacturing,,0.05
+2020,British Columbia,All employees,Primary metal manufacturing,,0.16
+2020,British Columbia,All employees,Fabricated metal product manufacturing,,0.56
+2020,British Columbia,All employees,Forging and stamping,,0.01
+2020,British Columbia,All employees,Cutlery and hand tool manufacturing,,
+2020,British Columbia,All employees,Architectural and structural metals manufacturing,,0.28
+2020,British Columbia,All employees,"Boiler, tank and shipping container manufacturing",,0.03
+2020,British Columbia,All employees,Spring and wire product manufacturing,,0.01
+2020,British Columbia,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.09
+2020,British Columbia,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
+2020,British Columbia,All employees,Other fabricated metal product manufacturing,,0.07
+2020,British Columbia,All employees,Machinery manufacturing,,0.42
+2020,British Columbia,All employees,"Agricultural, construction and mining machinery manufacturing",,0.05
+2020,British Columbia,All employees,Industrial machinery manufacturing,,0.1
+2020,British Columbia,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.05
+2020,British Columbia,All employees,Metalworking machinery manufacturing,,0.04
+2020,British Columbia,All employees,Other general-purpose machinery manufacturing,,0.11
+2020,British Columbia,All employees,Computer and electronic product manufacturing,,0.25
+2020,British Columbia,All employees,Computer and peripheral equipment manufacturing,,0.03
+2020,British Columbia,All employees,Communications equipment manufacturing,,0.05
+2020,British Columbia,All employees,Semiconductor and other electronic component manufacturing,,0.06
+2020,British Columbia,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.11
+2020,British Columbia,All employees,"Electrical equipment, appliance and component manufacturing",,0.19
+2020,British Columbia,All employees,Electrical equipment manufacturing,,0.05
+2020,British Columbia,All employees,Other electrical equipment and component manufacturing,,0.11
+2020,British Columbia,All employees,Transportation equipment manufacturing,,0.36
+2020,British Columbia,All employees,Motor vehicle body and trailer manufacturing,,0.06
+2020,British Columbia,All employees,Aerospace product and parts manufacturing,,0.09
+2020,British Columbia,All employees,Ship and boat building,,0.12
+2020,British Columbia,All employees,Furniture and related product manufacturing,,0.25
+2020,British Columbia,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
+2020,British Columbia,All employees,Office furniture (including fixtures) manufacturing,,0.03
+2020,British Columbia,All employees,Other furniture-related product manufacturing,,0.02
+2020,British Columbia,All employees,Miscellaneous manufacturing,,0.3
+2020,British Columbia,All employees,Medical equipment and supplies manufacturing,,0.1
+2020,British Columbia,All employees,Other miscellaneous manufacturing,,0.2
+2020,British Columbia,Salaried employees paid a fixed salary,Manufacturing,,1.69
+2020,British Columbia,Salaried employees paid a fixed salary,Non-durable goods,,0.69
+2020,British Columbia,Salaried employees paid a fixed salary,Food manufacturing,,0.2
+2020,British Columbia,Salaried employees paid a fixed salary,Animal food manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Meat product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
+2020,British Columbia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Clothing manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Paper manufacturing,,0.08
+2020,British Columbia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
+2020,British Columbia,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Printing and related support activities,,0.05
+2020,British Columbia,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
+2020,British Columbia,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.05
+2020,British Columbia,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.04
+2020,British Columbia,Salaried employees paid a fixed salary,Durable goods,,
+2020,British Columbia,Salaried employees paid a fixed salary,Wood product manufacturing,,0.16
+2020,British Columbia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
+2020,British Columbia,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
+2020,British Columbia,Salaried employees paid a fixed salary,Other wood product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.04
+2020,British Columbia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.12
+2020,British Columbia,Salaried employees paid a fixed salary,Forging and stamping,,
+2020,British Columbia,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.07
+2020,British Columbia,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
+2020,British Columbia,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2020,British Columbia,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Machinery manufacturing,,0.14
+2020,British Columbia,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
+2020,British Columbia,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,British Columbia,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Ship and boat building,,
+2020,British Columbia,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.02
+2020,British Columbia,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
+2020,British Columbia,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
+2020,British Columbia,Employees paid by the hour,Manufacturing,,4.68
+2020,British Columbia,Employees paid by the hour,Non-durable goods,,2.03
+2020,British Columbia,Employees paid by the hour,Food manufacturing,,0.98
+2020,British Columbia,Employees paid by the hour,Animal food manufacturing,,
+2020,British Columbia,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
+2020,British Columbia,Employees paid by the hour,Meat product manufacturing,,
+2020,British Columbia,Employees paid by the hour,Seafood product preparation and packaging,,
+2020,British Columbia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
+2020,British Columbia,Employees paid by the hour,Beverage and tobacco product manufacturing,,
+2020,British Columbia,Employees paid by the hour,Cannabis product manufacturing,,
+2020,British Columbia,Employees paid by the hour,Clothing manufacturing,,
+2020,British Columbia,Employees paid by the hour,Other leather and allied product manufacturing,,
+2020,British Columbia,Employees paid by the hour,Paper manufacturing,,0.22
+2020,British Columbia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
+2020,British Columbia,Employees paid by the hour,Converted paper product manufacturing,,
+2020,British Columbia,Employees paid by the hour,Printing and related support activities,,0.11
+2020,British Columbia,Employees paid by the hour,Basic chemical manufacturing,,
+2020,British Columbia,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
+2020,British Columbia,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
+2020,British Columbia,Employees paid by the hour,Other chemical product manufacturing,,
+2020,British Columbia,Employees paid by the hour,Plastics and rubber products manufacturing,,0.19
+2020,British Columbia,Employees paid by the hour,Plastic product manufacturing,,0.17
+2020,British Columbia,Employees paid by the hour,Durable goods,,
+2020,British Columbia,Employees paid by the hour,Wood product manufacturing,,0.88
+2020,British Columbia,Employees paid by the hour,Sawmills and wood preservation,,
+2020,British Columbia,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
+2020,British Columbia,Employees paid by the hour,Other wood product manufacturing,,0.24
+2020,British Columbia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
+2020,British Columbia,Employees paid by the hour,Glass and glass product manufacturing,,
+2020,British Columbia,Employees paid by the hour,Cement and concrete product manufacturing,,
+2020,British Columbia,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
+2020,British Columbia,Employees paid by the hour,Primary metal manufacturing,,0.13
+2020,British Columbia,Employees paid by the hour,Fabricated metal product manufacturing,,0.41
+2020,British Columbia,Employees paid by the hour,Forging and stamping,,
+2020,British Columbia,Employees paid by the hour,Cutlery and hand tool manufacturing,,
+2020,British Columbia,Employees paid by the hour,Architectural and structural metals manufacturing,,0.2
+2020,British Columbia,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
+2020,British Columbia,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
+2020,British Columbia,Employees paid by the hour,Other fabricated metal product manufacturing,,
+2020,British Columbia,Employees paid by the hour,Machinery manufacturing,,0.26
+2020,British Columbia,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
+2020,British Columbia,Employees paid by the hour,Industrial machinery manufacturing,,
+2020,British Columbia,Employees paid by the hour,Other general-purpose machinery manufacturing,,
+2020,British Columbia,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
+2020,British Columbia,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
+2020,British Columbia,Employees paid by the hour,Electrical equipment manufacturing,,
+2020,British Columbia,Employees paid by the hour,Other electrical equipment and component manufacturing,,
+2020,British Columbia,Employees paid by the hour,Transportation equipment manufacturing,,
+2020,British Columbia,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
+2020,British Columbia,Employees paid by the hour,Aerospace product and parts manufacturing,,
+2020,British Columbia,Employees paid by the hour,Ship and boat building,,
+2020,British Columbia,Employees paid by the hour,Furniture and related product manufacturing,,
+2020,British Columbia,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.17
+2020,British Columbia,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
+2020,British Columbia,Employees paid by the hour,Medical equipment and supplies manufacturing,,
+2020,British Columbia,Employees paid by the hour,Other miscellaneous manufacturing,,
+2020,Yukon,All employees,Cannabis product manufacturing,,
+2020,Yukon,All employees,Durable goods,,
+2020,Yukon,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,Yukon,Salaried employees paid a fixed salary,Durable goods,,
+2020,Yukon,Employees paid by the hour,Cannabis product manufacturing,,
+2020,Yukon,Employees paid by the hour,Durable goods,,
+2020,Northwest Territories,All employees,Cannabis product manufacturing,,
+2020,Northwest Territories,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,Northwest Territories,Employees paid by the hour,Cannabis product manufacturing,,
+2020,Nunavut,All employees,Cannabis product manufacturing,,
+2020,Nunavut,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
+2020,Nunavut,Employees paid by the hour,Cannabis product manufacturing,,
diff --git a/tests/assets/progress-calculation/data/temp/indicator_9-5-1.csv b/tests/assets/progress-calculation/data/temp/indicator_9-5-1.csv
new file mode 100644
index 00000000..e761b306
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_9-5-1.csv
@@ -0,0 +1,457 @@
+Year,Geography,Science type,GeoCode,Value
+2010,,,NA,1.83
+2011,,,NA,1.79
+2012,,,NA,1.77
+2013,,,NA,1.71
+2014,,,NA,1.71
+2015,,,NA,1.69
+2016,,,NA,1.73
+2017,,,NA,1.69
+2018,,,NA,1.74
+2019,,,NA,1.75
+2020,,,NA,1.84
+2021,,,NA,NA
+2010,Canada,Natural sciences and engineering,NA,1.67
+2010,Canada,"Social sciences, humanities and the arts",NA,0.16
+2010,Newfoundland and Labrador,Total sciences,10,0.86
+2010,Newfoundland and Labrador,Natural sciences and engineering,NA,0.72
+2010,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.14
+2010,Prince Edward Island,Total sciences,11,1.3
+2010,Prince Edward Island,Natural sciences and engineering,NA,1.07
+2010,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.23
+2010,Nova Scotia,Total sciences,12,1.42
+2010,Nova Scotia,Natural sciences and engineering,NA,1.19
+2010,Nova Scotia,"Social sciences, humanities and the arts",NA,0.23
+2010,New Brunswick,Total sciences,13,0.96
+2010,New Brunswick,Natural sciences and engineering,NA,0.79
+2010,New Brunswick,"Social sciences, humanities and the arts",NA,0.17
+2010,Quebec,Total sciences,24,2.42
+2010,Quebec,Natural sciences and engineering,NA,2.23
+2010,Quebec,"Social sciences, humanities and the arts",NA,0.18
+2010,Ontario,Total sciences,35,2.2
+2010,Ontario,Natural sciences and engineering,NA,2.01
+2010,Ontario,"Social sciences, humanities and the arts",NA,0.19
+2010,Manitoba,Total sciences,46,1.26
+2010,Manitoba,Natural sciences and engineering,NA,1.1
+2010,Manitoba,"Social sciences, humanities and the arts",NA,0.16
+2010,Saskatchewan,Total sciences,47,0.94
+2010,Saskatchewan,Natural sciences and engineering,NA,0.84
+2010,Saskatchewan,"Social sciences, humanities and the arts",NA,0.09
+2010,Alberta,Total sciences,48,1.1
+2010,Alberta,Natural sciences and engineering,NA,1.02
+2010,Alberta,"Social sciences, humanities and the arts",NA,0.08
+2010,British Columbia,Total sciences,59,1.46
+2010,British Columbia,Natural sciences and engineering,NA,1.33
+2010,British Columbia,"Social sciences, humanities and the arts",NA,0.13
+2010,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
+2010,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
+2010,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
+2010,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
+2010,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
+2010,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
+2010,"National Capital Region, Quebec",Total sciences,NA,NA
+2010,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
+2010,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
+2010,"National Capital Region, Ontario",Total sciences,NA,NA
+2010,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
+2010,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
+2011,Canada,Natural sciences and engineering,NA,1.64
+2011,Canada,"Social sciences, humanities and the arts",NA,0.15
+2011,Newfoundland and Labrador,Total sciences,10,0.91
+2011,Newfoundland and Labrador,Natural sciences and engineering,NA,0.74
+2011,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.17
+2011,Prince Edward Island,Total sciences,11,1.2
+2011,Prince Edward Island,Natural sciences and engineering,NA,0.98
+2011,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.24
+2011,Nova Scotia,Total sciences,12,1.34
+2011,Nova Scotia,Natural sciences and engineering,NA,1.12
+2011,Nova Scotia,"Social sciences, humanities and the arts",NA,0.22
+2011,New Brunswick,Total sciences,13,0.94
+2011,New Brunswick,Natural sciences and engineering,NA,0.79
+2011,New Brunswick,"Social sciences, humanities and the arts",NA,0.15
+2011,Quebec,Total sciences,24,2.43
+2011,Quebec,Natural sciences and engineering,NA,2.25
+2011,Quebec,"Social sciences, humanities and the arts",NA,0.18
+2011,Ontario,Total sciences,35,2.18
+2011,Ontario,Natural sciences and engineering,NA,2
+2011,Ontario,"Social sciences, humanities and the arts",NA,0.18
+2011,Manitoba,Total sciences,46,1.16
+2011,Manitoba,Natural sciences and engineering,NA,1
+2011,Manitoba,"Social sciences, humanities and the arts",NA,0.16
+2011,Saskatchewan,Total sciences,47,0.77
+2011,Saskatchewan,Natural sciences and engineering,NA,0.7
+2011,Saskatchewan,"Social sciences, humanities and the arts",NA,0.07
+2011,Alberta,Total sciences,48,1.1
+2011,Alberta,Natural sciences and engineering,NA,1.03
+2011,Alberta,"Social sciences, humanities and the arts",NA,0.07
+2011,British Columbia,Total sciences,59,1.39
+2011,British Columbia,Natural sciences and engineering,NA,1.27
+2011,British Columbia,"Social sciences, humanities and the arts",NA,0.12
+2011,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
+2011,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
+2011,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
+2011,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
+2011,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
+2011,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
+2011,"National Capital Region, Quebec",Total sciences,NA,NA
+2011,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
+2011,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
+2011,"National Capital Region, Ontario",Total sciences,NA,NA
+2011,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
+2011,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
+2012,Canada,Natural sciences and engineering,NA,1.6
+2012,Canada,"Social sciences, humanities and the arts",NA,0.17
+2012,Newfoundland and Labrador,Total sciences,10,1.18
+2012,Newfoundland and Labrador,Natural sciences and engineering,NA,0.99
+2012,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.19
+2012,Prince Edward Island,Total sciences,11,1.4
+2012,Prince Edward Island,Natural sciences and engineering,NA,1.13
+2012,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.27
+2012,Nova Scotia,Total sciences,12,1.35
+2012,Nova Scotia,Natural sciences and engineering,NA,1.05
+2012,Nova Scotia,"Social sciences, humanities and the arts",NA,0.29
+2012,New Brunswick,Total sciences,13,0.89
+2012,New Brunswick,Natural sciences and engineering,NA,0.68
+2012,New Brunswick,"Social sciences, humanities and the arts",NA,0.21
+2012,Quebec,Total sciences,24,2.33
+2012,Quebec,Natural sciences and engineering,NA,2.12
+2012,Quebec,"Social sciences, humanities and the arts",NA,0.21
+2012,Ontario,Total sciences,35,2.15
+2012,Ontario,Natural sciences and engineering,NA,1.94
+2012,Ontario,"Social sciences, humanities and the arts",NA,0.21
+2012,Manitoba,Total sciences,46,1.15
+2012,Manitoba,Natural sciences and engineering,NA,0.98
+2012,Manitoba,"Social sciences, humanities and the arts",NA,0.18
+2012,Saskatchewan,Total sciences,47,0.79
+2012,Saskatchewan,Natural sciences and engineering,NA,0.7
+2012,Saskatchewan,"Social sciences, humanities and the arts",NA,0.09
+2012,Alberta,Total sciences,48,1.19
+2012,Alberta,Natural sciences and engineering,NA,1.11
+2012,Alberta,"Social sciences, humanities and the arts",NA,0.08
+2012,British Columbia,Total sciences,59,1.35
+2012,British Columbia,Natural sciences and engineering,NA,1.21
+2012,British Columbia,"Social sciences, humanities and the arts",NA,0.14
+2012,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
+2012,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
+2012,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
+2012,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
+2012,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
+2012,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
+2012,"National Capital Region, Quebec",Total sciences,NA,NA
+2012,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
+2012,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
+2012,"National Capital Region, Ontario",Total sciences,NA,NA
+2012,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
+2012,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
+2013,Canada,Natural sciences and engineering,NA,1.53
+2013,Canada,"Social sciences, humanities and the arts",NA,0.18
+2013,Newfoundland and Labrador,Total sciences,10,0.91
+2013,Newfoundland and Labrador,Natural sciences and engineering,NA,0.76
+2013,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.16
+2013,Prince Edward Island,Total sciences,11,1.3
+2013,Prince Edward Island,Natural sciences and engineering,NA,1.06
+2013,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.23
+2013,Nova Scotia,Total sciences,12,1.36
+2013,Nova Scotia,Natural sciences and engineering,NA,1.09
+2013,Nova Scotia,"Social sciences, humanities and the arts",NA,0.27
+2013,New Brunswick,Total sciences,13,0.91
+2013,New Brunswick,Natural sciences and engineering,NA,0.71
+2013,New Brunswick,"Social sciences, humanities and the arts",NA,0.2
+2013,Quebec,Total sciences,24,2.31
+2013,Quebec,Natural sciences and engineering,NA,2.08
+2013,Quebec,"Social sciences, humanities and the arts",NA,0.23
+2013,Ontario,Total sciences,35,2.04
+2013,Ontario,Natural sciences and engineering,NA,1.83
+2013,Ontario,"Social sciences, humanities and the arts",NA,0.21
+2013,Manitoba,Total sciences,46,1.13
+2013,Manitoba,Natural sciences and engineering,NA,0.95
+2013,Manitoba,"Social sciences, humanities and the arts",NA,0.18
+2013,Saskatchewan,Total sciences,47,0.85
+2013,Saskatchewan,Natural sciences and engineering,NA,0.77
+2013,Saskatchewan,"Social sciences, humanities and the arts",NA,0.08
+2013,Alberta,Total sciences,48,1.09
+2013,Alberta,Natural sciences and engineering,NA,1.02
+2013,Alberta,"Social sciences, humanities and the arts",NA,0.07
+2013,British Columbia,Total sciences,59,1.4
+2013,British Columbia,Natural sciences and engineering,NA,1.23
+2013,British Columbia,"Social sciences, humanities and the arts",NA,0.17
+2013,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
+2013,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
+2013,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
+2013,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
+2013,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
+2013,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
+2013,"National Capital Region, Quebec",Total sciences,NA,NA
+2013,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
+2013,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
+2013,"National Capital Region, Ontario",Total sciences,NA,NA
+2013,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
+2013,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
+2014,Canada,Natural sciences and engineering,NA,1.54
+2014,Canada,"Social sciences, humanities and the arts",NA,0.17
+2014,Newfoundland and Labrador,Total sciences,10,1.05
+2014,Newfoundland and Labrador,Natural sciences and engineering,NA,0.89
+2014,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.16
+2014,Prince Edward Island,Total sciences,11,1.14
+2014,Prince Edward Island,Natural sciences and engineering,NA,0.96
+2014,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.19
+2014,Nova Scotia,Total sciences,12,1.48
+2014,Nova Scotia,Natural sciences and engineering,NA,1.2
+2014,Nova Scotia,"Social sciences, humanities and the arts",NA,0.28
+2014,New Brunswick,Total sciences,13,0.93
+2014,New Brunswick,Natural sciences and engineering,NA,0.72
+2014,New Brunswick,"Social sciences, humanities and the arts",NA,0.21
+2014,Quebec,Total sciences,24,2.41
+2014,Quebec,Natural sciences and engineering,NA,2.19
+2014,Quebec,"Social sciences, humanities and the arts",NA,0.22
+2014,Ontario,Total sciences,35,2.08
+2014,Ontario,Natural sciences and engineering,NA,1.88
+2014,Ontario,"Social sciences, humanities and the arts",NA,0.2
+2014,Manitoba,Total sciences,46,1.19
+2014,Manitoba,Natural sciences and engineering,NA,1.01
+2014,Manitoba,"Social sciences, humanities and the arts",NA,0.18
+2014,Saskatchewan,Total sciences,47,0.81
+2014,Saskatchewan,Natural sciences and engineering,NA,0.73
+2014,Saskatchewan,"Social sciences, humanities and the arts",NA,0.08
+2014,Alberta,Total sciences,48,1
+2014,Alberta,Natural sciences and engineering,NA,0.93
+2014,Alberta,"Social sciences, humanities and the arts",NA,0.07
+2014,British Columbia,Total sciences,59,1.35
+2014,British Columbia,Natural sciences and engineering,NA,1.19
+2014,British Columbia,"Social sciences, humanities and the arts",NA,0.16
+2014,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
+2014,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
+2014,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
+2014,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
+2014,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
+2014,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
+2014,"National Capital Region, Quebec",Total sciences,NA,NA
+2014,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
+2014,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
+2014,"National Capital Region, Ontario",Total sciences,NA,NA
+2014,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
+2014,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
+2015,Canada,Natural sciences and engineering,NA,1.52
+2015,Canada,"Social sciences, humanities and the arts",NA,0.18
+2015,Newfoundland and Labrador,Total sciences,10,1.19
+2015,Newfoundland and Labrador,Natural sciences and engineering,NA,1.03
+2015,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.17
+2015,Prince Edward Island,Total sciences,11,1.3
+2015,Prince Edward Island,Natural sciences and engineering,NA,1.08
+2015,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.21
+2015,Nova Scotia,Total sciences,12,1.52
+2015,Nova Scotia,Natural sciences and engineering,NA,1.23
+2015,Nova Scotia,"Social sciences, humanities and the arts",NA,0.28
+2015,New Brunswick,Total sciences,13,0.92
+2015,New Brunswick,Natural sciences and engineering,NA,0.72
+2015,New Brunswick,"Social sciences, humanities and the arts",NA,0.2
+2015,Quebec,Total sciences,24,2.26
+2015,Quebec,Natural sciences and engineering,NA,2.04
+2015,Quebec,"Social sciences, humanities and the arts",NA,0.22
+2015,Ontario,Total sciences,35,1.93
+2015,Ontario,Natural sciences and engineering,NA,1.73
+2015,Ontario,"Social sciences, humanities and the arts",NA,0.2
+2015,Manitoba,Total sciences,46,1.22
+2015,Manitoba,Natural sciences and engineering,NA,1.05
+2015,Manitoba,"Social sciences, humanities and the arts",NA,0.17
+2015,Saskatchewan,Total sciences,47,0.96
+2015,Saskatchewan,Natural sciences and engineering,NA,0.87
+2015,Saskatchewan,"Social sciences, humanities and the arts",NA,0.08
+2015,Alberta,Total sciences,48,1.09
+2015,Alberta,Natural sciences and engineering,NA,1.01
+2015,Alberta,"Social sciences, humanities and the arts",NA,0.08
+2015,British Columbia,Total sciences,59,1.43
+2015,British Columbia,Natural sciences and engineering,NA,1.26
+2015,British Columbia,"Social sciences, humanities and the arts",NA,0.17
+2015,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
+2015,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
+2015,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
+2015,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
+2015,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
+2015,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
+2015,"National Capital Region, Quebec",Total sciences,NA,NA
+2015,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
+2015,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
+2015,"National Capital Region, Ontario",Total sciences,NA,NA
+2015,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
+2015,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
+2016,Canada,Natural sciences and engineering,NA,1.55
+2016,Canada,"Social sciences, humanities and the arts",NA,0.18
+2016,Newfoundland and Labrador,Total sciences,10,1.15
+2016,Newfoundland and Labrador,Natural sciences and engineering,NA,0.98
+2016,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.17
+2016,Prince Edward Island,Total sciences,11,1.32
+2016,Prince Edward Island,Natural sciences and engineering,NA,1.13
+2016,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.19
+2016,Nova Scotia,Total sciences,12,1.54
+2016,Nova Scotia,Natural sciences and engineering,NA,1.24
+2016,Nova Scotia,"Social sciences, humanities and the arts",NA,0.29
+2016,New Brunswick,Total sciences,13,1.05
+2016,New Brunswick,Natural sciences and engineering,NA,0.86
+2016,New Brunswick,"Social sciences, humanities and the arts",NA,0.2
+2016,Quebec,Total sciences,24,2.21
+2016,Quebec,Natural sciences and engineering,NA,1.99
+2016,Quebec,"Social sciences, humanities and the arts",NA,0.22
+2016,Ontario,Total sciences,35,1.97
+2016,Ontario,Natural sciences and engineering,NA,1.78
+2016,Ontario,"Social sciences, humanities and the arts",NA,0.19
+2016,Manitoba,Total sciences,46,1.22
+2016,Manitoba,Natural sciences and engineering,NA,1.04
+2016,Manitoba,"Social sciences, humanities and the arts",NA,0.18
+2016,Saskatchewan,Total sciences,47,0.93
+2016,Saskatchewan,Natural sciences and engineering,NA,0.83
+2016,Saskatchewan,"Social sciences, humanities and the arts",NA,0.1
+2016,Alberta,Total sciences,48,1.07
+2016,Alberta,Natural sciences and engineering,NA,0.98
+2016,Alberta,"Social sciences, humanities and the arts",NA,0.09
+2016,British Columbia,Total sciences,59,1.59
+2016,British Columbia,Natural sciences and engineering,NA,1.43
+2016,British Columbia,"Social sciences, humanities and the arts",NA,0.16
+2016,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
+2016,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
+2016,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
+2016,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
+2016,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
+2016,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
+2016,"National Capital Region, Quebec",Total sciences,NA,NA
+2016,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
+2016,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
+2016,"National Capital Region, Ontario",Total sciences,NA,NA
+2016,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
+2016,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
+2017,Canada,Natural sciences and engineering,NA,1.51
+2017,Canada,"Social sciences, humanities and the arts",NA,0.18
+2017,Newfoundland and Labrador,Total sciences,10,1.24
+2017,Newfoundland and Labrador,Natural sciences and engineering,NA,1.04
+2017,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.21
+2017,Prince Edward Island,Total sciences,11,1.25
+2017,Prince Edward Island,Natural sciences and engineering,NA,1.08
+2017,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.19
+2017,Nova Scotia,Total sciences,12,1.55
+2017,Nova Scotia,Natural sciences and engineering,NA,1.26
+2017,Nova Scotia,"Social sciences, humanities and the arts",NA,0.29
+2017,New Brunswick,Total sciences,13,0.91
+2017,New Brunswick,Natural sciences and engineering,NA,0.72
+2017,New Brunswick,"Social sciences, humanities and the arts",NA,0.2
+2017,Quebec,Total sciences,24,2.26
+2017,Quebec,Natural sciences and engineering,NA,2.04
+2017,Quebec,"Social sciences, humanities and the arts",NA,0.22
+2017,Ontario,Total sciences,35,1.93
+2017,Ontario,Natural sciences and engineering,NA,1.73
+2017,Ontario,"Social sciences, humanities and the arts",NA,0.2
+2017,Manitoba,Total sciences,46,1.21
+2017,Manitoba,Natural sciences and engineering,NA,1.04
+2017,Manitoba,"Social sciences, humanities and the arts",NA,0.17
+2017,Saskatchewan,Total sciences,47,0.83
+2017,Saskatchewan,Natural sciences and engineering,NA,0.74
+2017,Saskatchewan,"Social sciences, humanities and the arts",NA,0.09
+2017,Alberta,Total sciences,48,1
+2017,Alberta,Natural sciences and engineering,NA,0.91
+2017,Alberta,"Social sciences, humanities and the arts",NA,0.09
+2017,British Columbia,Total sciences,59,1.49
+2017,British Columbia,Natural sciences and engineering,NA,1.34
+2017,British Columbia,"Social sciences, humanities and the arts",NA,0.16
+2017,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
+2017,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
+2017,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
+2017,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
+2017,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
+2017,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
+2017,"National Capital Region, Quebec",Total sciences,NA,NA
+2017,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
+2017,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
+2017,"National Capital Region, Ontario",Total sciences,NA,NA
+2017,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
+2017,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
+2018,Canada,Natural sciences and engineering,NA,1.56
+2018,Canada,"Social sciences, humanities and the arts",NA,0.18
+2018,Newfoundland and Labrador,Total sciences,10,1.53
+2018,Newfoundland and Labrador,Natural sciences and engineering,NA,1.3
+2018,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.23
+2018,Prince Edward Island,Total sciences,11,1.22
+2018,Prince Edward Island,Natural sciences and engineering,NA,1.03
+2018,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.19
+2018,Nova Scotia,Total sciences,12,1.46
+2018,Nova Scotia,Natural sciences and engineering,NA,1.19
+2018,Nova Scotia,"Social sciences, humanities and the arts",NA,0.28
+2018,New Brunswick,Total sciences,13,0.98
+2018,New Brunswick,Natural sciences and engineering,NA,0.78
+2018,New Brunswick,"Social sciences, humanities and the arts",NA,0.2
+2018,Quebec,Total sciences,24,2.26
+2018,Quebec,Natural sciences and engineering,NA,2.04
+2018,Quebec,"Social sciences, humanities and the arts",NA,0.22
+2018,Ontario,Total sciences,35,1.99
+2018,Ontario,Natural sciences and engineering,NA,1.79
+2018,Ontario,"Social sciences, humanities and the arts",NA,0.19
+2018,Manitoba,Total sciences,46,1.12
+2018,Manitoba,Natural sciences and engineering,NA,0.96
+2018,Manitoba,"Social sciences, humanities and the arts",NA,0.17
+2018,Saskatchewan,Total sciences,47,0.89
+2018,Saskatchewan,Natural sciences and engineering,NA,0.79
+2018,Saskatchewan,"Social sciences, humanities and the arts",NA,0.1
+2018,Alberta,Total sciences,48,1.05
+2018,Alberta,Natural sciences and engineering,NA,0.97
+2018,Alberta,"Social sciences, humanities and the arts",NA,0.09
+2018,British Columbia,Total sciences,59,1.6
+2018,British Columbia,Natural sciences and engineering,NA,1.44
+2018,British Columbia,"Social sciences, humanities and the arts",NA,0.16
+2018,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
+2018,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
+2018,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
+2018,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
+2018,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
+2018,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
+2018,"National Capital Region, Quebec",Total sciences,NA,NA
+2018,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
+2018,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
+2018,"National Capital Region, Ontario",Total sciences,NA,NA
+2018,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
+2018,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
+2019,Canada,Natural sciences and engineering,NA,1.56
+2019,Canada,"Social sciences, humanities and the arts",NA,0.18
+2019,Newfoundland and Labrador,Total sciences,10,1.62
+2019,Newfoundland and Labrador,Natural sciences and engineering,NA,1.42
+2019,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.2
+2019,Prince Edward Island,Total sciences,11,1.13
+2019,Prince Edward Island,Natural sciences and engineering,NA,0.97
+2019,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.17
+2019,Nova Scotia,Total sciences,12,1.5
+2019,Nova Scotia,Natural sciences and engineering,NA,1.24
+2019,Nova Scotia,"Social sciences, humanities and the arts",NA,0.26
+2019,New Brunswick,Total sciences,13,0.93
+2019,New Brunswick,Natural sciences and engineering,NA,0.73
+2019,New Brunswick,"Social sciences, humanities and the arts",NA,0.2
+2019,Quebec,Total sciences,24,2.18
+2019,Quebec,Natural sciences and engineering,NA,1.96
+2019,Quebec,"Social sciences, humanities and the arts",NA,0.22
+2019,Ontario,Total sciences,35,2.02
+2019,Ontario,Natural sciences and engineering,NA,1.82
+2019,Ontario,"Social sciences, humanities and the arts",NA,0.2
+2019,Manitoba,Total sciences,46,1.17
+2019,Manitoba,Natural sciences and engineering,NA,1
+2019,Manitoba,"Social sciences, humanities and the arts",NA,0.18
+2019,Saskatchewan,Total sciences,47,0.95
+2019,Saskatchewan,Natural sciences and engineering,NA,0.84
+2019,Saskatchewan,"Social sciences, humanities and the arts",NA,0.11
+2019,Alberta,Total sciences,48,1.08
+2019,Alberta,Natural sciences and engineering,NA,0.99
+2019,Alberta,"Social sciences, humanities and the arts",NA,0.09
+2019,British Columbia,Total sciences,59,1.57
+2019,British Columbia,Natural sciences and engineering,NA,1.41
+2019,British Columbia,"Social sciences, humanities and the arts",NA,0.17
+2019,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
+2019,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
+2019,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
+2019,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
+2019,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
+2019,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
+2019,"National Capital Region, Quebec",Total sciences,NA,NA
+2019,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
+2019,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
+2019,"National Capital Region, Ontario",Total sciences,NA,NA
+2019,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
+2019,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
+2020,Canada,Natural sciences and engineering,NA,1.65
+2020,Canada,"Social sciences, humanities and the arts",NA,0.19
+2021,Canada,Natural sciences and engineering,NA,NA
+2021,Canada,"Social sciences, humanities and the arts",NA,NA
diff --git a/tests/assets/progress-calculation/data/temp/indicator_9-5-2.csv b/tests/assets/progress-calculation/data/temp/indicator_9-5-2.csv
new file mode 100644
index 00000000..e3646cd9
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_9-5-2.csv
@@ -0,0 +1,739 @@
+Year,Type of science,Value
+2010,,70550.79959944433
+2010,,68329.85066142055
+2010,,67303.44623678036
+2010,,69489.09354968125
+2010,,69517.50052468931
+2010,,66024.18001389063
+2010,,57068.350013937976
+2010,,60226.420365685895
+2010,,69403.25275802036
+2010,,80080.9591948497
+2010,,108350.18978014459
+2010,,142335.79261640925
+2010,,173704.36100202432
+2010,,231594.4047165501
+2010,,379661.11428838066
+2010,,981224.0253314862
+2010,,3851344.790756384
+2010,,27631487.286659703
+2011,,73830.70453989519
+2011,,70182.00135603019
+2011,,69712.54027683185
+2011,,70972.41232263345
+2011,,72653.66293717064
+2011,,69201.65765424403
+2011,,60698.97572776271
+2011,,61351.53986419422
+2011,,70168.75777498311
+2011,,80539.21762321012
+2011,,107770.08613121057
+2011,,143206.32987591097
+2011,,179662.9388329853
+2011,,235612.44250614004
+2011,,387097.9843238212
+2011,,943218.3684778821
+2011,,3827252.074736891
+2011,,27361617.500828635
+2012,,73528.84297298786
+2012,,67611.98195284358
+2012,,67783.11584205388
+2012,,68236.91668288942
+2012,,70501.83748059007
+2012,,67852.96327105115
+2012,,60798.83933251085
+2012,,59272.785028587314
+2012,,66448.9670370521
+2012,,78057.59809249433
+2012,,98256.26893724038
+2012,,135329.68132745192
+2012,,174663.9456605862
+2012,,226193.92570133557
+2012,,369673.8844468847
+2012,,859356.718926163
+2012,,3593843.827146765
+2012,,24248199.279711884
+2013,,75721.39982263456
+2013,,67525.14967309253
+2013,,68169.93980139348
+2013,,67659.0996450976
+2013,,70408.76957471238
+2013,,68710.82457621588
+2013,,63304.816357061354
+2013,,59102.13437051536
+2013,,65055.398956211095
+2013,,77307.13251514209
+2013,,93719.25348539474
+2013,,130724.13817966818
+2013,,173720.94137437252
+2013,,225451.4002111232
+2013,,363891.4101823583
+2013,,821861.9199443933
+2013,,3492359.059971748
+2013,,23125000
+2014,,4544.834580763787
+2014,,3974.3561171655037
+2014,,3990.062548270227
+2014,,3934.0854803649095
+2014,,4099.142202350345
+2014,,4076.342314549706
+2014,,3846.4441960032927
+2014,,3455.8466250051138
+2014,,3752.3978523659393
+2014,,4434.499949116071
+2014,,5283.869438494224
+2014,,7384.844734214606
+2014,,10015.111065813735
+2014,,13177.628410036345
+2014,,21045.17829396377
+2014,,46112.51837557521
+2014,,195350.53554040895
+2014,,1246601.941747573
+2014,,76450.44171733393
+2014,,66854.20014741848
+2014,,67118.40417386232
+2014,,66176.79200044773
+2014,,68953.27573818613
+2014,,68569.7498996788
+2014,,64702.543645957776
+2014,,58132.14899112964
+2014,,63120.55328190638
+2014,,74594.45968404073
+2014,,88882.03638023669
+2014,,124223.36432974291
+2014,,168468.10400323645
+2014,,221666.04632832683
+2014,,354009.1829531871
+2014,,775676.7239521733
+2014,,3286067.8351184684
+2014,,20969579.28802589
+2015,,3382.7672852002497
+2015,,2955.3898923161114
+2015,,2914.1115026319612
+2015,,2877.4627606328954
+2015,,2985.793442978304
+2015,,3012.8659589552335
+2015,,2894.739424388425
+2015,,2543.697343129682
+2015,,2707.8007609379088
+2015,,3156.1899437903967
+2015,,3720.4335881585116
+2015,,5214.655243527346
+2015,,7202.2656618760075
+2015,,9632.561322545227
+2015,,15155.244934873119
+2015,,32941.570587085786
+2015,,132366.13819922225
+2015,,894956.3898369359
+2015,,77860.98259833796
+2015,,68024.05887737761
+2015,,67073.9562809187
+2015,,66230.41404982157
+2015,,68723.85585702604
+2015,,69346.98258069842
+2015,,66628.07014100817
+2015,,58548.15240627302
+2015,,62325.31242972339
+2015,,72645.86345198913
+2015,,85633.03072405524
+2015,,120025.45458830739
+2015,,165774.182522502
+2015,,221712.17416976983
+2015,,348827.5020602999
+2015,,758214.4552078389
+2015,,3046664.672449895
+2015,,20599165.718619645
+2016,,3291.9946464296972
+2016,,2873.670351471667
+2016,,2781.713357008985
+2016,,2756.503499875435
+2016,,2846.443501623427
+2016,,2928.8978036682097
+2016,,2821.747031612616
+2016,,2508.6266037291502
+2016,,2573.2880694712753
+2016,,2965.6400767780874
+2016,,3483.681794614106
+2016,,4820.167694055665
+2016,,6763.278356227589
+2016,,9238.074332831928
+2016,,14271.537851821493
+2016,,30722.378969053698
+2016,,116054.81306039587
+2016,,793705.8891588568
+2016,,76291.73598970748
+2016,,66597.10094416409
+2016,,64466.00429989627
+2016,,63881.7676982794
+2016,,65966.1206833954
+2016,,67876.99312349447
+2016,,65393.78179092911
+2016,,58137.238696918415
+2016,,59635.763452557345
+2016,,68728.49262480762
+2016,,80734.07167751466
+2016,,111707.03498556408
+2016,,156738.48295525686
+2016,,214091.69933434692
+2016,,330741.8495164112
+2016,,711988.8933673698
+2016,,2689561.8338690577
+2016,,18394076.13097304
+2017,,2707.359329722883
+2017,,2356.9397926809106
+2017,,2251.6994164279376
+2017,,2250.419170390527
+2017,,2304.6296997547975
+2017,,2404.6938263947013
+2017,,2340.6884436158757
+2017,,2123.913464410565
+2017,,2098.874024542735
+2017,,2370.1286736994443
+2017,,2835.6159373639493
+2017,,3691.2931134557416
+2017,,5351.284402802334
+2017,,7530.190609612834
+2017,,11464.753983799452
+2017,,24643.196126751365
+2017,,88524.64144392135
+2017,,628749.1668518108
+2017,,77705.03941934317
+2017,,67647.5034136067
+2017,,64626.95586549795
+2017,,64590.210994689245
+2017,,66146.12981010014
+2017,,69018.11167805994
+2017,,67181.0667253355
+2017,,60959.31842641278
+2017,,60240.6511107716
+2017,,68026.04294036656
+2017,,81386.185340066
+2017,,105945.32973160518
+2017,,153589.42601329312
+2017,,216127.11387484186
+2017,,329054.64393431466
+2017,,707294.5602103815
+2017,,2540782.3326086616
+2017,,18045989.780048877
+2018,,3033.619050557944
+2018,,2622.658538477356
+2018,,2481.467630827517
+2018,,2502.644617806219
+2018,,2538.3947096517395
+2018,,2683.097243170069
+2018,,2654.132846202347
+2018,,2476.6213149115083
+2018,,2342.3667801804245
+2018,,2600.2182718436648
+2018,,3138.1492875075137
+2018,,3930.817610062893
+2018,,5758.390894713364
+2018,,8336.605788135405
+2018,,12684.208854729086
+2018,,27017.999315036635
+2018,,94278.37941514945
+2018,,675689.9651052131
+2018,,79491.26350945573
+2018,,68722.68320542229
+2018,,65022.9953217151
+2018,,65577.9052903714
+2018,,66514.68077998234
+2018,,70306.38535154871
+2018,,69547.41843006588
+2018,,64896.005159433946
+2018,,61378.074127294254
+2018,,68134.67096048563
+2018,,82230.3156025443
+2018,,103000.95471501265
+2018,,150889.66688745003
+2018,,218447.77357830864
+2018,,332369.94219653175
+2018,,707964.6017699115
+2018,,2470418.1297766236
+2018,,17705403.40488527
+2010,Natural sciences and engineering,58389.16863357517
+2010,Natural sciences and engineering,56551.06952194083
+2010,Natural sciences and engineering,55701.597915994134
+2010,Natural sciences and engineering,57510.48073874098
+2010,Natural sciences and engineering,57533.99088552221
+2010,Natural sciences and engineering,54642.85313011458
+2010,Natural sciences and engineering,47230.839785265314
+2010,Natural sciences and engineering,49844.518203820844
+2010,Natural sciences and engineering,57439.437285110624
+2010,Natural sciences and engineering,66276.50795333237
+2010,Natural sciences and engineering,89672.6548596419
+2010,Natural sciences and engineering,117799.77895159902
+2010,Natural sciences and engineering,143760.99611228926
+2010,Natural sciences and engineering,191671.88505817595
+2010,Natural sciences and engineering,314214.67866637633
+2010,Natural sciences and engineering,812079.4577478726
+2010,Natural sciences and engineering,3187445.3830468976
+2010,Natural sciences and engineering,22868338.557993732
+2010,Social sciences and humanities,12161.630965869172
+2010,Social sciences and humanities,11778.781139479717
+2010,Social sciences and humanities,11601.848320786226
+2010,Social sciences and humanities,11978.612810940262
+2010,Social sciences and humanities,11983.509639167105
+2010,Social sciences and humanities,11381.326883776053
+2010,Social sciences and humanities,9837.510228672656
+2010,Social sciences and humanities,10381.902161865053
+2010,Social sciences and humanities,11963.815472909722
+2010,Social sciences and humanities,13804.451241517329
+2010,Social sciences and humanities,18677.534920502676
+2010,Social sciences and humanities,24536.013664810245
+2010,Social sciences and humanities,29943.364889735065
+2010,Social sciences and humanities,39922.51965837417
+2010,Social sciences and humanities,65446.43562200436
+2010,Social sciences and humanities,169144.5675836137
+2010,Social sciences and humanities,663899.4077094864
+2010,Social sciences and humanities,4763148.72866597
+2011,Natural sciences and engineering,61582.230903627904
+2011,Natural sciences and engineering,58538.84558896982
+2011,Natural sciences and engineering,58147.26784689589
+2011,Natural sciences and engineering,59198.12780708572
+2011,Natural sciences and engineering,60600.45986116154
+2011,Natural sciences and engineering,57721.14037290095
+2011,Natural sciences and engineering,50629.048743005464
+2011,Natural sciences and engineering,51173.352844931476
+2011,Natural sciences and engineering,58527.79911079906
+2011,Natural sciences and engineering,67177.8053233935
+2011,Natural sciences and engineering,89891.08759012118
+2011,Natural sciences and engineering,119448.47781472866
+2011,Natural sciences and engineering,149856.9552192029
+2011,Natural sciences and engineering,196524.46673240792
+2011,Natural sciences and engineering,322878.63974096556
+2011,Natural sciences and engineering,786738.955318529
+2011,Natural sciences and engineering,3192313.041865641
+2011,Natural sciences and engineering,22822340.07292012
+2011,Social sciences and humanities,12244.0017583424
+2011,Social sciences and humanities,11638.904888722633
+2011,Social sciences and humanities,11561.049986551518
+2011,Social sciences and humanities,11769.985762530005
+2011,Social sciences and humanities,12048.802490731267
+2011,Social sciences and humanities,11476.325781788019
+2011,Social sciences and humanities,10066.250487135934
+2011,Social sciences and humanities,10174.47099625462
+2011,Social sciences and humanities,11636.70858800144
+2011,Social sciences and humanities,13356.534091602018
+2011,Social sciences and humanities,17872.470976817352
+2011,Social sciences and humanities,23749.178146592625
+2011,Social sciences and humanities,29795.10154601537
+2011,Social sciences and humanities,39073.70488078809
+2011,Social sciences and humanities,64195.89830882025
+2011,Social sciences and humanities,156422.2830340667
+2011,Social sciences and humanities,634707.2186934954
+2011,Social sciences and humanities,4537620.152469341
+2012,Natural sciences and engineering,60373.82811842334
+2012,Natural sciences and engineering,55515.55025374891
+2012,Natural sciences and engineering,55656.06664969187
+2012,Natural sciences and engineering,56028.67816997196
+2012,Natural sciences and engineering,57888.38292545758
+2012,Natural sciences and engineering,55713.41770408483
+2012,Natural sciences and engineering,49921.34415890549
+2012,Natural sciences and engineering,48668.31559869401
+2012,Natural sciences and engineering,54560.609855041
+2012,Natural sciences and engineering,64092.345534452295
+2012,Natural sciences and engineering,80677.28054083207
+2012,Natural sciences and engineering,111117.9040691028
+2012,Natural sciences and engineering,143414.891455205
+2012,Natural sciences and engineering,185725.6641008305
+2012,Natural sciences and engineering,303535.68282946135
+2012,Natural sciences and engineering,705609.5641260184
+2012,Natural sciences and engineering,2950870.7159219803
+2012,Natural sciences and engineering,19909963.98559424
+2012,Social sciences and humanities,13155.014854564508
+2012,Social sciences and humanities,12096.431699094672
+2012,Social sciences and humanities,12127.049192362014
+2012,Social sciences and humanities,12208.238512917465
+2012,Social sciences and humanities,12613.45455513249
+2012,Social sciences and humanities,12139.545566966328
+2012,Social sciences and humanities,10877.49517360535
+2012,Social sciences and humanities,10604.469429893306
+2012,Social sciences and humanities,11888.35718201112
+2012,Social sciences and humanities,13965.252558042024
+2012,Social sciences and humanities,17578.988396408316
+2012,Social sciences and humanities,24211.777258349128
+2012,Social sciences and humanities,31249.05420538119
+2012,Social sciences and humanities,40468.261600505044
+2012,Social sciences and humanities,66138.20161742333
+2012,Social sciences and humanities,153747.15480014464
+2012,Social sciences and humanities,642973.1112247849
+2012,Social sciences and humanities,4338235.294117646
+2013,Natural sciences and engineering,61971.16953064055
+2013,Natural sciences and engineering,55263.274421430266
+2013,Natural sciences and engineering,55790.97726958439
+2013,Natural sciences and engineering,55372.900451102134
+2013,Natural sciences and engineering,57623.25849731625
+2013,Natural sciences and engineering,56233.64291173542
+2013,Natural sciences and engineering,51809.3103899122
+2013,Natural sciences and engineering,48369.792387317655
+2013,Natural sciences and engineering,53242.00512724417
+2013,Natural sciences and engineering,63268.94941516256
+2013,Natural sciences and engineering,76700.79739192016
+2013,Natural sciences and engineering,106985.97421408891
+2013,Natural sciences and engineering,142174.9985360894
+2013,Natural sciences and engineering,184511.7361291499
+2013,Natural sciences and engineering,297812.458881854
+2013,Natural sciences and engineering,672620.2168865249
+2013,Natural sciences and engineering,2858182.4408201706
+2013,Natural sciences and engineering,18925736.961451247
+2013,Social sciences and humanities,13750.230291994007
+2013,Social sciences and humanities,12261.875251662264
+2013,Social sciences and humanities,12378.962531809088
+2013,Social sciences and humanities,12286.199193995477
+2013,Social sciences and humanities,12785.511077396139
+2013,Social sciences and humanities,12477.181664480457
+2013,Social sciences and humanities,11495.505967149158
+2013,Social sciences and humanities,10732.341983197708
+2013,Social sciences and humanities,11813.393828966937
+2013,Social sciences and humanities,14038.183099979533
+2013,Social sciences and humanities,17018.45609347457
+2013,Social sciences and humanities,23738.16396557926
+2013,Social sciences and humanities,31545.942838283125
+2013,Social sciences and humanities,40939.664081973286
+2013,Social sciences and humanities,66078.95130050422
+2013,Social sciences and humanities,149241.7030578683
+2013,Social sciences and humanities,634176.6191515775
+2013,Social sciences and humanities,4199263.038548753
+2014,Natural sciences and engineering,4544.834580763787
+2014,Natural sciences and engineering,3974.3561171655037
+2014,Natural sciences and engineering,3990.062548270227
+2014,Natural sciences and engineering,3934.0854803649095
+2014,Natural sciences and engineering,4099.142202350345
+2014,Natural sciences and engineering,4076.342314549706
+2014,Natural sciences and engineering,3846.4441960032927
+2014,Natural sciences and engineering,3455.8466250051138
+2014,Natural sciences and engineering,3752.3978523659393
+2014,Natural sciences and engineering,4434.499949116071
+2014,Natural sciences and engineering,5283.869438494224
+2014,Natural sciences and engineering,7384.844734214606
+2014,Natural sciences and engineering,10015.111065813735
+2014,Natural sciences and engineering,13177.628410036345
+2014,Natural sciences and engineering,21045.17829396377
+2014,Natural sciences and engineering,46112.51837557521
+2014,Natural sciences and engineering,195350.53554040895
+2014,Natural sciences and engineering,1246601.941747573
+2014,Natural sciences and engineering,62565.8068921968
+2014,Natural sciences and engineering,54712.39776247465
+2014,Natural sciences and engineering,54928.618071047145
+2014,Natural sciences and engineering,54158.017874556186
+2014,Natural sciences and engineering,56430.24732768279
+2014,Natural sciences and engineering,56116.37597506278
+2014,Natural sciences and engineering,52951.516829092056
+2014,Natural sciences and engineering,47574.41194983676
+2014,Natural sciences and engineering,51656.84146294419
+2014,Natural sciences and engineering,61046.90116867263
+2014,Natural sciences and engineering,72739.62320469151
+2014,Natural sciences and engineering,101662.39526633754
+2014,Natural sciences and engineering,137871.5757004078
+2014,Natural sciences and engineering,181407.91259797697
+2014,Natural sciences and engineering,289715.39838325826
+2014,Natural sciences and engineering,634801.3043665633
+2014,Natural sciences and engineering,2689264.8490749756
+2014,Natural sciences and engineering,17161165.04854369
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,0
+2014,Social sciences and humanities,13884.634825137136
+2014,Social sciences and humanities,12141.802384943836
+2014,Social sciences and humanities,12189.78610281517
+2014,Social sciences and humanities,12018.774125891552
+2014,Social sciences and humanities,12523.028410503339
+2014,Social sciences and humanities,12453.373924616028
+2014,Social sciences and humanities,11751.026816865719
+2014,Social sciences and humanities,10557.737041292881
+2014,Social sciences and humanities,11463.711818962194
+2014,Social sciences and humanities,13547.558515368099
+2014,Social sciences and humanities,16142.413175545176
+2014,Social sciences and humanities,22560.969063405373
+2014,Social sciences and humanities,30596.52830282867
+2014,Social sciences and humanities,40258.13373034987
+2014,Social sciences and humanities,64293.78456992878
+2014,Social sciences and humanities,140875.41958560984
+2014,Social sciences and humanities,596802.9860434923
+2014,Social sciences and humanities,3808414.2394822007
+2015,Natural sciences and engineering,3382.7672852002497
+2015,Natural sciences and engineering,2955.3898923161114
+2015,Natural sciences and engineering,2914.1115026319612
+2015,Natural sciences and engineering,2877.4627606328954
+2015,Natural sciences and engineering,2985.793442978304
+2015,Natural sciences and engineering,3012.8659589552335
+2015,Natural sciences and engineering,2894.739424388425
+2015,Natural sciences and engineering,2543.697343129682
+2015,Natural sciences and engineering,2707.8007609379088
+2015,Natural sciences and engineering,3156.1899437903967
+2015,Natural sciences and engineering,3720.4335881585116
+2015,Natural sciences and engineering,5214.655243527346
+2015,Natural sciences and engineering,7202.2656618760075
+2015,Natural sciences and engineering,9632.561322545227
+2015,Natural sciences and engineering,15155.244934873119
+2015,Natural sciences and engineering,32941.570587085786
+2015,Natural sciences and engineering,132366.13819922225
+2015,Natural sciences and engineering,894956.3898369359
+2015,Natural sciences and engineering,63646.67091264481
+2015,Natural sciences and engineering,55605.57733833746
+2015,Natural sciences and engineering,54828.92560248638
+2015,Natural sciences and engineering,54139.38055704915
+2015,Natural sciences and engineering,56177.61928518924
+2015,Natural sciences and engineering,56686.98790853484
+2015,Natural sciences and engineering,54464.440497568095
+2015,Natural sciences and engineering,47859.593655127814
+2015,Natural sciences and engineering,50947.194825499835
+2015,Natural sciences and engineering,59383.624634508305
+2015,Natural sciences and engineering,69999.85286420837
+2015,Natural sciences and engineering,98113.59110032172
+2015,Natural sciences and engineering,135510.42497436484
+2015,Natural sciences and engineering,181236.3691774364
+2015,Natural sciences and engineering,285145.50533537404
+2015,Natural sciences and engineering,619794.7200431777
+2015,Natural sciences and engineering,2490465.1510619204
+2015,Natural sciences and engineering,16838579.193527997
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,0
+2015,Social sciences and humanities,14209.53376579879
+2015,Social sciences and humanities,12414.307259531237
+2015,Social sciences and humanities,12240.91470173369
+2015,Social sciences and humanities,12086.96927983366
+2015,Social sciences and humanities,12542.019349459712
+2015,Social sciences and humanities,12655.739211769582
+2015,Social sciences and humanities,12159.541028433863
+2015,Social sciences and humanities,10684.965958287674
+2015,Social sciences and humanities,11374.2930268776
+2015,Social sciences and humanities,13257.78092208
+2015,Social sciences and humanities,15627.923010146063
+2015,Social sciences and humanities,21904.4981557208
+2015,Social sciences and humanities,30253.584856524358
+2015,Social sciences and humanities,40462.19967973094
+2015,Social sciences and humanities,63660.591011741024
+2015,Social sciences and humanities,138373.20752258916
+2015,Social sciences and humanities,556012.5635656596
+2015,Social sciences and humanities,3759322.4623941346
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Natural sciences and engineering,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2016,Social sciences and humanities,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Natural sciences and engineering,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2017,Social sciences and humanities,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Natural sciences and engineering,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
+2018,Social sciences and humanities,NA
diff --git a/tests/assets/progress-calculation/data/temp/indicator_9-c-1.csv b/tests/assets/progress-calculation/data/temp/indicator_9-c-1.csv
new file mode 100644
index 00000000..2b01110f
--- /dev/null
+++ b/tests/assets/progress-calculation/data/temp/indicator_9-c-1.csv
@@ -0,0 +1,13 @@
+Year,Units,Value
+2016,Evolved High-Speed Packet Access (HSPA+),99.4
+2017,Evolved High-Speed Packet Access (HSPA+),99.4
+2018,Evolved High-Speed Packet Access (HSPA+),99.5
+2019,Evolved High-Speed Packet Access (HSPA+),99.5
+2016,Long-Term Evolution (LTE),98.5
+2017,Long-Term Evolution (LTE),99
+2018,Long-Term Evolution (LTE),99.3
+2019,Long-Term Evolution (LTE),99.5
+2016,Long-Term Evolution - A (LTE-A),83
+2017,Long-Term Evolution - A (LTE-A),92
+2018,Long-Term Evolution - A (LTE-A),94.9
+2019,Long-Term Evolution - A (LTE-A),96
diff --git a/tests/assets/progress-calculation/indicator-config/17-8-1.yml b/tests/assets/progress-calculation/indicator-config/17-8-1.yml
new file mode 100644
index 00000000..53b13021
--- /dev/null
+++ b/tests/assets/progress-calculation/indicator-config/17-8-1.yml
@@ -0,0 +1,5 @@
+foo: bar
+page_content: Hello world
+auto_progress_calculation: true
+progress_calculation_options:
+    - direction: positive
diff --git a/tests/assets/progress-calculation/indicator-config/temp/1-2-1.yml b/tests/assets/progress-calculation/indicator-config/temp/1-2-1.yml
new file mode 100644
index 00000000..2da11fdf
--- /dev/null
+++ b/tests/assets/progress-calculation/indicator-config/temp/1-2-1.yml
@@ -0,0 +1,4 @@
+auto_progress_calculation: true
+progress_calculation_options:
+- direction: negative
+  target: 7.25
diff --git a/tests/assets/progress-calculation/indicator-config/temp/1-a-2.yml b/tests/assets/progress-calculation/indicator-config/temp/1-a-2.yml
new file mode 100644
index 00000000..0c076c8e
--- /dev/null
+++ b/tests/assets/progress-calculation/indicator-config/temp/1-a-2.yml
@@ -0,0 +1,3 @@
+auto_progress_calculation: true
+progress_calculation_options:
+- direction: positive
diff --git a/tests/assets/progress-calculation/indicator-config/temp/3-1-1.yml b/tests/assets/progress-calculation/indicator-config/temp/3-1-1.yml
new file mode 100644
index 00000000..3819a00f
--- /dev/null
+++ b/tests/assets/progress-calculation/indicator-config/temp/3-1-1.yml
@@ -0,0 +1,6 @@
+foo: bar
+page_content: Hello world
+auto_progress_calculation: true
+progress_calculation_options:
+- direction: negative
+  target: 70
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/indicator-config/temp/3-2-1.yml b/tests/assets/progress-calculation/indicator-config/temp/3-2-1.yml
new file mode 100644
index 00000000..0859d5ff
--- /dev/null
+++ b/tests/assets/progress-calculation/indicator-config/temp/3-2-1.yml
@@ -0,0 +1,6 @@
+foo: bar
+page_content: Hello world
+auto_progress_calculation: true
+progress_calculation_options:
+- direction: negative
+  target: 25
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/indicator-config/temp/3-2-2.yml b/tests/assets/progress-calculation/indicator-config/temp/3-2-2.yml
new file mode 100644
index 00000000..4e77618d
--- /dev/null
+++ b/tests/assets/progress-calculation/indicator-config/temp/3-2-2.yml
@@ -0,0 +1,6 @@
+foo: bar
+page_content: Hello world
+auto_progress_calculation: true
+progress_calculation_options:
+- direction: negative
+  target: 12
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/indicator-config/temp/3-3-1.yml b/tests/assets/progress-calculation/indicator-config/temp/3-3-1.yml
new file mode 100644
index 00000000..09599676
--- /dev/null
+++ b/tests/assets/progress-calculation/indicator-config/temp/3-3-1.yml
@@ -0,0 +1,5 @@
+foo: bar
+page_content: Hello world
+auto_progress_calculation: true
+progress_calculation_options:
+- direction: negative
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/indicator-config/temp/temp.yml b/tests/assets/progress-calculation/indicator-config/temp/temp.yml
new file mode 100644
index 00000000..b5762d10
--- /dev/null
+++ b/tests/assets/progress-calculation/indicator-config/temp/temp.yml
@@ -0,0 +1,6 @@
+foo: bar
+page_content: Hello world
+auto_progress_calculation: true
+progress_calculation_options:
+- direction: negative
+  target: 110
\ No newline at end of file

From 513547703ec3e9ebccec0713210527748787e79b Mon Sep 17 00:00:00 2001
From: Maia Pelletier <maia.pelletier15@gmail.com>
Date: Wed, 27 Jul 2022 11:03:47 -0400
Subject: [PATCH 03/39] Update progress measure names

---
 tests/ProgressMeasure_test.py                 | 93 ++++++++-----------
 .../data/{temp => }/indicator_3-3-3.csv       |  0
 .../indicator-config/3-3-3.yml                |  6 ++
 .../indicator-config/{ => temp}/17-8-1.yml    |  0
 4 files changed, 47 insertions(+), 52 deletions(-)
 rename tests/assets/progress-calculation/data/{temp => }/indicator_3-3-3.csv (100%)
 create mode 100644 tests/assets/progress-calculation/indicator-config/3-3-3.yml
 rename tests/assets/progress-calculation/indicator-config/{ => temp}/17-8-1.yml (100%)

diff --git a/tests/ProgressMeasure_test.py b/tests/ProgressMeasure_test.py
index 9ce09138..ed273450 100644
--- a/tests/ProgressMeasure_test.py
+++ b/tests/ProgressMeasure_test.py
@@ -1,8 +1,7 @@
 # TODO: Re-write docstrings
-# TODO: create more tests
 # import pandas as pd
-import yaml
-import sys
+# import yaml
+# import sys
 import sdg
 import os
 
@@ -11,10 +10,12 @@ def measure_indicator_progress(indicator):
     """Assigns year values and determines methodology to be run.
 
     Args:
-        indicator: str. Indicator number for which the data is being read.
+        indicator: Indicator for which the progress is being calculated for.
+    Returns:
+        output: str. A string indicating the progress measure for the indicator.
     """
 
-    data = indicator.data    # get indicator data
+    data = indicator.data  # get indicator data
     print(data)
 
     config = indicator.meta  # get configurations
@@ -33,10 +34,10 @@ def measure_indicator_progress(indicator):
                 print(config)
         else:
             print('progress calc is not turned on. exit...')
-            return(None)
+            return None
     else:
         print('progress calc is not turned on. exit...')
-        return(None)
+        return None
 
     config = config_defaults(config)
     print(config)
@@ -46,18 +47,16 @@ def measure_indicator_progress(indicator):
     print(data)
 
     if data is None:
-        return(None)
+        return None
 
-    years = data["Year"]                           # get years from data
+    years = data["Year"]  # get years from data
     print(years)
-    current_year = {'current_year': years.max()}   # set current year to be MAX(Year)
+    current_year = {'current_year': years.max()}  # set current year to be MAX(Year)
     print(current_year)
     config.update(current_year)
     print(config)
 
-
-
-    if config['base_year'] not in years.values:          # check if assigned base year is in data
+    if config['base_year'] not in years.values:  # check if assigned base year is in data
         print('base year is not in year values')
         if config['base_year'] > years.max():
             print('base year is ahead of most recently available data')
@@ -71,7 +70,6 @@ def measure_indicator_progress(indicator):
         print('not enough data')
         return None
 
-
     # determine which methodology to run
     if config['target'] is None:
         print('updating progress thresholds')
@@ -85,22 +83,24 @@ def measure_indicator_progress(indicator):
         print('running methodology 2')
         output = methodology_2(data=data, config=config)
 
-    return(output)
+    return output
+
 
 def check_auto_calc():
     print('temp')
 
+
 def config_defaults(config):
     """Set progress calculation defaults and update them from the configuration.
     Args:
-        indicator: str. Indicator number for which the configuration is from.
+        config: dict. Indicator configurations passed as a dictionary.
     Returns:
         dict: Dictionary of updated configurations.
     """
 
     # set default options for progress measurement
     defaults = default_progress_calc_options()
-    defaults.update(config) # update the defaults with any user configured inputs
+    defaults.update(config)  # update the defaults with any user configured inputs
 
     # if target is 0, set to 0.001
     if defaults['target'] == 0:
@@ -110,7 +110,7 @@ def config_defaults(config):
 
 
 def default_progress_calc_options():
-    return(
+    return (
         {
             'base_year': 2015,
             'target_year': 2030,
@@ -146,7 +146,6 @@ def update_progress_thresholds(config, method):
     else:
         progress_thresholds = {}
 
-
     print(progress_thresholds)
     config.update(progress_thresholds)
     print(config)
@@ -155,7 +154,7 @@ def update_progress_thresholds(config, method):
 
 
 def data_progress_measure(data):
-    """Checks and filters data for indicator for which progress is being calculate.
+    """Checks and filters data for indicator for which progress is being calculated.
 
     If the Year column in data contains more than 4 characters (standard year format), takes the first 4 characters.
     If data contains disaggregation columns, take only the total line data.
@@ -163,7 +162,7 @@ def data_progress_measure(data):
     Checks that there is enough data to calculate progress.
 
     Args:
-        data: DataFrame. Indicator data for which progress is being calculate.
+        data: DataFrame. Indicator data for which progress is being calculated.
     Returns:
         DataFrame: Data in allowable format for calculating progress.
     """
@@ -184,7 +183,7 @@ def data_progress_measure(data):
 
     if data.shape[0] < 1:
         print('no aggregate')
-        return(None)
+        return None
 
     return data
 
@@ -201,7 +200,7 @@ def growth_calculation(val1, val2, t1, t2):
         float: Growth value.
     """
 
-    return ( (val1 / val2) ** (1 / (t1 - t2)) ) - 1
+    return ((val1 / val2) ** (1 / (t1 - t2))) - 1
 
 
 def methodology_1(data, config):
@@ -218,22 +217,21 @@ def methodology_1(data, config):
     """
 
     direction = str(config['direction'])
-    t         = float(config['current_year'])
-    t_0       = float(config['base_year'])
-    x         = float(config['high'])
-    y         = float(config['med'])
-    z         = float(config['low'])
+    t = float(config['current_year'])
+    t_0 = float(config['base_year'])
+    x = float(config['high'])
+    y = float(config['med'])
+    z = float(config['low'])
 
     current_value = data.Value[data.Year == t].values[0]
     base_value = data.Value[data.Year == t_0].values[0]
     cagr_o = growth_calculation(current_value, base_value, t, t_0)
 
-    if direction=="negative":
-        cagr_o = -1*cagr_o
+    if direction == "negative":
+        cagr_o = -1 * cagr_o
     print('cagr_o:' + str(cagr_o))
 
     # TODO: Adopt categories to Open SDG progress categories (or make our categories work with Open SDG)
-    # TODO: Change progress labels: Negative, negligeable, fair/moderate, substantial, target achieved.
 
     if cagr_o > x:
         return "substantial_progress"
@@ -262,35 +260,30 @@ def methodology_2(data, config):
     """
 
     # TODO: how to deal with the instance of target being met then diverged from?
-    # TODO: there's something wrong with the calculation - it is outputting significant progress when should be deterioration
-    # TODO: ?????????????????????
-
 
     direction = str(config['direction'])
-    t         = float(config['current_year'])
-    t_0       = float(config['base_year'])
-    target    = float(config['target'])
-    t_tao     = float(config['target_year'])
-    x         = float(config['high'])
-    y         = float(config['med'])
-    z         = float(config['low'])
-
+    t = float(config['current_year'])
+    t_0 = float(config['base_year'])
+    target = float(config['target'])
+    t_tao = float(config['target_year'])
+    x = float(config['high'])
+    y = float(config['med'])
+    z = float(config['low'])
 
     current_value = data.Value[data.Year == t].values[0]  # get current value from data
     print('current value:' + str(current_value))
-    base_value = data.Value[data.Year == t_0].values[0]   # get base value from data
+    base_value = data.Value[data.Year == t_0].values[0]  # get base value from data
     print('base value:' + str(base_value))
 
-
     # check if the target is achieved
     if (direction == "negative" and current_value <= target) or (direction == "positive" and current_value >= target):
         return "target_achieved"
 
-    cagr_o = growth_calculation(current_value, base_value, t, t_0)   # calculating observed growth
+    cagr_o = growth_calculation(current_value, base_value, t, t_0)  # calculating observed growth
     print('cagr_o:' + str(cagr_o))
-    cagr_r = growth_calculation(target, base_value, t_tao, t_0)      # calculating theoretical growth
+    cagr_r = growth_calculation(target, base_value, t_tao, t_0)  # calculating theoretical growth
     print('cagr_r:' + str(cagr_r))
-    ratio  = cagr_o / cagr_r                                         # calculating growth ratio
+    ratio = cagr_o / cagr_r  # calculating growth ratio
     print('growth ratio:' + str(ratio))
 
     # TODO: Adopt categories to Open SDG progress categories (or make our categories work with Open SDG)
@@ -302,13 +295,11 @@ def methodology_2(data, config):
     elif z <= ratio < y:
         return "negligible_progress"
     elif ratio < z:
-        return "negative_progress"
+        return "deterioration"
     else:
         return None
 
 
-
-
 # measure_indicator_progress('6-1-1') # example with target = 0
 # measure_indicator_progress('3-2-1') # example with not enough data/fiscal year input
 # measure_indicator_progress('3-4-1')   # example with no target
@@ -337,5 +328,3 @@ def methodology_2(data, config):
 
 progress_measure = measure_indicator_progress(test_indicator)
 print(progress_measure)
-# prog_calcs = {indicator_id: progress_measure}
-# print(prog_calcs)
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-3-3.csv b/tests/assets/progress-calculation/data/indicator_3-3-3.csv
similarity index 100%
rename from tests/assets/progress-calculation/data/temp/indicator_3-3-3.csv
rename to tests/assets/progress-calculation/data/indicator_3-3-3.csv
diff --git a/tests/assets/progress-calculation/indicator-config/3-3-3.yml b/tests/assets/progress-calculation/indicator-config/3-3-3.yml
new file mode 100644
index 00000000..a8f2719f
--- /dev/null
+++ b/tests/assets/progress-calculation/indicator-config/3-3-3.yml
@@ -0,0 +1,6 @@
+foo: bar
+page_content: Hello world
+auto_progress_calculation: true
+progress_calculation_options:
+  - direction: negative
+    target: 0
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/indicator-config/17-8-1.yml b/tests/assets/progress-calculation/indicator-config/temp/17-8-1.yml
similarity index 100%
rename from tests/assets/progress-calculation/indicator-config/17-8-1.yml
rename to tests/assets/progress-calculation/indicator-config/temp/17-8-1.yml

From 749d6d39487e4af48e1ca6aa6d95940741299f0a Mon Sep 17 00:00:00 2001
From: MaiaPelletier <maia.pelletier15@gmail.com>
Date: Wed, 3 Aug 2022 15:35:57 -0400
Subject: [PATCH 04/39] docstrings and polishing

---
 tests/ProgressMeasure_test.py                 |  201 +-
 .../data/indicator_1-1-1.csv                  |    7 +
 .../data/indicator_3-3-3.csv                  |   31 -
 .../data/temp/indicator_1-2-1.csv             | 1261 ---
 .../data/temp/indicator_1-a-2.csv             |  351 -
 .../data/temp/indicator_10-2-1.csv            | 1261 ---
 .../data/temp/indicator_10-4-1.csv            |  319 -
 .../data/temp/indicator_10-c-1.csv            |    2 -
 .../data/temp/indicator_11-1-1.csv            |   10 -
 .../data/temp/indicator_11-2-1.csv            |   75 -
 .../data/temp/indicator_11-6-1.csv            |  307 -
 .../data/temp/indicator_11-6-2.csv            |   17 -
 .../data/temp/indicator_14-4-1.csv            |   10 -
 .../data/temp/indicator_14-5-1.csv            |   12 -
 .../data/temp/indicator_15-1-1.csv            |    8 -
 .../data/temp/indicator_15-2-1.csv            |   48 -
 .../data/temp/indicator_15-5-1.csv            |   18 -
 .../data/temp/indicator_15-a-1.csv            |   91 -
 .../data/temp/indicator_16-1-1.csv            |  883 --
 .../data/temp/indicator_16-1-3.csv            |    6 -
 .../data/temp/indicator_16-2-3.csv            |    4 -
 .../data/temp/indicator_16-3-1.csv            |    6 -
 .../data/temp/indicator_17-1-2.csv            |   91 -
 .../data/temp/indicator_17-2-1.csv            |    4 -
 .../data/temp/indicator_17-3-2.csv            |    2 -
 .../data/temp/indicator_17-8-1.csv            |  111 -
 .../data/temp/indicator_3-1-1.csv             |    6 -
 .../data/temp/indicator_3-2-1.csv             |   68 -
 .../data/temp/indicator_3-2-2.csv             |  361 -
 .../data/temp/indicator_3-3-1.csv             |   76 -
 .../data/temp/indicator_3-3-2.csv             |   31 -
 .../data/temp/indicator_3-3-4.csv             |   31 -
 .../data/temp/indicator_3-3-5.csv             |   21 -
 .../data/temp/indicator_3-4-1.csv             |  736 --
 .../data/temp/indicator_3-4-2.csv             |  202 -
 .../data/temp/indicator_3-5-2.csv             |   91 -
 .../data/temp/indicator_3-6-1.csv             |  991 --
 .../data/temp/indicator_3-7-2.csv             |   87 -
 .../data/temp/indicator_3-a-1.csv             |  175 -
 .../data/temp/indicator_3-b-1.csv             |   45 -
 .../data/temp/indicator_3-c-1.csv             | 2311 ----
 .../data/temp/indicator_3-d-1.csv             |    4 -
 .../data/temp/indicator_5-2-1.csv             |   13 -
 .../data/temp/indicator_5-2-2.csv             |    2 -
 .../data/temp/indicator_5-3-1.csv             |  415 -
 .../data/temp/indicator_5-4-1.csv             |  481 -
 .../data/temp/indicator_5-5-1.csv             |  207 -
 .../data/temp/indicator_5-5-2.csv             |  386 -
 .../data/temp/indicator_5-b-1.csv             |   53 -
 .../data/temp/indicator_6-1-1.csv             |   22 -
 .../data/temp/indicator_7-2-1.csv             |    2 -
 .../data/temp/indicator_7-3-1.csv             |    6 -
 .../data/temp/indicator_8-10-1.csv            |   11 -
 .../data/temp/indicator_8-8-1.csv             |   19 -
 .../data/temp/indicator_9-2-2.csv             | 9775 -----------------
 .../data/temp/indicator_9-5-1.csv             |  457 -
 .../data/temp/indicator_9-5-2.csv             |  739 --
 .../data/temp/indicator_9-c-1.csv             |   13 -
 .../indicator-config/1-1-1.yml                |    3 +
 .../indicator-config/3-3-3.yml                |    6 -
 .../indicator-config/temp/1-2-1.yml           |    4 -
 .../indicator-config/temp/1-a-2.yml           |    3 -
 .../indicator-config/temp/17-8-1.yml          |    5 -
 .../indicator-config/temp/3-1-1.yml           |    6 -
 .../indicator-config/temp/3-2-1.yml           |    6 -
 .../indicator-config/temp/3-2-2.yml           |    6 -
 .../indicator-config/temp/3-3-1.yml           |    5 -
 .../indicator-config/temp/temp.yml            |    6 -
 68 files changed, 103 insertions(+), 22920 deletions(-)
 create mode 100644 tests/assets/progress-calculation/data/indicator_1-1-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/indicator_3-3-3.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_1-2-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_1-a-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_10-2-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_10-4-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_10-c-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_11-1-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_11-2-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_11-6-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_11-6-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_14-4-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_14-5-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_15-1-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_15-2-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_15-5-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_15-a-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_16-1-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_16-1-3.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_16-2-3.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_16-3-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_17-1-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_17-2-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_17-3-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_17-8-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-1-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-2-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-2-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-3-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-3-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-3-4.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-3-5.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-4-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-4-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-5-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-6-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-7-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-a-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-b-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-c-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_3-d-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-2-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-2-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-3-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-4-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-5-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-5-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_5-b-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_6-1-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_7-2-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_7-3-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_8-10-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_8-8-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_9-2-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_9-5-1.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_9-5-2.csv
 delete mode 100644 tests/assets/progress-calculation/data/temp/indicator_9-c-1.csv
 create mode 100644 tests/assets/progress-calculation/indicator-config/1-1-1.yml
 delete mode 100644 tests/assets/progress-calculation/indicator-config/3-3-3.yml
 delete mode 100644 tests/assets/progress-calculation/indicator-config/temp/1-2-1.yml
 delete mode 100644 tests/assets/progress-calculation/indicator-config/temp/1-a-2.yml
 delete mode 100644 tests/assets/progress-calculation/indicator-config/temp/17-8-1.yml
 delete mode 100644 tests/assets/progress-calculation/indicator-config/temp/3-1-1.yml
 delete mode 100644 tests/assets/progress-calculation/indicator-config/temp/3-2-1.yml
 delete mode 100644 tests/assets/progress-calculation/indicator-config/temp/3-2-2.yml
 delete mode 100644 tests/assets/progress-calculation/indicator-config/temp/3-3-1.yml
 delete mode 100644 tests/assets/progress-calculation/indicator-config/temp/temp.yml

diff --git a/tests/ProgressMeasure_test.py b/tests/ProgressMeasure_test.py
index ed273450..33091eb9 100644
--- a/tests/ProgressMeasure_test.py
+++ b/tests/ProgressMeasure_test.py
@@ -1,97 +1,88 @@
 # TODO: Re-write docstrings
-# import pandas as pd
-# import yaml
-# import sys
-import sdg
-import os
+import pandas as pd
 
 
 def measure_indicator_progress(indicator):
-    """Assigns year values and determines methodology to be run.
+    """Sets up all needed parameters and data for progress calculation, determines methodology for calculation,
+    and returns progress measure as an output.
 
     Args:
         indicator: Indicator for which the progress is being calculated for.
     Returns:
-        output: str. A string indicating the progress measure for the indicator.
+        output: str. A string indicating the progress measurement for the indicator.
     """
 
     data = indicator.data  # get indicator data
-    print(data)
-
     config = indicator.meta  # get configurations
-    print(config)
 
-    # check if progress calculation is turned on and if inputs have been configured
-    # return None if auto progress calculation is not turned on
-    print('checking if progress calc is turned on...')
+    # checks if progress calculation is turned on
     if 'auto_progress_calculation' in config.keys():
-        print('meta field required exists')
+
+        # checks if any inputs have been configured
         if config['auto_progress_calculation']:
-            print('progress calc is turned on. continuing...')
+
             if 'progress_calculation_options' in config.keys():
-                print('taking user configured inputs')
+                # take manual user inputs
                 config = config['progress_calculation_options'][0]
-                print(config)
+
         else:
-            print('progress calc is not turned on. exit...')
             return None
+
+    # return None if auto progress calculation is not turned on
     else:
-        print('progress calc is not turned on. exit...')
         return None
 
+    # get calculation defaults and update with user inputs (if any)
     config = config_defaults(config)
-    print(config)
 
-    # get relevant data to calculate progress
+    # get relevant data to calculate progress (aggregate/total line only)
     data = data_progress_measure(data)
-    print(data)
 
     if data is None:
         return None
 
-    years = data["Year"]  # get years from data
-    print(years)
-    current_year = {'current_year': years.max()}  # set current year to be MAX(Year)
-    print(current_year)
+    # get years that exist in the data
+    years = data["Year"]
+
+    # set current year to be the most recent year that exists in data
+    current_year = {'current_year': years.max()}
+
+    # update the calculation inputs with the current year
     config.update(current_year)
-    print(config)
 
-    if config['base_year'] not in years.values:  # check if assigned base year is in data
-        print('base year is not in year values')
+    # check if the base year input exists in the data
+    if config['base_year'] not in years.values:
+        # return None if the base year input is in the future of the most recently available data
         if config['base_year'] > years.max():
-            print('base year is ahead of most recently available data')
             return None
-        config['base_year'] = years[years > 2015].min()  # if not, assign MIN(Year > 2015) to be base year
-        print('updating base year to ' + str(config['base_year']))
-    print(config)
 
-    # check if there is enough data to calculate progress
+        # if base year is not in available data and not in the future,
+        # assign it to be the minimum existing year past the base year given
+        config['base_year'] = years[years > config['base_year']].min()
+
+    # return None if there is not enough data to calculate progress (must be at least 2 data points)
     if config['current_year'] - config['base_year'] < 1:
-        print('not enough data')
         return None
 
     # determine which methodology to run
+    # if no target exists, run methodology for qualitative target. else run methodology for quantitative target.
     if config['target'] is None:
-        print('updating progress thresholds')
+        # update progress thresholds for qualitative target
         config = update_progress_thresholds(config, method=1)
-        print('running methodology 1')
+        # do progress calculation according to methodology for qualitative target
         output = methodology_1(data=data, config=config)
 
     else:
-        print('updating progress thresholds')
+        # update progress thresholds for quantitative target
         config = update_progress_thresholds(config, method=2)
-        print('running methodology 2')
+        # do progress calculation according to methodology for quantitative target
         output = methodology_2(data=data, config=config)
 
     return output
 
 
-def check_auto_calc():
-    print('temp')
-
-
 def config_defaults(config):
-    """Set progress calculation defaults and update them from the configuration.
+    """Set progress calculation defaults and update them if any user inputs exist.
     Args:
         config: dict. Indicator configurations passed as a dictionary.
     Returns:
@@ -100,9 +91,10 @@ def config_defaults(config):
 
     # set default options for progress measurement
     defaults = default_progress_calc_options()
-    defaults.update(config)  # update the defaults with any user configured inputs
+    # update the defaults with any user configured inputs
+    defaults.update(config)
 
-    # if target is 0, set to 0.001
+    # if target is 0, set to 0.001 (avoids dividing by 0 in calculation)
     if defaults['target'] == 0:
         defaults['target'] = 0.001
 
@@ -110,6 +102,7 @@ def config_defaults(config):
 
 
 def default_progress_calc_options():
+    """Provide default inputs for calculating progress."""
     return (
         {
             'base_year': 2015,
@@ -122,33 +115,29 @@ def default_progress_calc_options():
 
 
 def update_progress_thresholds(config, method):
-    """Checks for configured progress thresholds and updates based on methodology.
+    """Checks for configured progress thresholds or updates thresholds based on methodology.
     Args:
-        config: dict. Configurations for indicator for which progress is being calculated.
-        method: int. Indicates which methodology is being used. Either 1 or 2.
+        config: dict. Progress calculation inputs for indicator.
+        method: int. Indicates which methodology is being used. Either 1 (for qualitative targets) or 2 (for
+                quantitative targets).
     Returns:
-        dict: Dictionary of updated configurations.
+        dict: Dictionary of updated inputs for calculation.
     """
 
+    # TODO: allow updating of just 1 threshold (rather than all 3)
+    # if progress threshold inputs exist and are not empty, assign user input value as thresholds
+    # otherwise if progress threshold inputs are empty, use defaults
     if ('progress_thresholds' in config.keys()) & (bool(config['progress_thresholds'])):
-        # TODO: Handle potential error inputs
-        print('thresholds are configured')
         progress_thresholds = config['progress_thresholds']
-
     elif method == 1:
-        print('thresholds are not configured, use defaults for method1')
         progress_thresholds = {'high': 0.01, 'med': 0, 'low': -0.01}
-
     elif method == 2:
-        print('thresholds are not configured, use defaults for method2')
         progress_thresholds = {'high': 0.95, 'med': 0.6, 'low': 0}
-
     else:
         progress_thresholds = {}
 
-    print(progress_thresholds)
+    # update inputs with thresholds
     config.update(progress_thresholds)
-    print(config)
 
     return config
 
@@ -164,25 +153,26 @@ def data_progress_measure(data):
     Args:
         data: DataFrame. Indicator data for which progress is being calculated.
     Returns:
-        DataFrame: Data in allowable format for calculating progress.
+        DataFrame: Data in valid format for calculating progress.
     """
 
     # check if the year value contains more than 4 digits (indicating a range of years)
-    print('checking the year column')
     if (data['Year'].astype(str).str.len() > 4).any():
-        data['Year'] = data['Year'].astype(str).str.slice(0, 4).astype(int)  # take the first year in the range
+        # take the first year in the range
+        data['Year'] = data['Year'].astype(str).str.slice(0, 4).astype(int)
 
-    # get just the aggregate values from data
-    print('filtering out aggregates (if any)')
+    # get just the total line values from data
     cols = data.columns.values
     if len(cols) > 2:
         cols = cols[1:-1]
         data = data[data[cols].isna().all('columns')]
         data = data.iloc[:, [0, -1]]
-    data = data[data["Value"].notna()]  # remove any NA values from data
 
+    # remove any NA values from data
+    data = data[data["Value"].notna()]
+
+    # returns None if no rows in data (no total line to calculate progress)
     if data.shape[0] < 1:
-        print('no aggregate')
         return None
 
     return data
@@ -223,16 +213,18 @@ def methodology_1(data, config):
     y = float(config['med'])
     z = float(config['low'])
 
+    # get current value from data
     current_value = data.Value[data.Year == t].values[0]
+    # get value from base year from data
     base_value = data.Value[data.Year == t_0].values[0]
+    # calculate growth
     cagr_o = growth_calculation(current_value, base_value, t, t_0)
 
+    # use negative growth value if desired direction of progress is negative
     if direction == "negative":
         cagr_o = -1 * cagr_o
-    print('cagr_o:' + str(cagr_o))
-
-    # TODO: Adopt categories to Open SDG progress categories (or make our categories work with Open SDG)
 
+    # compare growth rate to progress thresholds to return progress measure
     if cagr_o > x:
         return "substantial_progress"
     elif y < cagr_o <= x:
@@ -259,8 +251,6 @@ def methodology_2(data, config):
         str: Progress measure.
     """
 
-    # TODO: how to deal with the instance of target being met then diverged from?
-
     direction = str(config['direction'])
     t = float(config['current_year'])
     t_0 = float(config['base_year'])
@@ -270,24 +260,23 @@ def methodology_2(data, config):
     y = float(config['med'])
     z = float(config['low'])
 
-    current_value = data.Value[data.Year == t].values[0]  # get current value from data
-    print('current value:' + str(current_value))
-    base_value = data.Value[data.Year == t_0].values[0]  # get base value from data
-    print('base value:' + str(base_value))
+    # get current value from data
+    current_value = data.Value[data.Year == t].values[0]
+    # get base value from data
+    base_value = data.Value[data.Year == t_0].values[0]
 
     # check if the target is achieved
     if (direction == "negative" and current_value <= target) or (direction == "positive" and current_value >= target):
         return "target_achieved"
 
-    cagr_o = growth_calculation(current_value, base_value, t, t_0)  # calculating observed growth
-    print('cagr_o:' + str(cagr_o))
-    cagr_r = growth_calculation(target, base_value, t_tao, t_0)  # calculating theoretical growth
-    print('cagr_r:' + str(cagr_r))
-    ratio = cagr_o / cagr_r  # calculating growth ratio
-    print('growth ratio:' + str(ratio))
+    # calculate observed growth
+    cagr_o = growth_calculation(current_value, base_value, t, t_0)
+    # calculate theoretical growth
+    cagr_r = growth_calculation(target, base_value, t_tao, t_0)
+    # calculating growth ratio
+    ratio = cagr_o / cagr_r
 
-    # TODO: Adopt categories to Open SDG progress categories (or make our categories work with Open SDG)
-    # compare growth ratio to progress thresholds & return output
+    # compare growth ratio to progress thresholds to return progress measure
     if ratio >= x:
         return "substantial_progress"
     elif y <= ratio < x:
@@ -300,31 +289,27 @@ def methodology_2(data, config):
         return None
 
 
-# measure_indicator_progress('6-1-1') # example with target = 0
-# measure_indicator_progress('3-2-1') # example with not enough data/fiscal year input
-# measure_indicator_progress('3-4-1')   # example with no target
-
-data_pattern = os.path.join('assets', 'progress-calculation', 'data', '*-*.csv')
-data_input = sdg.inputs.InputCsvData(path_pattern=data_pattern)
-
-# Input metadata from YAML files matching this pattern: tests/meta/*-*.md
-meta_pattern = os.path.join('assets', 'progress-calculation', 'indicator-config', '*-*.yml')
-meta_input = sdg.inputs.InputYamlMeta(path_pattern=meta_pattern)
-
-# Combine these inputs into one list
-inputs = [data_input, meta_input]
-
-# Use a Prose.io file for the metadata schema.
-schema_path = os.path.join('assets', 'meta', 'metadata_schema.yml')
-schema = sdg.schemas.SchemaInputOpenSdg(schema_path=schema_path)
-
-opensdg_output = sdg.outputs.OutputOpenSdg(
-    inputs=inputs,
-    schema=schema,
-    output_folder='_site')
-
-test_indicator = opensdg_output.test_indicator()
-indicator_id = test_indicator.meta['indicator_number']
+# data_pattern = os.path.join('assets', 'progress-calculation', 'data', '*-*.csv')
+# data_input = sdg.inputs.InputCsvData(path_pattern=data_pattern)
+#
+# # Input metadata from YAML files matching this pattern: tests/meta/*-*.md
+# meta_pattern = os.path.join('assets', 'progress-calculation', 'indicator-config', '*-*.yml')
+# meta_input = sdg.inputs.InputYamlMeta(path_pattern=meta_pattern)
+#
+# # Combine these inputs into one list
+# inputs = [data_input, meta_input]
+#
+# # Use a Prose.io file for the metadata schema.
+# schema_path = os.path.join('assets', 'meta', 'metadata_schema.yml')
+# schema = sdg.schemas.SchemaInputOpenSdg(schema_path=schema_path)
+#
+# opensdg_output = sdg.outputs.OutputOpenSdg(
+#     inputs=inputs,
+#     schema=schema,
+#     output_folder='_site')
+#
+# test_indicator = opensdg_output.test_indicator()
+# indicator_id = test_indicator.meta['indicator_number']
 
 progress_measure = measure_indicator_progress(test_indicator)
 print(progress_measure)
diff --git a/tests/assets/progress-calculation/data/indicator_1-1-1.csv b/tests/assets/progress-calculation/data/indicator_1-1-1.csv
new file mode 100644
index 00000000..cc853919
--- /dev/null
+++ b/tests/assets/progress-calculation/data/indicator_1-1-1.csv
@@ -0,0 +1,7 @@
+Year,SEX,Value
+2020,,100
+2021,,120
+2020,M,50
+2021,M,60
+2020,F,70
+2021,F,80
diff --git a/tests/assets/progress-calculation/data/indicator_3-3-3.csv b/tests/assets/progress-calculation/data/indicator_3-3-3.csv
deleted file mode 100644
index 8b1d0098..00000000
--- a/tests/assets/progress-calculation/data/indicator_3-3-3.csv
+++ /dev/null
@@ -1,31 +0,0 @@
-Year,Sex,Value
-2010,,1.51
-2011,,1.51
-2012,,1.38
-2013,,1.4
-2014,,1.27
-2015,,1.55
-2016,,1.69
-2017,,1.65
-2018,,1.62
-2019,,1.82
-2010,Male,2.09
-2011,Male,2.03
-2012,Male,1.91
-2013,Male,1.87
-2014,Male,1.67
-2015,Male,1.94
-2016,Male,2.07
-2017,Male,2.08
-2018,Male,2.07
-2019,Male,2.35
-2010,Female,0.93
-2011,Female,0.96
-2012,Female,0.86
-2013,Female,0.93
-2014,Female,0.86
-2015,Female,1.16
-2016,Female,1.32
-2017,Female,1.22
-2018,Female,1.15
-2019,Female,1.28
diff --git a/tests/assets/progress-calculation/data/temp/indicator_1-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_1-2-1.csv
deleted file mode 100644
index c7c0dbb2..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_1-2-1.csv
+++ /dev/null
@@ -1,1261 +0,0 @@
-Year,Geography,Persons in low income,Value
-2015,,,14.5
-2016,,,12.8
-2017,,,11.7
-2018,,,11
-2019,,,10.1
-2015,Alberta,All persons,10
-2016,Alberta,All persons,10.8
-2017,Alberta,All persons,9
-2018,Alberta,All persons,9.4
-2019,Alberta,All persons,8.2
-2015,Alberta,Females,10.5
-2016,Alberta,Females,11.2
-2017,Alberta,Females,9.7
-2018,Alberta,Females,9.2
-2019,Alberta,Females,7.9
-2015,Alberta,"Females, 18 to 64 years",10.1
-2016,Alberta,"Females, 18 to 64 years",12.4
-2017,Alberta,"Females, 18 to 64 years",11.4
-2018,Alberta,"Females, 18 to 64 years",10.4
-2019,Alberta,"Females, 18 to 64 years",9.6
-2015,Alberta,"Females, 65 years and over",3.5
-2016,Alberta,"Females, 65 years and over",4.3
-2017,Alberta,"Females, 65 years and over",3.1
-2018,Alberta,"Females, 65 years and over",4.3
-2019,Alberta,"Females, 65 years and over",2.7
-2015,Alberta,"Females, under 18 years",15.9
-2016,Alberta,"Females, under 18 years",11.6
-2017,Alberta,"Females, under 18 years",8.4
-2018,Alberta,"Females, under 18 years",8.6
-2019,Alberta,"Females, under 18 years",6.5
-2015,Alberta,Males,9.5
-2016,Alberta,Males,10.5
-2017,Alberta,Males,8.2
-2018,Alberta,Males,9.6
-2019,Alberta,Males,8.5
-2015,Alberta,"Males, 18 to 64 years",10.3
-2016,Alberta,"Males, 18 to 64 years",11.2
-2017,Alberta,"Males, 18 to 64 years",9.4
-2018,Alberta,"Males, 18 to 64 years",10.7
-2019,Alberta,"Males, 18 to 64 years",9.6
-2015,Alberta,"Males, 65 years and over",NA
-2016,Alberta,"Males, 65 years and over",4.7
-2017,Alberta,"Males, 65 years and over",2.7
-2018,Alberta,"Males, 65 years and over",2.5
-2019,Alberta,"Males, 65 years and over",4.1
-2015,Alberta,"Males, under 18 years",10.1
-2016,Alberta,"Males, under 18 years",11.2
-2017,Alberta,"Males, under 18 years",7.4
-2018,Alberta,"Males, under 18 years",9.8
-2019,Alberta,"Males, under 18 years",8
-2015,Alberta,Persons 18 to 64 years,10.2
-2016,Alberta,Persons 18 to 64 years,11.8
-2017,Alberta,Persons 18 to 64 years,10.4
-2018,Alberta,Persons 18 to 64 years,10.6
-2019,Alberta,Persons 18 to 64 years,9.6
-2015,Alberta,Persons 65 years and over,3.2
-2016,Alberta,Persons 65 years and over,4.5
-2017,Alberta,Persons 65 years and over,2.9
-2018,Alberta,Persons 65 years and over,3.5
-2019,Alberta,Persons 65 years and over,3.3
-2015,Alberta,Persons under 18 years,12.9
-2016,Alberta,Persons under 18 years,11.4
-2017,Alberta,Persons under 18 years,7.9
-2018,Alberta,Persons under 18 years,9.2
-2019,Alberta,Persons under 18 years,7.2
-2015,Atlantic provinces,All persons,15.7
-2016,Atlantic provinces,All persons,14.2
-2017,Atlantic provinces,All persons,13.2
-2018,Atlantic provinces,All persons,11.7
-2019,Atlantic provinces,All persons,10.9
-2015,Atlantic provinces,Females,16.4
-2016,Atlantic provinces,Females,14.7
-2017,Atlantic provinces,Females,14.3
-2018,Atlantic provinces,Females,11.8
-2019,Atlantic provinces,Females,12.1
-2015,Atlantic provinces,"Females, 18 to 64 years",16.9
-2016,Atlantic provinces,"Females, 18 to 64 years",16.1
-2017,Atlantic provinces,"Females, 18 to 64 years",15.7
-2018,Atlantic provinces,"Females, 18 to 64 years",13
-2019,Atlantic provinces,"Females, 18 to 64 years",13.1
-2015,Atlantic provinces,"Females, 65 years and over",12.3
-2016,Atlantic provinces,"Females, 65 years and over",9.5
-2017,Atlantic provinces,"Females, 65 years and over",8.2
-2018,Atlantic provinces,"Females, 65 years and over",8
-2019,Atlantic provinces,"Females, 65 years and over",8.4
-2015,Atlantic provinces,"Females, under 18 years",19.3
-2016,Atlantic provinces,"Females, under 18 years",16
-2017,Atlantic provinces,"Females, under 18 years",17.1
-2018,Atlantic provinces,"Females, under 18 years",12.3
-2019,Atlantic provinces,"Females, under 18 years",13.3
-2015,Atlantic provinces,Males,15
-2016,Atlantic provinces,Males,13.7
-2017,Atlantic provinces,Males,12
-2018,Atlantic provinces,Males,11.6
-2019,Atlantic provinces,Males,9.6
-2015,Atlantic provinces,"Males, 18 to 64 years",16
-2016,Atlantic provinces,"Males, 18 to 64 years",14.5
-2017,Atlantic provinces,"Males, 18 to 64 years",13
-2018,Atlantic provinces,"Males, 18 to 64 years",13.4
-2019,Atlantic provinces,"Males, 18 to 64 years",10.4
-2015,Atlantic provinces,"Males, 65 years and over",7.9
-2016,Atlantic provinces,"Males, 65 years and over",7.2
-2017,Atlantic provinces,"Males, 65 years and over",5.4
-2018,Atlantic provinces,"Males, 65 years and over",4.7
-2019,Atlantic provinces,"Males, 65 years and over",4.6
-2015,Atlantic provinces,"Males, under 18 years",18.7
-2016,Atlantic provinces,"Males, under 18 years",17.4
-2017,Atlantic provinces,"Males, under 18 years",15.2
-2018,Atlantic provinces,"Males, under 18 years",12.8
-2019,Atlantic provinces,"Males, under 18 years",12.1
-2015,Atlantic provinces,Persons 18 to 64 years,16.4
-2016,Atlantic provinces,Persons 18 to 64 years,15.3
-2017,Atlantic provinces,Persons 18 to 64 years,14.4
-2018,Atlantic provinces,Persons 18 to 64 years,13.2
-2019,Atlantic provinces,Persons 18 to 64 years,11.8
-2015,Atlantic provinces,Persons 65 years and over,10.3
-2016,Atlantic provinces,Persons 65 years and over,8.4
-2017,Atlantic provinces,Persons 65 years and over,6.9
-2018,Atlantic provinces,Persons 65 years and over,6.5
-2019,Atlantic provinces,Persons 65 years and over,6.6
-2015,Atlantic provinces,Persons under 18 years,19
-2016,Atlantic provinces,Persons under 18 years,16.7
-2017,Atlantic provinces,Persons under 18 years,16.1
-2018,Atlantic provinces,Persons under 18 years,12.6
-2019,Atlantic provinces,Persons under 18 years,12.7
-2015,British Columbia,All persons,17.8
-2016,British Columbia,All persons,15.3
-2017,British Columbia,All persons,13.6
-2018,British Columbia,All persons,12.1
-2019,British Columbia,All persons,10.8
-2015,British Columbia,Females,17.8
-2016,British Columbia,Females,15.1
-2017,British Columbia,Females,13.7
-2018,British Columbia,Females,11.8
-2019,British Columbia,Females,11.6
-2015,British Columbia,"Females, 18 to 64 years",19.4
-2016,British Columbia,"Females, 18 to 64 years",16.1
-2017,British Columbia,"Females, 18 to 64 years",15.4
-2018,British Columbia,"Females, 18 to 64 years",13.6
-2019,British Columbia,"Females, 18 to 64 years",14.2
-2015,British Columbia,"Females, 65 years and over",11.5
-2016,British Columbia,"Females, 65 years and over",9.8
-2017,British Columbia,"Females, 65 years and over",9.6
-2018,British Columbia,"Females, 65 years and over",8.3
-2019,British Columbia,"Females, 65 years and over",6.7
-2015,British Columbia,"Females, under 18 years",18.4
-2016,British Columbia,"Females, under 18 years",17
-2017,British Columbia,"Females, under 18 years",11.7
-2018,British Columbia,"Females, under 18 years",9.3
-2019,British Columbia,"Females, under 18 years",7.4
-2015,British Columbia,Males,17.7
-2016,British Columbia,Males,15.5
-2017,British Columbia,Males,13.6
-2018,British Columbia,Males,12.5
-2019,British Columbia,Males,10
-2015,British Columbia,"Males, 18 to 64 years",20.2
-2016,British Columbia,"Males, 18 to 64 years",17
-2017,British Columbia,"Males, 18 to 64 years",14.7
-2018,British Columbia,"Males, 18 to 64 years",14
-2019,British Columbia,"Males, 18 to 64 years",12.4
-2015,British Columbia,"Males, 65 years and over",11
-2016,British Columbia,"Males, 65 years and over",7.8
-2017,British Columbia,"Males, 65 years and over",8.8
-2018,British Columbia,"Males, 65 years and over",7.2
-2019,British Columbia,"Males, 65 years and over",5.1
-2015,British Columbia,"Males, under 18 years",14.9
-2016,British Columbia,"Males, under 18 years",17.1
-2017,British Columbia,"Males, under 18 years",14.3
-2018,British Columbia,"Males, under 18 years",12.3
-2019,British Columbia,"Males, under 18 years",6.9
-2015,British Columbia,Persons 18 to 64 years,19.8
-2016,British Columbia,Persons 18 to 64 years,16.6
-2017,British Columbia,Persons 18 to 64 years,15
-2018,British Columbia,Persons 18 to 64 years,13.8
-2019,British Columbia,Persons 18 to 64 years,13.3
-2015,British Columbia,Persons 65 years and over,11.3
-2016,British Columbia,Persons 65 years and over,8.9
-2017,British Columbia,Persons 65 years and over,9.2
-2018,British Columbia,Persons 65 years and over,7.7
-2019,British Columbia,Persons 65 years and over,5.9
-2015,British Columbia,Persons under 18 years,16.6
-2016,British Columbia,Persons under 18 years,17
-2017,British Columbia,Persons under 18 years,13
-2018,British Columbia,Persons under 18 years,10.9
-2019,British Columbia,Persons under 18 years,7.2
-2015,"Calgary, Alberta",All persons,12.4
-2016,"Calgary, Alberta",All persons,11.5
-2017,"Calgary, Alberta",All persons,8.4
-2018,"Calgary, Alberta",All persons,12.3
-2019,"Calgary, Alberta",All persons,5.7
-2015,"Calgary, Alberta",Females,13
-2016,"Calgary, Alberta",Females,12.4
-2017,"Calgary, Alberta",Females,8.2
-2018,"Calgary, Alberta",Females,11.5
-2019,"Calgary, Alberta",Females,5.8
-2015,"Calgary, Alberta","Females, 18 to 64 years",12.2
-2016,"Calgary, Alberta","Females, 18 to 64 years",13.8
-2017,"Calgary, Alberta","Females, 18 to 64 years",9
-2018,"Calgary, Alberta","Females, 18 to 64 years",13.1
-2019,"Calgary, Alberta","Females, 18 to 64 years",6.7
-2015,"Calgary, Alberta","Females, 65 years and over",NA
-2016,"Calgary, Alberta","Females, 65 years and over",NA
-2017,"Calgary, Alberta","Females, 65 years and over",NA
-2018,"Calgary, Alberta","Females, 65 years and over",NA
-2019,"Calgary, Alberta","Females, 65 years and over",NA
-2015,"Calgary, Alberta","Females, under 18 years",20.4
-2016,"Calgary, Alberta","Females, under 18 years",13
-2017,"Calgary, Alberta","Females, under 18 years",9.3
-2018,"Calgary, Alberta","Females, under 18 years",10.7
-2019,"Calgary, Alberta","Females, under 18 years",NA
-2015,"Calgary, Alberta",Males,11.9
-2016,"Calgary, Alberta",Males,10.7
-2017,"Calgary, Alberta",Males,8.6
-2018,"Calgary, Alberta",Males,13.1
-2019,"Calgary, Alberta",Males,5.6
-2015,"Calgary, Alberta","Males, 18 to 64 years",12.8
-2016,"Calgary, Alberta","Males, 18 to 64 years",11.3
-2017,"Calgary, Alberta","Males, 18 to 64 years",10.2
-2018,"Calgary, Alberta","Males, 18 to 64 years",14.5
-2019,"Calgary, Alberta","Males, 18 to 64 years",6.2
-2015,"Calgary, Alberta","Males, 65 years and over",NA
-2016,"Calgary, Alberta","Males, 65 years and over",NA
-2017,"Calgary, Alberta","Males, 65 years and over",NA
-2018,"Calgary, Alberta","Males, 65 years and over",NA
-2019,"Calgary, Alberta","Males, 65 years and over",NA
-2015,"Calgary, Alberta","Males, under 18 years",NA
-2016,"Calgary, Alberta","Males, under 18 years",10.6
-2017,"Calgary, Alberta","Males, under 18 years",6.5
-2018,"Calgary, Alberta","Males, under 18 years",14.2
-2019,"Calgary, Alberta","Males, under 18 years",NA
-2015,"Calgary, Alberta",Persons 18 to 64 years,12.5
-2016,"Calgary, Alberta",Persons 18 to 64 years,12.6
-2017,"Calgary, Alberta",Persons 18 to 64 years,9.6
-2018,"Calgary, Alberta",Persons 18 to 64 years,13.8
-2019,"Calgary, Alberta",Persons 18 to 64 years,6.5
-2015,"Calgary, Alberta",Persons 65 years and over,NA
-2016,"Calgary, Alberta",Persons 65 years and over,NA
-2017,"Calgary, Alberta",Persons 65 years and over,NA
-2018,"Calgary, Alberta",Persons 65 years and over,NA
-2019,"Calgary, Alberta",Persons 65 years and over,NA
-2015,"Calgary, Alberta",Persons under 18 years,16.2
-2016,"Calgary, Alberta",Persons under 18 years,11.7
-2017,"Calgary, Alberta",Persons under 18 years,8.1
-2018,"Calgary, Alberta",Persons under 18 years,12.6
-2019,"Calgary, Alberta",Persons under 18 years,NA
-2015,Canada,Females,14.8
-2016,Canada,Females,13.3
-2017,Canada,Females,11.9
-2018,Canada,Females,10.9
-2019,Canada,Females,10.4
-2015,Canada,"Females, 18 to 64 years",16
-2016,Canada,"Females, 18 to 64 years",14.4
-2017,Canada,"Females, 18 to 64 years",13.5
-2018,Canada,"Females, 18 to 64 years",12.4
-2019,Canada,"Females, 18 to 64 years",12
-2015,Canada,"Females, 65 years and over",7.9
-2016,Canada,"Females, 65 years and over",7.5
-2017,Canada,"Females, 65 years and over",6.5
-2018,Canada,"Females, 65 years and over",6.2
-2019,Canada,"Females, 65 years and over",5.9
-2015,Canada,"Females, under 18 years",16.8
-2016,Canada,"Females, under 18 years",15.1
-2017,Canada,"Females, under 18 years",11.8
-2018,Canada,"Females, under 18 years",10.2
-2019,Canada,"Females, under 18 years",9.7
-2015,Canada,Males,14.2
-2016,Canada,Males,12.3
-2017,Canada,Males,11.5
-2018,Canada,Males,11.1
-2019,Canada,Males,9.8
-2015,Canada,"Males, 18 to 64 years",15.4
-2016,Canada,"Males, 18 to 64 years",13.5
-2017,Canada,"Males, 18 to 64 years",12.9
-2018,Canada,"Males, 18 to 64 years",12.5
-2019,Canada,"Males, 18 to 64 years",11.2
-2015,Canada,"Males, 65 years and over",6
-2016,Canada,"Males, 65 years and over",6.3
-2017,Canada,"Males, 65 years and over",5.4
-2018,Canada,"Males, 65 years and over",5
-2019,Canada,"Males, 65 years and over",4.7
-2015,Canada,"Males, under 18 years",16.1
-2016,Canada,"Males, under 18 years",13
-2017,Canada,"Males, under 18 years",11.5
-2018,Canada,"Males, under 18 years",11.3
-2019,Canada,"Males, under 18 years",9.6
-2015,Canada,Persons 18 to 64 years,15.7
-2016,Canada,Persons 18 to 64 years,14
-2017,Canada,Persons 18 to 64 years,13.2
-2018,Canada,Persons 18 to 64 years,12.5
-2019,Canada,Persons 18 to 64 years,11.6
-2015,Canada,Persons 65 years and over,7
-2016,Canada,Persons 65 years and over,7
-2017,Canada,Persons 65 years and over,6
-2018,Canada,Persons 65 years and over,5.6
-2019,Canada,Persons 65 years and over,5.4
-2015,Canada,Persons under 18 years,16.4
-2016,Canada,Persons under 18 years,14
-2017,Canada,Persons under 18 years,11.6
-2018,Canada,Persons under 18 years,10.8
-2019,Canada,Persons under 18 years,9.7
-2015,"Edmonton, Alberta",All persons,7.8
-2016,"Edmonton, Alberta",All persons,9.2
-2017,"Edmonton, Alberta",All persons,10.2
-2018,"Edmonton, Alberta",All persons,7.5
-2019,"Edmonton, Alberta",All persons,10.1
-2015,"Edmonton, Alberta",Females,8
-2016,"Edmonton, Alberta",Females,9.1
-2017,"Edmonton, Alberta",Females,11.8
-2018,"Edmonton, Alberta",Females,8.2
-2019,"Edmonton, Alberta",Females,10.4
-2015,"Edmonton, Alberta","Females, 18 to 64 years",7.1
-2016,"Edmonton, Alberta","Females, 18 to 64 years",10.4
-2017,"Edmonton, Alberta","Females, 18 to 64 years",13.8
-2018,"Edmonton, Alberta","Females, 18 to 64 years",9.5
-2019,"Edmonton, Alberta","Females, 18 to 64 years",12.1
-2015,"Edmonton, Alberta","Females, 65 years and over",NA
-2016,"Edmonton, Alberta","Females, 65 years and over",NA
-2017,"Edmonton, Alberta","Females, 65 years and over",NA
-2018,"Edmonton, Alberta","Females, 65 years and over",NA
-2019,"Edmonton, Alberta","Females, 65 years and over",NA
-2015,"Edmonton, Alberta","Females, under 18 years",NA
-2016,"Edmonton, Alberta","Females, under 18 years",NA
-2017,"Edmonton, Alberta","Females, under 18 years",NA
-2018,"Edmonton, Alberta","Females, under 18 years",6.8
-2019,"Edmonton, Alberta","Females, under 18 years",NA
-2015,"Edmonton, Alberta",Males,7.7
-2016,"Edmonton, Alberta",Males,9.3
-2017,"Edmonton, Alberta",Males,8.6
-2018,"Edmonton, Alberta",Males,6.9
-2019,"Edmonton, Alberta",Males,9.9
-2015,"Edmonton, Alberta","Males, 18 to 64 years",8.8
-2016,"Edmonton, Alberta","Males, 18 to 64 years",10.9
-2017,"Edmonton, Alberta","Males, 18 to 64 years",9.4
-2018,"Edmonton, Alberta","Males, 18 to 64 years",7.8
-2019,"Edmonton, Alberta","Males, 18 to 64 years",11.2
-2015,"Edmonton, Alberta","Males, 65 years and over",NA
-2016,"Edmonton, Alberta","Males, 65 years and over",NA
-2017,"Edmonton, Alberta","Males, 65 years and over",NA
-2018,"Edmonton, Alberta","Males, 65 years and over",NA
-2019,"Edmonton, Alberta","Males, 65 years and over",NA
-2015,"Edmonton, Alberta","Males, under 18 years",NA
-2016,"Edmonton, Alberta","Males, under 18 years",NA
-2017,"Edmonton, Alberta","Males, under 18 years",NA
-2018,"Edmonton, Alberta","Males, under 18 years",6.2
-2019,"Edmonton, Alberta","Males, under 18 years",NA
-2015,"Edmonton, Alberta",Persons 18 to 64 years,8
-2016,"Edmonton, Alberta",Persons 18 to 64 years,10.7
-2017,"Edmonton, Alberta",Persons 18 to 64 years,11.6
-2018,"Edmonton, Alberta",Persons 18 to 64 years,8.6
-2019,"Edmonton, Alberta",Persons 18 to 64 years,11.6
-2015,"Edmonton, Alberta",Persons 65 years and over,NA
-2016,"Edmonton, Alberta",Persons 65 years and over,NA
-2017,"Edmonton, Alberta",Persons 65 years and over,4.7
-2018,"Edmonton, Alberta",Persons 65 years and over,NA
-2019,"Edmonton, Alberta",Persons 65 years and over,NA
-2015,"Edmonton, Alberta",Persons under 18 years,NA
-2016,"Edmonton, Alberta",Persons under 18 years,8.1
-2017,"Edmonton, Alberta",Persons under 18 years,8.4
-2018,"Edmonton, Alberta",Persons under 18 years,6.5
-2019,"Edmonton, Alberta",Persons under 18 years,NA
-2015,Manitoba,All persons,14
-2016,Manitoba,All persons,12.3
-2017,Manitoba,All persons,11
-2018,Manitoba,All persons,10.9
-2019,Manitoba,All persons,11.4
-2015,Manitoba,Females,13.5
-2016,Manitoba,Females,12.2
-2017,Manitoba,Females,11.4
-2018,Manitoba,Females,10.7
-2019,Manitoba,Females,10.9
-2015,Manitoba,"Females, 18 to 64 years",14.3
-2016,Manitoba,"Females, 18 to 64 years",13.2
-2017,Manitoba,"Females, 18 to 64 years",12
-2018,Manitoba,"Females, 18 to 64 years",11.3
-2019,Manitoba,"Females, 18 to 64 years",11.7
-2015,Manitoba,"Females, 65 years and over",7.7
-2016,Manitoba,"Females, 65 years and over",5.7
-2017,Manitoba,"Females, 65 years and over",6.1
-2018,Manitoba,"Females, 65 years and over",6.6
-2019,Manitoba,"Females, 65 years and over",5.5
-2015,Manitoba,"Females, under 18 years",15.4
-2016,Manitoba,"Females, under 18 years",14.3
-2017,Manitoba,"Females, under 18 years",13.8
-2018,Manitoba,"Females, under 18 years",12.2
-2019,Manitoba,"Females, under 18 years",13.1
-2015,Manitoba,Males,14.4
-2016,Manitoba,Males,12.4
-2017,Manitoba,Males,10.7
-2018,Manitoba,Males,11
-2019,Manitoba,Males,11.8
-2015,Manitoba,"Males, 18 to 64 years",13.8
-2016,Manitoba,"Males, 18 to 64 years",12.8
-2017,Manitoba,"Males, 18 to 64 years",11.7
-2018,Manitoba,"Males, 18 to 64 years",11.4
-2019,Manitoba,"Males, 18 to 64 years",12
-2015,Manitoba,"Males, 65 years and over",3.8
-2016,Manitoba,"Males, 65 years and over",3.9
-2017,Manitoba,"Males, 65 years and over",4.6
-2018,Manitoba,"Males, 65 years and over",4.9
-2019,Manitoba,"Males, 65 years and over",5.2
-2015,Manitoba,"Males, under 18 years",22.8
-2016,Manitoba,"Males, under 18 years",16.7
-2017,Manitoba,"Males, under 18 years",11.5
-2018,Manitoba,"Males, under 18 years",13.9
-2019,Manitoba,"Males, under 18 years",15.7
-2015,Manitoba,Persons 18 to 64 years,14.1
-2016,Manitoba,Persons 18 to 64 years,13
-2017,Manitoba,Persons 18 to 64 years,11.9
-2018,Manitoba,Persons 18 to 64 years,11.4
-2019,Manitoba,Persons 18 to 64 years,11.8
-2015,Manitoba,Persons 65 years and over,5.9
-2016,Manitoba,Persons 65 years and over,4.9
-2017,Manitoba,Persons 65 years and over,5.4
-2018,Manitoba,Persons 65 years and over,5.8
-2019,Manitoba,Persons 65 years and over,5.4
-2015,Manitoba,Persons under 18 years,19.2
-2016,Manitoba,Persons under 18 years,15.6
-2017,Manitoba,Persons under 18 years,12.7
-2018,Manitoba,Persons under 18 years,13.1
-2019,Manitoba,Persons under 18 years,14.4
-2015,"Montréal, Quebec",All persons,17.5
-2016,"Montréal, Quebec",All persons,12.9
-2017,"Montréal, Quebec",All persons,14
-2018,"Montréal, Quebec",All persons,11.3
-2019,"Montréal, Quebec",All persons,10.3
-2015,"Montréal, Quebec",Females,17.7
-2016,"Montréal, Quebec",Females,12.7
-2017,"Montréal, Quebec",Females,13.9
-2018,"Montréal, Quebec",Females,11.8
-2019,"Montréal, Quebec",Females,9.5
-2015,"Montréal, Quebec","Females, 18 to 64 years",20
-2016,"Montréal, Quebec","Females, 18 to 64 years",13
-2017,"Montréal, Quebec","Females, 18 to 64 years",14.6
-2018,"Montréal, Quebec","Females, 18 to 64 years",13.9
-2019,"Montréal, Quebec","Females, 18 to 64 years",11.3
-2015,"Montréal, Quebec","Females, 65 years and over",7.8
-2016,"Montréal, Quebec","Females, 65 years and over",9.6
-2017,"Montréal, Quebec","Females, 65 years and over",10.2
-2018,"Montréal, Quebec","Females, 65 years and over",7.6
-2019,"Montréal, Quebec","Females, 65 years and over",6.8
-2015,"Montréal, Quebec","Females, under 18 years",18.5
-2016,"Montréal, Quebec","Females, under 18 years",14.5
-2017,"Montréal, Quebec","Females, under 18 years",14.6
-2018,"Montréal, Quebec","Females, under 18 years",9
-2019,"Montréal, Quebec","Females, under 18 years",6.2
-2015,"Montréal, Quebec",Males,17.3
-2016,"Montréal, Quebec",Males,13.2
-2017,"Montréal, Quebec",Males,14.1
-2018,"Montréal, Quebec",Males,10.7
-2019,"Montréal, Quebec",Males,11
-2015,"Montréal, Quebec","Males, 18 to 64 years",18.6
-2016,"Montréal, Quebec","Males, 18 to 64 years",14.1
-2017,"Montréal, Quebec","Males, 18 to 64 years",15.2
-2018,"Montréal, Quebec","Males, 18 to 64 years",12.6
-2019,"Montréal, Quebec","Males, 18 to 64 years",13
-2015,"Montréal, Quebec","Males, 65 years and over",NA
-2016,"Montréal, Quebec","Males, 65 years and over",10.2
-2017,"Montréal, Quebec","Males, 65 years and over",8.3
-2018,"Montréal, Quebec","Males, 65 years and over",4.6
-2019,"Montréal, Quebec","Males, 65 years and over",NA
-2015,"Montréal, Quebec","Males, under 18 years",20.9
-2016,"Montréal, Quebec","Males, under 18 years",12.1
-2017,"Montréal, Quebec","Males, under 18 years",14.5
-2018,"Montréal, Quebec","Males, under 18 years",9.2
-2019,"Montréal, Quebec","Males, under 18 years",8.5
-2015,"Montréal, Quebec",Persons 18 to 64 years,19.3
-2016,"Montréal, Quebec",Persons 18 to 64 years,13.6
-2017,"Montréal, Quebec",Persons 18 to 64 years,14.9
-2018,"Montréal, Quebec",Persons 18 to 64 years,13.3
-2019,"Montréal, Quebec",Persons 18 to 64 years,12.2
-2015,"Montréal, Quebec",Persons 65 years and over,7.3
-2016,"Montréal, Quebec",Persons 65 years and over,9.9
-2017,"Montréal, Quebec",Persons 65 years and over,9.4
-2018,"Montréal, Quebec",Persons 65 years and over,6.2
-2019,"Montréal, Quebec",Persons 65 years and over,6.3
-2015,"Montréal, Quebec",Persons under 18 years,19.6
-2016,"Montréal, Quebec",Persons under 18 years,13.2
-2017,"Montréal, Quebec",Persons under 18 years,14.5
-2018,"Montréal, Quebec",Persons under 18 years,9.1
-2019,"Montréal, Quebec",Persons under 18 years,7.4
-2015,New Brunswick,All persons,16.1
-2016,New Brunswick,All persons,13.6
-2017,New Brunswick,All persons,12.1
-2018,New Brunswick,All persons,10
-2019,New Brunswick,All persons,9.4
-2015,New Brunswick,Females,16.3
-2016,New Brunswick,Females,14.9
-2017,New Brunswick,Females,13
-2018,New Brunswick,Females,10.3
-2019,New Brunswick,Females,11
-2015,New Brunswick,"Females, 18 to 64 years",16.8
-2016,New Brunswick,"Females, 18 to 64 years",15.8
-2017,New Brunswick,"Females, 18 to 64 years",14.1
-2018,New Brunswick,"Females, 18 to 64 years",11.3
-2019,New Brunswick,"Females, 18 to 64 years",10.9
-2015,New Brunswick,"Females, 65 years and over",12.7
-2016,New Brunswick,"Females, 65 years and over",11.8
-2017,New Brunswick,"Females, 65 years and over",7.4
-2018,New Brunswick,"Females, 65 years and over",6.1
-2019,New Brunswick,"Females, 65 years and over",7.8
-2015,New Brunswick,"Females, under 18 years",18.5
-2016,New Brunswick,"Females, under 18 years",15.7
-2017,New Brunswick,"Females, under 18 years",15.8
-2018,New Brunswick,"Females, under 18 years",12.1
-2019,New Brunswick,"Females, under 18 years",15.2
-2015,New Brunswick,Males,15.9
-2016,New Brunswick,Males,12.1
-2017,New Brunswick,Males,11.2
-2018,New Brunswick,Males,9.7
-2019,New Brunswick,Males,7.8
-2015,New Brunswick,"Males, 18 to 64 years",16.1
-2016,New Brunswick,"Males, 18 to 64 years",12.1
-2017,New Brunswick,"Males, 18 to 64 years",12
-2018,New Brunswick,"Males, 18 to 64 years",10.9
-2019,New Brunswick,"Males, 18 to 64 years",8.8
-2015,New Brunswick,"Males, 65 years and over",8.5
-2016,New Brunswick,"Males, 65 years and over",7
-2017,New Brunswick,"Males, 65 years and over",5.1
-2018,New Brunswick,"Males, 65 years and over",4.4
-2019,New Brunswick,"Males, 65 years and over",3.2
-2015,New Brunswick,"Males, under 18 years",21.8
-2016,New Brunswick,"Males, under 18 years",17.2
-2017,New Brunswick,"Males, under 18 years",14.9
-2018,New Brunswick,"Males, under 18 years",11.1
-2019,New Brunswick,"Males, under 18 years",9.7
-2015,New Brunswick,Persons 18 to 64 years,16.5
-2016,New Brunswick,Persons 18 to 64 years,14
-2017,New Brunswick,Persons 18 to 64 years,13.1
-2018,New Brunswick,Persons 18 to 64 years,11.1
-2019,New Brunswick,Persons 18 to 64 years,9.9
-2015,New Brunswick,Persons 65 years and over,10.8
-2016,New Brunswick,Persons 65 years and over,9.6
-2017,New Brunswick,Persons 65 years and over,6.3
-2018,New Brunswick,Persons 65 years and over,5.3
-2019,New Brunswick,Persons 65 years and over,5.6
-2015,New Brunswick,Persons under 18 years,20.3
-2016,New Brunswick,Persons under 18 years,16.5
-2017,New Brunswick,Persons under 18 years,15.4
-2018,New Brunswick,Persons under 18 years,11.5
-2019,New Brunswick,Persons under 18 years,12.4
-2015,Newfoundland and Labrador,All persons,13.1
-2016,Newfoundland and Labrador,All persons,12.4
-2017,Newfoundland and Labrador,All persons,11.4
-2018,Newfoundland and Labrador,All persons,11.2
-2019,Newfoundland and Labrador,All persons,10.7
-2015,Newfoundland and Labrador,Females,14.6
-2016,Newfoundland and Labrador,Females,13.6
-2017,Newfoundland and Labrador,Females,12.9
-2018,Newfoundland and Labrador,Females,10.8
-2019,Newfoundland and Labrador,Females,11.7
-2015,Newfoundland and Labrador,"Females, 18 to 64 years",15.3
-2016,Newfoundland and Labrador,"Females, 18 to 64 years",15.3
-2017,Newfoundland and Labrador,"Females, 18 to 64 years",14.5
-2018,Newfoundland and Labrador,"Females, 18 to 64 years",12.3
-2019,Newfoundland and Labrador,"Females, 18 to 64 years",12.6
-2015,Newfoundland and Labrador,"Females, 65 years and over",10.3
-2016,Newfoundland and Labrador,"Females, 65 years and over",8.7
-2017,Newfoundland and Labrador,"Females, 65 years and over",8.1
-2018,Newfoundland and Labrador,"Females, 65 years and over",5.7
-2019,Newfoundland and Labrador,"Females, 65 years and over",7.4
-2015,Newfoundland and Labrador,"Females, under 18 years",16.9
-2016,Newfoundland and Labrador,"Females, under 18 years",13
-2017,Newfoundland and Labrador,"Females, under 18 years",12.6
-2018,Newfoundland and Labrador,"Females, under 18 years",12.1
-2019,Newfoundland and Labrador,"Females, under 18 years",14.4
-2015,Newfoundland and Labrador,Males,11.6
-2016,Newfoundland and Labrador,Males,11.1
-2017,Newfoundland and Labrador,Males,9.9
-2018,Newfoundland and Labrador,Males,11.6
-2019,Newfoundland and Labrador,Males,9.6
-2015,Newfoundland and Labrador,"Males, 18 to 64 years",12.3
-2016,Newfoundland and Labrador,"Males, 18 to 64 years",11.5
-2017,Newfoundland and Labrador,"Males, 18 to 64 years",10.8
-2018,Newfoundland and Labrador,"Males, 18 to 64 years",14.9
-2019,Newfoundland and Labrador,"Males, 18 to 64 years",9.9
-2015,Newfoundland and Labrador,"Males, 65 years and over",6.6
-2016,Newfoundland and Labrador,"Males, 65 years and over",7.2
-2017,Newfoundland and Labrador,"Males, 65 years and over",5.1
-2018,Newfoundland and Labrador,"Males, 65 years and over",2.4
-2019,Newfoundland and Labrador,"Males, 65 years and over",4.4
-2015,Newfoundland and Labrador,"Males, under 18 years",13.9
-2016,Newfoundland and Labrador,"Males, under 18 years",13.9
-2017,Newfoundland and Labrador,"Males, under 18 years",11.5
-2018,Newfoundland and Labrador,"Males, under 18 years",10.3
-2019,Newfoundland and Labrador,"Males, under 18 years",14.9
-2015,Newfoundland and Labrador,Persons 18 to 64 years,13.8
-2016,Newfoundland and Labrador,Persons 18 to 64 years,13.4
-2017,Newfoundland and Labrador,Persons 18 to 64 years,12.7
-2018,Newfoundland and Labrador,Persons 18 to 64 years,13.6
-2019,Newfoundland and Labrador,Persons 18 to 64 years,11.2
-2015,Newfoundland and Labrador,Persons 65 years and over,8.6
-2016,Newfoundland and Labrador,Persons 65 years and over,8
-2017,Newfoundland and Labrador,Persons 65 years and over,6.7
-2018,Newfoundland and Labrador,Persons 65 years and over,4.1
-2019,Newfoundland and Labrador,Persons 65 years and over,6
-2015,Newfoundland and Labrador,Persons under 18 years,15.3
-2016,Newfoundland and Labrador,Persons under 18 years,13.4
-2017,Newfoundland and Labrador,Persons under 18 years,12
-2018,Newfoundland and Labrador,Persons under 18 years,11.2
-2019,Newfoundland and Labrador,Persons under 18 years,14.6
-2015,Nova Scotia,All persons,17
-2016,Nova Scotia,All persons,16.2
-2017,Nova Scotia,All persons,15
-2018,Nova Scotia,All persons,13.3
-2019,Nova Scotia,All persons,12.1
-2015,Nova Scotia,Females,17.5
-2016,Nova Scotia,Females,15.4
-2017,Nova Scotia,Females,16.3
-2018,Nova Scotia,Females,13.6
-2019,Nova Scotia,Females,13.3
-2015,Nova Scotia,"Females, 18 to 64 years",18
-2016,Nova Scotia,"Females, 18 to 64 years",17.3
-2017,Nova Scotia,"Females, 18 to 64 years",17.5
-2018,Nova Scotia,"Females, 18 to 64 years",14.8
-2019,Nova Scotia,"Females, 18 to 64 years",15.1
-2015,Nova Scotia,"Females, 65 years and over",12.4
-2016,Nova Scotia,"Females, 65 years and over",7.8
-2017,Nova Scotia,"Females, 65 years and over",8.6
-2018,Nova Scotia,"Females, 65 years and over",10.2
-2019,Nova Scotia,"Females, 65 years and over",9.7
-2015,Nova Scotia,"Females, under 18 years",22.3
-2016,Nova Scotia,"Females, under 18 years",17.6
-2017,Nova Scotia,"Females, under 18 years",21.6
-2018,Nova Scotia,"Females, under 18 years",13.3
-2019,Nova Scotia,"Females, under 18 years",11.6
-2015,Nova Scotia,Males,16.5
-2016,Nova Scotia,Males,17
-2017,Nova Scotia,Males,13.5
-2018,Nova Scotia,Males,13
-2019,Nova Scotia,Males,10.9
-2015,Nova Scotia,"Males, 18 to 64 years",18
-2016,Nova Scotia,"Males, 18 to 64 years",18.7
-2017,Nova Scotia,"Males, 18 to 64 years",15
-2018,Nova Scotia,"Males, 18 to 64 years",14.4
-2019,Nova Scotia,"Males, 18 to 64 years",12.2
-2015,Nova Scotia,"Males, 65 years and over",8.1
-2016,Nova Scotia,"Males, 65 years and over",8
-2017,Nova Scotia,"Males, 65 years and over",5
-2018,Nova Scotia,"Males, 65 years and over",5.7
-2019,Nova Scotia,"Males, 65 years and over",5.7
-2015,Nova Scotia,"Males, under 18 years",19.3
-2016,Nova Scotia,"Males, under 18 years",20.4
-2017,Nova Scotia,"Males, under 18 years",17.4
-2018,Nova Scotia,"Males, under 18 years",16.2
-2019,Nova Scotia,"Males, under 18 years",11.8
-2015,Nova Scotia,Persons 18 to 64 years,18
-2016,Nova Scotia,Persons 18 to 64 years,18
-2017,Nova Scotia,Persons 18 to 64 years,16.3
-2018,Nova Scotia,Persons 18 to 64 years,14.6
-2019,Nova Scotia,Persons 18 to 64 years,13.7
-2015,Nova Scotia,Persons 65 years and over,10.5
-2016,Nova Scotia,Persons 65 years and over,7.9
-2017,Nova Scotia,Persons 65 years and over,6.9
-2018,Nova Scotia,Persons 65 years and over,8.1
-2019,Nova Scotia,Persons 65 years and over,7.8
-2015,Nova Scotia,Persons under 18 years,20.7
-2016,Nova Scotia,Persons under 18 years,19.1
-2017,Nova Scotia,Persons under 18 years,19.4
-2018,Nova Scotia,Persons under 18 years,14.8
-2019,Nova Scotia,Persons under 18 years,11.7
-2015,Ontario,All persons,15.1
-2016,Ontario,All persons,13.6
-2017,Ontario,All persons,12.2
-2018,Ontario,All persons,11.6
-2019,Ontario,All persons,10.9
-2015,Ontario,Females,15.5
-2016,Ontario,Females,14.7
-2017,Ontario,Females,12.2
-2018,Ontario,Females,11.4
-2019,Ontario,Females,11.7
-2015,Ontario,"Females, 18 to 64 years",16.8
-2016,Ontario,"Females, 18 to 64 years",15.9
-2017,Ontario,"Females, 18 to 64 years",13.9
-2018,Ontario,"Females, 18 to 64 years",12.9
-2019,Ontario,"Females, 18 to 64 years",12.9
-2015,Ontario,"Females, 65 years and over",7.1
-2016,Ontario,"Females, 65 years and over",7
-2017,Ontario,"Females, 65 years and over",5.6
-2018,Ontario,"Females, 65 years and over",5.5
-2019,Ontario,"Females, 65 years and over",6.3
-2015,Ontario,"Females, under 18 years",18.5
-2016,Ontario,"Females, under 18 years",17.8
-2017,Ontario,"Females, under 18 years",12.8
-2018,Ontario,"Females, under 18 years",12
-2019,Ontario,"Females, under 18 years",13
-2015,Ontario,Males,14.8
-2016,Ontario,Males,12.5
-2017,Ontario,Males,12.1
-2018,Ontario,Males,11.9
-2019,Ontario,Males,10.1
-2015,Ontario,"Males, 18 to 64 years",16.1
-2016,Ontario,"Males, 18 to 64 years",13.9
-2017,Ontario,"Males, 18 to 64 years",13.8
-2018,Ontario,"Males, 18 to 64 years",13.1
-2019,Ontario,"Males, 18 to 64 years",11
-2015,Ontario,"Males, 65 years and over",4.6
-2016,Ontario,"Males, 65 years and over",5.9
-2017,Ontario,"Males, 65 years and over",5.1
-2018,Ontario,"Males, 65 years and over",5.3
-2019,Ontario,"Males, 65 years and over",4.8
-2015,Ontario,"Males, under 18 years",18
-2016,Ontario,"Males, under 18 years",13.1
-2017,Ontario,"Males, under 18 years",11.8
-2018,Ontario,"Males, under 18 years",13
-2019,Ontario,"Males, under 18 years",11.2
-2015,Ontario,Persons 18 to 64 years,16.4
-2016,Ontario,Persons 18 to 64 years,14.9
-2017,Ontario,Persons 18 to 64 years,13.9
-2018,Ontario,Persons 18 to 64 years,13
-2019,Ontario,Persons 18 to 64 years,11.9
-2015,Ontario,Persons 65 years and over,6
-2016,Ontario,Persons 65 years and over,6.5
-2017,Ontario,Persons 65 years and over,5.4
-2018,Ontario,Persons 65 years and over,5.4
-2019,Ontario,Persons 65 years and over,5.6
-2015,Ontario,Persons under 18 years,18.2
-2016,Ontario,Persons under 18 years,15.4
-2017,Ontario,Persons under 18 years,12.3
-2018,Ontario,Persons under 18 years,12.5
-2019,Ontario,Persons under 18 years,12.1
-2015,"Ottawa-Gatineau, Ontario/Quebec",All persons,13.4
-2016,"Ottawa-Gatineau, Ontario/Quebec",All persons,10.6
-2017,"Ottawa-Gatineau, Ontario/Quebec",All persons,10.8
-2018,"Ottawa-Gatineau, Ontario/Quebec",All persons,11.1
-2019,"Ottawa-Gatineau, Ontario/Quebec",All persons,8.2
-2015,"Ottawa-Gatineau, Ontario/Quebec",Females,14.4
-2016,"Ottawa-Gatineau, Ontario/Quebec",Females,10.6
-2017,"Ottawa-Gatineau, Ontario/Quebec",Females,10.8
-2018,"Ottawa-Gatineau, Ontario/Quebec",Females,10.3
-2019,"Ottawa-Gatineau, Ontario/Quebec",Females,7.8
-2015,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",16.1
-2016,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",12.2
-2017,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",13
-2018,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",11.4
-2019,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",8.4
-2015,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",NA
-2016,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",NA
-2017,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",NA
-2018,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",5.2
-2019,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",6.6
-2015,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",14.6
-2016,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",11.3
-2017,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",7.2
-2018,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",10.9
-2019,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",NA
-2015,"Ottawa-Gatineau, Ontario/Quebec",Males,12.2
-2016,"Ottawa-Gatineau, Ontario/Quebec",Males,10.6
-2017,"Ottawa-Gatineau, Ontario/Quebec",Males,10.8
-2018,"Ottawa-Gatineau, Ontario/Quebec",Males,12
-2019,"Ottawa-Gatineau, Ontario/Quebec",Males,8.7
-2015,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",13.9
-2016,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",12.4
-2017,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",11.9
-2018,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",13.7
-2019,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",9.6
-2015,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",NA
-2016,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",NA
-2017,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",NA
-2018,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",4.8
-2019,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",NA
-2015,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",13.4
-2016,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",NA
-2017,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",10.8
-2018,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",NA
-2019,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",8.8
-2015,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,15.1
-2016,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,12.3
-2017,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,12.5
-2018,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,12.6
-2019,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,9
-2015,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,NA
-2016,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,NA
-2017,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,5.4
-2018,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,5
-2019,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,5.6
-2015,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,14.1
-2016,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,9.9
-2017,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,9
-2018,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,11.2
-2019,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,7.8
-2015,Prairie provinces,All persons,11.2
-2016,Prairie provinces,All persons,11.2
-2017,Prairie provinces,All persons,9.9
-2018,Prairie provinces,All persons,10
-2019,Prairie provinces,All persons,9.5
-2015,Prairie provinces,Females,11.7
-2016,Prairie provinces,Females,11.6
-2017,Prairie provinces,Females,10.5
-2018,Prairie provinces,Females,9.9
-2019,Prairie provinces,Females,9.1
-2015,Prairie provinces,"Females, 18 to 64 years",11.6
-2016,Prairie provinces,"Females, 18 to 64 years",12.6
-2017,Prairie provinces,"Females, 18 to 64 years",11.9
-2018,Prairie provinces,"Females, 18 to 64 years",11
-2019,Prairie provinces,"Females, 18 to 64 years",10.6
-2015,Prairie provinces,"Females, 65 years and over",5.2
-2016,Prairie provinces,"Females, 65 years and over",5.3
-2017,Prairie provinces,"Females, 65 years and over",4.3
-2018,Prairie provinces,"Females, 65 years and over",5.1
-2019,Prairie provinces,"Females, 65 years and over",3.8
-2015,Prairie provinces,"Females, under 18 years",16.2
-2016,Prairie provinces,"Females, under 18 years",12.4
-2017,Prairie provinces,"Females, under 18 years",10.5
-2018,Prairie provinces,"Females, under 18 years",9.9
-2019,Prairie provinces,"Females, under 18 years",8.7
-2015,Prairie provinces,Males,10.7
-2016,Prairie provinces,Males,10.9
-2017,Prairie provinces,Males,9.3
-2018,Prairie provinces,Males,10.1
-2019,Prairie provinces,Males,9.9
-2015,Prairie provinces,"Males, 18 to 64 years",11.1
-2016,Prairie provinces,"Males, 18 to 64 years",11.5
-2017,Prairie provinces,"Males, 18 to 64 years",10.4
-2018,Prairie provinces,"Males, 18 to 64 years",11.2
-2019,Prairie provinces,"Males, 18 to 64 years",10.8
-2015,Prairie provinces,"Males, 65 years and over",3.4
-2016,Prairie provinces,"Males, 65 years and over",4.8
-2017,Prairie provinces,"Males, 65 years and over",3.5
-2018,Prairie provinces,"Males, 65 years and over",3.2
-2019,Prairie provinces,"Males, 65 years and over",4.7
-2015,Prairie provinces,"Males, under 18 years",13.4
-2016,Prairie provinces,"Males, under 18 years",12.3
-2017,Prairie provinces,"Males, under 18 years",9.4
-2018,Prairie provinces,"Males, under 18 years",10.8
-2019,Prairie provinces,"Males, under 18 years",10.3
-2015,Prairie provinces,Persons 18 to 64 years,11.3
-2016,Prairie provinces,Persons 18 to 64 years,12
-2017,Prairie provinces,Persons 18 to 64 years,11.1
-2018,Prairie provinces,Persons 18 to 64 years,11.1
-2019,Prairie provinces,Persons 18 to 64 years,10.7
-2015,Prairie provinces,Persons 65 years and over,4.4
-2016,Prairie provinces,Persons 65 years and over,5
-2017,Prairie provinces,Persons 65 years and over,3.9
-2018,Prairie provinces,Persons 65 years and over,4.2
-2019,Prairie provinces,Persons 65 years and over,4.2
-2015,Prairie provinces,Persons under 18 years,14.8
-2016,Prairie provinces,Persons under 18 years,12.4
-2017,Prairie provinces,Persons under 18 years,9.9
-2018,Prairie provinces,Persons under 18 years,10.3
-2019,Prairie provinces,Persons under 18 years,9.5
-2015,Prince Edward Island,All persons,14.8
-2016,Prince Edward Island,All persons,11.8
-2017,Prince Edward Island,All persons,13.3
-2018,Prince Edward Island,All persons,11.9
-2019,Prince Edward Island,All persons,10.9
-2015,Prince Edward Island,Females,15.4
-2016,Prince Edward Island,Females,13.6
-2017,Prince Edward Island,Females,13.3
-2018,Prince Edward Island,Females,11.5
-2019,Prince Edward Island,Females,11.5
-2015,Prince Edward Island,"Females, 18 to 64 years",15.4
-2016,Prince Edward Island,"Females, 18 to 64 years",12.9
-2017,Prince Edward Island,"Females, 18 to 64 years",15.1
-2018,Prince Edward Island,"Females, 18 to 64 years",11.9
-2019,Prince Edward Island,"Females, 18 to 64 years",13.3
-2015,Prince Edward Island,"Females, 65 years and over",16.1
-2016,Prince Edward Island,"Females, 65 years and over",11.7
-2017,Prince Edward Island,"Females, 65 years and over",9.4
-2018,Prince Edward Island,"Females, 65 years and over",12.6
-2019,Prince Edward Island,"Females, 65 years and over",7.3
-2015,Prince Edward Island,"Females, under 18 years",15
-2016,Prince Edward Island,"Females, under 18 years",18.2
-2017,Prince Edward Island,"Females, under 18 years",11.3
-2018,Prince Edward Island,"Females, under 18 years",NA
-2019,Prince Edward Island,"Females, under 18 years",NA
-2015,Prince Edward Island,Males,14.2
-2016,Prince Edward Island,Males,9.8
-2017,Prince Edward Island,Males,13.3
-2018,Prince Edward Island,Males,12.3
-2019,Prince Edward Island,Males,10.2
-2015,Prince Edward Island,"Males, 18 to 64 years",15.5
-2016,Prince Edward Island,"Males, 18 to 64 years",10.9
-2017,Prince Edward Island,"Males, 18 to 64 years",13.4
-2018,Prince Edward Island,"Males, 18 to 64 years",14.4
-2019,Prince Edward Island,"Males, 18 to 64 years",9.5
-2015,Prince Edward Island,"Males, 65 years and over",8.5
-2016,Prince Edward Island,"Males, 65 years and over",NA
-2017,Prince Edward Island,"Males, 65 years and over",10.8
-2018,Prince Edward Island,"Males, 65 years and over",7.3
-2019,Prince Edward Island,"Males, 65 years and over",NA
-2015,Prince Edward Island,"Males, under 18 years",15.3
-2016,Prince Edward Island,"Males, under 18 years",11.9
-2017,Prince Edward Island,"Males, under 18 years",15.1
-2018,Prince Edward Island,"Males, under 18 years",10.4
-2019,Prince Edward Island,"Males, under 18 years",16.8
-2015,Prince Edward Island,Persons 18 to 64 years,15.4
-2016,Prince Edward Island,Persons 18 to 64 years,11.9
-2017,Prince Edward Island,Persons 18 to 64 years,14.3
-2018,Prince Edward Island,Persons 18 to 64 years,13.1
-2019,Prince Edward Island,Persons 18 to 64 years,11.4
-2015,Prince Edward Island,Persons 65 years and over,12.5
-2016,Prince Edward Island,Persons 65 years and over,7.9
-2017,Prince Edward Island,Persons 65 years and over,10.1
-2018,Prince Edward Island,Persons 65 years and over,10.1
-2019,Prince Edward Island,Persons 65 years and over,6.4
-2015,Prince Edward Island,Persons under 18 years,15.1
-2016,Prince Edward Island,Persons under 18 years,14.9
-2017,Prince Edward Island,Persons under 18 years,13.4
-2018,Prince Edward Island,Persons under 18 years,9.8
-2019,Prince Edward Island,Persons under 18 years,13.7
-2015,Quebec,All persons,13.7
-2016,Quebec,All persons,10.9
-2017,Quebec,All persons,10.8
-2018,Quebec,All persons,9.7
-2019,Quebec,All persons,8.7
-2015,Quebec,Females,13.8
-2016,Quebec,Females,10.9
-2017,Quebec,Females,10.8
-2018,Quebec,Females,9.9
-2019,Quebec,Females,8.1
-2015,Quebec,"Females, 18 to 64 years",16
-2016,Quebec,"Females, 18 to 64 years",11.7
-2017,Quebec,"Females, 18 to 64 years",12.2
-2018,Quebec,"Females, 18 to 64 years",11.8
-2019,Quebec,"Females, 18 to 64 years",9.9
-2015,Quebec,"Females, 65 years and over",7.5
-2016,Quebec,"Females, 65 years and over",7.6
-2017,Quebec,"Females, 65 years and over",6.9
-2018,Quebec,"Females, 65 years and over",6.2
-2019,Quebec,"Females, 65 years and over",5.5
-2015,Quebec,"Females, under 18 years",13
-2016,Quebec,"Females, under 18 years",11.4
-2017,Quebec,"Females, under 18 years",10.1
-2018,Quebec,"Females, under 18 years",7.3
-2019,Quebec,"Females, under 18 years",5.3
-2015,Quebec,Males,13.7
-2016,Quebec,Males,11
-2017,Quebec,Males,10.7
-2018,Quebec,Males,9.6
-2019,Quebec,Males,9.2
-2015,Quebec,"Males, 18 to 64 years",15.1
-2016,Quebec,"Males, 18 to 64 years",12.4
-2017,Quebec,"Males, 18 to 64 years",12.5
-2018,Quebec,"Males, 18 to 64 years",11.6
-2019,Quebec,"Males, 18 to 64 years",11.2
-2015,Quebec,"Males, 65 years and over",5.9
-2016,Quebec,"Males, 65 years and over",6.7
-2017,Quebec,"Males, 65 years and over",4.8
-2018,Quebec,"Males, 65 years and over",4.4
-2019,Quebec,"Males, 65 years and over",4.5
-2015,Quebec,"Males, under 18 years",15.1
-2016,Quebec,"Males, under 18 years",10
-2017,Quebec,"Males, under 18 years",10.1
-2018,Quebec,"Males, under 18 years",7.9
-2019,Quebec,"Males, under 18 years",7.2
-2015,Quebec,Persons 18 to 64 years,15.6
-2016,Quebec,Persons 18 to 64 years,12.1
-2017,Quebec,Persons 18 to 64 years,12.4
-2018,Quebec,Persons 18 to 64 years,11.7
-2019,Quebec,Persons 18 to 64 years,10.6
-2015,Quebec,Persons 65 years and over,6.8
-2016,Quebec,Persons 65 years and over,7.2
-2017,Quebec,Persons 65 years and over,5.9
-2018,Quebec,Persons 65 years and over,5.4
-2019,Quebec,Persons 65 years and over,5
-2015,Quebec,Persons under 18 years,14.1
-2016,Quebec,Persons under 18 years,10.7
-2017,Quebec,Persons under 18 years,10.1
-2018,Quebec,Persons under 18 years,7.6
-2019,Quebec,Persons under 18 years,6.2
-2015,"Québec, Quebec",All persons,8.1
-2016,"Québec, Quebec",All persons,6.7
-2017,"Québec, Quebec",All persons,5.7
-2018,"Québec, Quebec",All persons,8.4
-2019,"Québec, Quebec",All persons,7.6
-2015,"Québec, Quebec",Females,7.9
-2016,"Québec, Quebec",Females,7.4
-2017,"Québec, Quebec",Females,5.4
-2018,"Québec, Quebec",Females,7.6
-2019,"Québec, Quebec",Females,7.2
-2015,"Québec, Quebec","Females, 18 to 64 years",9.1
-2016,"Québec, Quebec","Females, 18 to 64 years",7.6
-2017,"Québec, Quebec","Females, 18 to 64 years",6.6
-2018,"Québec, Quebec","Females, 18 to 64 years",9.8
-2019,"Québec, Quebec","Females, 18 to 64 years",9.1
-2015,"Québec, Quebec","Females, 65 years and over",NA
-2016,"Québec, Quebec","Females, 65 years and over",5.7
-2017,"Québec, Quebec","Females, 65 years and over",NA
-2018,"Québec, Quebec","Females, 65 years and over",NA
-2019,"Québec, Quebec","Females, 65 years and over",NA
-2015,"Québec, Quebec","Females, under 18 years",NA
-2016,"Québec, Quebec","Females, under 18 years",NA
-2017,"Québec, Quebec","Females, under 18 years",NA
-2018,"Québec, Quebec","Females, under 18 years",NA
-2019,"Québec, Quebec","Females, under 18 years",NA
-2015,"Québec, Quebec",Males,8.2
-2016,"Québec, Quebec",Males,5.9
-2017,"Québec, Quebec",Males,6.1
-2018,"Québec, Quebec",Males,9.1
-2019,"Québec, Quebec",Males,8.2
-2015,"Québec, Quebec","Males, 18 to 64 years",9.8
-2016,"Québec, Quebec","Males, 18 to 64 years",7
-2017,"Québec, Quebec","Males, 18 to 64 years",6.1
-2018,"Québec, Quebec","Males, 18 to 64 years",9.9
-2019,"Québec, Quebec","Males, 18 to 64 years",9.3
-2015,"Québec, Quebec","Males, 65 years and over",NA
-2016,"Québec, Quebec","Males, 65 years and over",NA
-2017,"Québec, Quebec","Males, 65 years and over",NA
-2018,"Québec, Quebec","Males, 65 years and over",NA
-2019,"Québec, Quebec","Males, 65 years and over",NA
-2015,"Québec, Quebec","Males, under 18 years",NA
-2016,"Québec, Quebec","Males, under 18 years",NA
-2017,"Québec, Quebec","Males, under 18 years",NA
-2018,"Québec, Quebec","Males, under 18 years",9.8
-2019,"Québec, Quebec","Males, under 18 years",NA
-2015,"Québec, Quebec",Persons 18 to 64 years,9.4
-2016,"Québec, Quebec",Persons 18 to 64 years,7.3
-2017,"Québec, Quebec",Persons 18 to 64 years,6.4
-2018,"Québec, Quebec",Persons 18 to 64 years,9.8
-2019,"Québec, Quebec",Persons 18 to 64 years,9.2
-2015,"Québec, Quebec",Persons 65 years and over,9.2
-2016,"Québec, Quebec",Persons 65 years and over,5.2
-2017,"Québec, Quebec",Persons 65 years and over,4.6
-2018,"Québec, Quebec",Persons 65 years and over,4.9
-2019,"Québec, Quebec",Persons 65 years and over,8.4
-2015,"Québec, Quebec",Persons under 18 years,NA
-2016,"Québec, Quebec",Persons under 18 years,NA
-2017,"Québec, Quebec",Persons under 18 years,NA
-2018,"Québec, Quebec",Persons under 18 years,NA
-2019,"Québec, Quebec",Persons under 18 years,NA
-2015,Saskatchewan,All persons,12.7
-2016,Saskatchewan,All persons,11.5
-2017,Saskatchewan,All persons,12.2
-2018,Saskatchewan,All persons,11.2
-2019,Saskatchewan,All persons,12.4
-2015,Saskatchewan,Females,14.2
-2016,Saskatchewan,Females,12.3
-2017,Saskatchewan,Females,12.5
-2018,Saskatchewan,Females,11.5
-2019,Saskatchewan,Females,11.8
-2015,Saskatchewan,"Females, 18 to 64 years",14.4
-2016,Saskatchewan,"Females, 18 to 64 years",13.2
-2017,Saskatchewan,"Females, 18 to 64 years",13.5
-2018,Saskatchewan,"Females, 18 to 64 years",12.7
-2019,Saskatchewan,"Females, 18 to 64 years",13.4
-2015,Saskatchewan,"Females, 65 years and over",7.7
-2016,Saskatchewan,"Females, 65 years and over",7.6
-2017,Saskatchewan,"Females, 65 years and over",6
-2018,Saskatchewan,"Females, 65 years and over",5.9
-2019,Saskatchewan,"Females, 65 years and over",5.5
-2015,Saskatchewan,"Females, under 18 years",18.4
-2016,Saskatchewan,"Females, under 18 years",13.4
-2017,Saskatchewan,"Females, under 18 years",14.7
-2018,Saskatchewan,"Females, under 18 years",12.3
-2019,Saskatchewan,"Females, under 18 years",12.3
-2015,Saskatchewan,Males,11.3
-2016,Saskatchewan,Males,10.6
-2017,Saskatchewan,Males,11.9
-2018,Saskatchewan,Males,11
-2019,Saskatchewan,Males,13
-2015,Saskatchewan,"Males, 18 to 64 years",11.2
-2016,Saskatchewan,"Males, 18 to 64 years",11.3
-2017,Saskatchewan,"Males, 18 to 64 years",12.7
-2018,Saskatchewan,"Males, 18 to 64 years",12.8
-2019,Saskatchewan,"Males, 18 to 64 years",14.5
-2015,Saskatchewan,"Males, 65 years and over",4.4
-2016,Saskatchewan,"Males, 65 years and over",6.2
-2017,Saskatchewan,"Males, 65 years and over",4.7
-2018,Saskatchewan,"Males, 65 years and over",3.2
-2019,Saskatchewan,"Males, 65 years and over",6.4
-2015,Saskatchewan,"Males, under 18 years",15.7
-2016,Saskatchewan,"Males, under 18 years",11.5
-2017,Saskatchewan,"Males, under 18 years",14.3
-2018,Saskatchewan,"Males, under 18 years",10.8
-2019,Saskatchewan,"Males, under 18 years",12.9
-2015,Saskatchewan,Persons 18 to 64 years,12.8
-2016,Saskatchewan,Persons 18 to 64 years,12.2
-2017,Saskatchewan,Persons 18 to 64 years,13.1
-2018,Saskatchewan,Persons 18 to 64 years,12.7
-2019,Saskatchewan,Persons 18 to 64 years,14
-2015,Saskatchewan,Persons 65 years and over,6.2
-2016,Saskatchewan,Persons 65 years and over,7
-2017,Saskatchewan,Persons 65 years and over,5.4
-2018,Saskatchewan,Persons 65 years and over,4.6
-2019,Saskatchewan,Persons 65 years and over,5.9
-2015,Saskatchewan,Persons under 18 years,17.1
-2016,Saskatchewan,Persons under 18 years,12.4
-2017,Saskatchewan,Persons under 18 years,14.5
-2018,Saskatchewan,Persons under 18 years,11.6
-2019,Saskatchewan,Persons under 18 years,12.6
-2015,"Toronto, Ontario",All persons,19.2
-2016,"Toronto, Ontario",All persons,17.4
-2017,"Toronto, Ontario",All persons,14.2
-2018,"Toronto, Ontario",All persons,13.9
-2019,"Toronto, Ontario",All persons,13.4
-2015,"Toronto, Ontario",Females,19.8
-2016,"Toronto, Ontario",Females,18.9
-2017,"Toronto, Ontario",Females,14.3
-2018,"Toronto, Ontario",Females,13.1
-2019,"Toronto, Ontario",Females,14.4
-2015,"Toronto, Ontario","Females, 18 to 64 years",20.3
-2016,"Toronto, Ontario","Females, 18 to 64 years",19.5
-2017,"Toronto, Ontario","Females, 18 to 64 years",15.3
-2018,"Toronto, Ontario","Females, 18 to 64 years",14.3
-2019,"Toronto, Ontario","Females, 18 to 64 years",14.6
-2015,"Toronto, Ontario","Females, 65 years and over",10.1
-2016,"Toronto, Ontario","Females, 65 years and over",8.7
-2017,"Toronto, Ontario","Females, 65 years and over",6.6
-2018,"Toronto, Ontario","Females, 65 years and over",6.9
-2019,"Toronto, Ontario","Females, 65 years and over",7.8
-2015,"Toronto, Ontario","Females, under 18 years",25.1
-2016,"Toronto, Ontario","Females, under 18 years",25.2
-2017,"Toronto, Ontario","Females, under 18 years",16.9
-2018,"Toronto, Ontario","Females, under 18 years",14.3
-2019,"Toronto, Ontario","Females, under 18 years",19.1
-2015,"Toronto, Ontario",Males,18.6
-2016,"Toronto, Ontario",Males,15.8
-2017,"Toronto, Ontario",Males,14.1
-2018,"Toronto, Ontario",Males,14.6
-2019,"Toronto, Ontario",Males,12.3
-2015,"Toronto, Ontario","Males, 18 to 64 years",19.3
-2016,"Toronto, Ontario","Males, 18 to 64 years",16.5
-2017,"Toronto, Ontario","Males, 18 to 64 years",15.4
-2018,"Toronto, Ontario","Males, 18 to 64 years",15.6
-2019,"Toronto, Ontario","Males, 18 to 64 years",12
-2015,"Toronto, Ontario","Males, 65 years and over",6.5
-2016,"Toronto, Ontario","Males, 65 years and over",10.7
-2017,"Toronto, Ontario","Males, 65 years and over",7.5
-2018,"Toronto, Ontario","Males, 65 years and over",8.2
-2019,"Toronto, Ontario","Males, 65 years and over",7.8
-2015,"Toronto, Ontario","Males, under 18 years",23.1
-2016,"Toronto, Ontario","Males, under 18 years",16.8
-2017,"Toronto, Ontario","Males, under 18 years",14
-2018,"Toronto, Ontario","Males, under 18 years",16.1
-2019,"Toronto, Ontario","Males, under 18 years",16.6
-2015,"Toronto, Ontario",Persons 18 to 64 years,19.8
-2016,"Toronto, Ontario",Persons 18 to 64 years,18
-2017,"Toronto, Ontario",Persons 18 to 64 years,15.3
-2018,"Toronto, Ontario",Persons 18 to 64 years,14.9
-2019,"Toronto, Ontario",Persons 18 to 64 years,13.3
-2015,"Toronto, Ontario",Persons 65 years and over,8.5
-2016,"Toronto, Ontario",Persons 65 years and over,9.6
-2017,"Toronto, Ontario",Persons 65 years and over,7
-2018,"Toronto, Ontario",Persons 65 years and over,7.5
-2019,"Toronto, Ontario",Persons 65 years and over,7.8
-2015,"Toronto, Ontario",Persons under 18 years,24.1
-2016,"Toronto, Ontario",Persons under 18 years,21.1
-2017,"Toronto, Ontario",Persons under 18 years,15.4
-2018,"Toronto, Ontario",Persons under 18 years,15.2
-2019,"Toronto, Ontario",Persons under 18 years,17.9
-2015,"Vancouver, British Columbia",All persons,18.4
-2016,"Vancouver, British Columbia",All persons,14.9
-2017,"Vancouver, British Columbia",All persons,14.9
-2018,"Vancouver, British Columbia",All persons,12.4
-2019,"Vancouver, British Columbia",All persons,10.6
-2015,"Vancouver, British Columbia",Females,18.6
-2016,"Vancouver, British Columbia",Females,14.6
-2017,"Vancouver, British Columbia",Females,14.6
-2018,"Vancouver, British Columbia",Females,11.8
-2019,"Vancouver, British Columbia",Females,11.7
-2015,"Vancouver, British Columbia","Females, 18 to 64 years",19.9
-2016,"Vancouver, British Columbia","Females, 18 to 64 years",14.9
-2017,"Vancouver, British Columbia","Females, 18 to 64 years",16.3
-2018,"Vancouver, British Columbia","Females, 18 to 64 years",13.6
-2019,"Vancouver, British Columbia","Females, 18 to 64 years",14.8
-2015,"Vancouver, British Columbia","Females, 65 years and over",13.4
-2016,"Vancouver, British Columbia","Females, 65 years and over",10.9
-2017,"Vancouver, British Columbia","Females, 65 years and over",12.3
-2018,"Vancouver, British Columbia","Females, 65 years and over",8.7
-2019,"Vancouver, British Columbia","Females, 65 years and over",NA
-2015,"Vancouver, British Columbia","Females, under 18 years",18.6
-2016,"Vancouver, British Columbia","Females, under 18 years",16.8
-2017,"Vancouver, British Columbia","Females, under 18 years",NA
-2018,"Vancouver, British Columbia","Females, under 18 years",7.8
-2019,"Vancouver, British Columbia","Females, under 18 years",NA
-2015,"Vancouver, British Columbia",Males,18.1
-2016,"Vancouver, British Columbia",Males,15.3
-2017,"Vancouver, British Columbia",Males,15.2
-2018,"Vancouver, British Columbia",Males,13
-2019,"Vancouver, British Columbia",Males,9.6
-2015,"Vancouver, British Columbia","Males, 18 to 64 years",18.9
-2016,"Vancouver, British Columbia","Males, 18 to 64 years",16
-2017,"Vancouver, British Columbia","Males, 18 to 64 years",15.7
-2018,"Vancouver, British Columbia","Males, 18 to 64 years",14.2
-2019,"Vancouver, British Columbia","Males, 18 to 64 years",11.8
-2015,"Vancouver, British Columbia","Males, 65 years and over",15.7
-2016,"Vancouver, British Columbia","Males, 65 years and over",8.6
-2017,"Vancouver, British Columbia","Males, 65 years and over",12.3
-2018,"Vancouver, British Columbia","Males, 65 years and over",8.8
-2019,"Vancouver, British Columbia","Males, 65 years and over",5.6
-2015,"Vancouver, British Columbia","Males, under 18 years",17.1
-2016,"Vancouver, British Columbia","Males, under 18 years",18.6
-2017,"Vancouver, British Columbia","Males, under 18 years",15.6
-2018,"Vancouver, British Columbia","Males, under 18 years",12.2
-2019,"Vancouver, British Columbia","Males, under 18 years",NA
-2015,"Vancouver, British Columbia",Persons 18 to 64 years,19.4
-2016,"Vancouver, British Columbia",Persons 18 to 64 years,15.4
-2017,"Vancouver, British Columbia",Persons 18 to 64 years,16
-2018,"Vancouver, British Columbia",Persons 18 to 64 years,13.9
-2019,"Vancouver, British Columbia",Persons 18 to 64 years,13.3
-2015,"Vancouver, British Columbia",Persons 65 years and over,14.5
-2016,"Vancouver, British Columbia",Persons 65 years and over,9.8
-2017,"Vancouver, British Columbia",Persons 65 years and over,12.3
-2018,"Vancouver, British Columbia",Persons 65 years and over,8.7
-2019,"Vancouver, British Columbia",Persons 65 years and over,5.3
-2015,"Vancouver, British Columbia",Persons under 18 years,17.8
-2016,"Vancouver, British Columbia",Persons under 18 years,17.7
-2017,"Vancouver, British Columbia",Persons under 18 years,13.1
-2018,"Vancouver, British Columbia",Persons under 18 years,10.1
-2019,"Vancouver, British Columbia",Persons under 18 years,5.3
-2015,"Winnipeg, Manitoba",All persons,15.5
-2016,"Winnipeg, Manitoba",All persons,13.5
-2017,"Winnipeg, Manitoba",All persons,12.3
-2018,"Winnipeg, Manitoba",All persons,12
-2019,"Winnipeg, Manitoba",All persons,11.2
-2015,"Winnipeg, Manitoba",Females,15.3
-2016,"Winnipeg, Manitoba",Females,13.3
-2017,"Winnipeg, Manitoba",Females,12.5
-2018,"Winnipeg, Manitoba",Females,12.1
-2019,"Winnipeg, Manitoba",Females,10.6
-2015,"Winnipeg, Manitoba","Females, 18 to 64 years",16.3
-2016,"Winnipeg, Manitoba","Females, 18 to 64 years",13.8
-2017,"Winnipeg, Manitoba","Females, 18 to 64 years",13
-2018,"Winnipeg, Manitoba","Females, 18 to 64 years",12.8
-2019,"Winnipeg, Manitoba","Females, 18 to 64 years",11.5
-2015,"Winnipeg, Manitoba","Females, 65 years and over",8.4
-2016,"Winnipeg, Manitoba","Females, 65 years and over",6.4
-2017,"Winnipeg, Manitoba","Females, 65 years and over",6.7
-2018,"Winnipeg, Manitoba","Females, 65 years and over",7.3
-2019,"Winnipeg, Manitoba","Females, 65 years and over",6.2
-2015,"Winnipeg, Manitoba","Females, under 18 years",17.3
-2016,"Winnipeg, Manitoba","Females, under 18 years",16.9
-2017,"Winnipeg, Manitoba","Females, under 18 years",15.6
-2018,"Winnipeg, Manitoba","Females, under 18 years",14.2
-2019,"Winnipeg, Manitoba","Females, under 18 years",11
-2015,"Winnipeg, Manitoba",Males,15.8
-2016,"Winnipeg, Manitoba",Males,13.6
-2017,"Winnipeg, Manitoba",Males,12
-2018,"Winnipeg, Manitoba",Males,11.8
-2019,"Winnipeg, Manitoba",Males,11.9
-2015,"Winnipeg, Manitoba","Males, 18 to 64 years",15.6
-2016,"Winnipeg, Manitoba","Males, 18 to 64 years",14
-2017,"Winnipeg, Manitoba","Males, 18 to 64 years",13.2
-2018,"Winnipeg, Manitoba","Males, 18 to 64 years",12.6
-2019,"Winnipeg, Manitoba","Males, 18 to 64 years",12.4
-2015,"Winnipeg, Manitoba","Males, 65 years and over",NA
-2016,"Winnipeg, Manitoba","Males, 65 years and over",3.7
-2017,"Winnipeg, Manitoba","Males, 65 years and over",6
-2018,"Winnipeg, Manitoba","Males, 65 years and over",4.9
-2019,"Winnipeg, Manitoba","Males, 65 years and over",7
-2015,"Winnipeg, Manitoba","Males, under 18 years",24.5
-2016,"Winnipeg, Manitoba","Males, under 18 years",18.4
-2017,"Winnipeg, Manitoba","Males, under 18 years",12
-2018,"Winnipeg, Manitoba","Males, under 18 years",14.5
-2019,"Winnipeg, Manitoba","Males, under 18 years",13.9
-2015,"Winnipeg, Manitoba",Persons 18 to 64 years,15.9
-2016,"Winnipeg, Manitoba",Persons 18 to 64 years,13.9
-2017,"Winnipeg, Manitoba",Persons 18 to 64 years,13.1
-2018,"Winnipeg, Manitoba",Persons 18 to 64 years,12.7
-2019,"Winnipeg, Manitoba",Persons 18 to 64 years,11.9
-2015,"Winnipeg, Manitoba",Persons 65 years and over,5.9
-2016,"Winnipeg, Manitoba",Persons 65 years and over,5.2
-2017,"Winnipeg, Manitoba",Persons 65 years and over,6.4
-2018,"Winnipeg, Manitoba",Persons 65 years and over,6.2
-2019,"Winnipeg, Manitoba",Persons 65 years and over,6.6
-2015,"Winnipeg, Manitoba",Persons under 18 years,20.8
-2016,"Winnipeg, Manitoba",Persons under 18 years,17.7
-2017,"Winnipeg, Manitoba",Persons under 18 years,13.8
-2018,"Winnipeg, Manitoba",Persons under 18 years,14.4
-2019,"Winnipeg, Manitoba",Persons under 18 years,12.4
diff --git a/tests/assets/progress-calculation/data/temp/indicator_1-a-2.csv b/tests/assets/progress-calculation/data/temp/indicator_1-a-2.csv
deleted file mode 100644
index 7e1868f7..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_1-a-2.csv
+++ /dev/null
@@ -1,351 +0,0 @@
-Year,Geography,Function of Government,Value
-2015,,,57.781
-2016,,,58.964
-2017,,,58.478
-2018,,,57.519
-2019,,,56.143
-2015,Canada,Education,1.343
-2015,Canada,Health,11.972
-2015,Canada,Other expenditure,42.219
-2015,Canada,Social protection,44.466
-2016,Canada,Education,1.523
-2016,Canada,Health,11.839
-2016,Canada,Other expenditure,41.036
-2016,Canada,Social protection,45.602
-2017,Canada,Education,1.64
-2017,Canada,Health,11.65
-2017,Canada,Other expenditure,41.522
-2017,Canada,Social protection,45.189
-2018,Canada,Education,1.772
-2018,Canada,Health,11.746
-2018,Canada,Other expenditure,42.481
-2018,Canada,Social protection,44.001
-2019,Canada,Education,1.887
-2019,Canada,Health,11.643
-2019,Canada,Other expenditure,43.857
-2019,Canada,Social protection,42.613
-2015,Alberta,,74.022
-2015,British Columbia,,75.654
-2015,Manitoba,,74.61
-2015,New Brunswick,,70.78
-2015,Newfoundland and Labrador,,72.6
-2015,Northwest Territories,,56.625
-2015,Nova Scotia,,74.239
-2015,Nunavut,,50.217
-2015,Ontario,,75.195
-2015,Prince Edward Island,,74.841
-2015,Quebec,,71.828
-2015,Saskatchewan,,75.657
-2015,Yukon,,49.511
-2016,Alberta,,71.854
-2016,British Columbia,,75.452
-2016,Manitoba,,74.876
-2016,New Brunswick,,69.305
-2016,Newfoundland and Labrador,,71.196
-2016,Northwest Territories,,58.8
-2016,Nova Scotia,,72.51
-2016,Nunavut,,49.443
-2016,Ontario,,75.284
-2016,Prince Edward Island,,74.853
-2016,Quebec,,72.028
-2016,Saskatchewan,,74.423
-2016,Yukon,,52.433
-2017,Alberta,,71.505
-2017,British Columbia,,75.563
-2017,Manitoba,,75.184
-2017,New Brunswick,,69.022
-2017,Newfoundland and Labrador,,72.257
-2017,Northwest Territories,,58.104
-2017,Nova Scotia,,71.737
-2017,Nunavut,,50.462
-2017,Ontario,,75.359
-2017,Prince Edward Island,,74.541
-2017,Quebec,,71.33
-2017,Saskatchewan,,75.912
-2017,Yukon,,53.252
-2018,Alberta,,71.908
-2018,British Columbia,,75.793
-2018,Manitoba,,75.86
-2018,New Brunswick,,69.416
-2018,Newfoundland and Labrador,,73.095
-2018,Northwest Territories,,58.13
-2018,Nova Scotia,,72.743
-2018,Nunavut,,50.431
-2018,Ontario,,74.174
-2018,Prince Edward Island,,73.875
-2018,Quebec,,71.362
-2018,Saskatchewan,,75.536
-2018,Yukon,,50
-2019,Alberta,,70.518
-2019,British Columbia,,76.414
-2019,Manitoba,,75.133
-2019,New Brunswick,,69.424
-2019,Newfoundland and Labrador,,73.122
-2019,Northwest Territories,,58.151
-2019,Nova Scotia,,72.332
-2019,Nunavut,,50.486
-2019,Ontario,,74.231
-2019,Prince Edward Island,,73.789
-2019,Quebec,,71.321
-2019,Saskatchewan,,75.232
-2019,Yukon,,49.812
-2015,Alberta,Education,27.241
-2015,Alberta,Health,38.901
-2015,Alberta,Other expenditure,25.978
-2015,Alberta,Social protection,7.88
-2015,British Columbia,Education,22.725
-2015,British Columbia,Health,43.504
-2015,British Columbia,Other expenditure,24.346
-2015,British Columbia,Social protection,9.426
-2015,Manitoba,Education,22.516
-2015,Manitoba,Health,42.597
-2015,Manitoba,Other expenditure,25.39
-2015,Manitoba,Social protection,9.497
-2015,New Brunswick,Education,17.373
-2015,New Brunswick,Health,46.438
-2015,New Brunswick,Other expenditure,29.22
-2015,New Brunswick,Social protection,6.969
-2015,Newfoundland and Labrador,Education,23.318
-2015,Newfoundland and Labrador,Health,43.44
-2015,Newfoundland and Labrador,Other expenditure,27.4
-2015,Newfoundland and Labrador,Social protection,5.842
-2015,Northwest Territories,Education,14.187
-2015,Northwest Territories,Health,30.779
-2015,Northwest Territories,Other expenditure,43.375
-2015,Northwest Territories,Social protection,11.659
-2015,Nova Scotia,Education,23.707
-2015,Nova Scotia,Health,42.287
-2015,Nova Scotia,Other expenditure,25.761
-2015,Nova Scotia,Social protection,8.246
-2015,Nunavut,Education,14.829
-2015,Nunavut,Health,20.221
-2015,Nunavut,Other expenditure,49.783
-2015,Nunavut,Social protection,15.166
-2015,Ontario,Education,24.663
-2015,Ontario,Health,37.564
-2015,Ontario,Other expenditure,24.805
-2015,Ontario,Social protection,12.968
-2015,Prince Edward Island,Education,25.053
-2015,Prince Edward Island,Health,44.118
-2015,Prince Edward Island,Other expenditure,25.159
-2015,Prince Edward Island,Social protection,5.67
-2015,Quebec,Education,18.983
-2015,Quebec,Health,33.347
-2015,Quebec,Other expenditure,28.172
-2015,Quebec,Social protection,19.497
-2015,Saskatchewan,Education,26.193
-2015,Saskatchewan,Health,38.236
-2015,Saskatchewan,Other expenditure,24.343
-2015,Saskatchewan,Social protection,11.228
-2015,Yukon,Education,15.014
-2015,Yukon,Health,24.93
-2015,Yukon,Other expenditure,50.489
-2015,Yukon,Social protection,9.567
-2016,Alberta,Education,26.613
-2016,Alberta,Health,37.103
-2016,Alberta,Other expenditure,28.146
-2016,Alberta,Social protection,8.137
-2016,British Columbia,Education,22.589
-2016,British Columbia,Health,43.501
-2016,British Columbia,Other expenditure,24.548
-2016,British Columbia,Social protection,9.362
-2016,Manitoba,Education,22.241
-2016,Manitoba,Health,43.656
-2016,Manitoba,Other expenditure,25.124
-2016,Manitoba,Social protection,8.979
-2016,New Brunswick,Education,16.659
-2016,New Brunswick,Health,45.284
-2016,New Brunswick,Other expenditure,30.695
-2016,New Brunswick,Social protection,7.362
-2016,Newfoundland and Labrador,Education,22.938
-2016,Newfoundland and Labrador,Health,42.588
-2016,Newfoundland and Labrador,Other expenditure,28.804
-2016,Newfoundland and Labrador,Social protection,5.67
-2016,Northwest Territories,Education,14.064
-2016,Northwest Territories,Health,32.499
-2016,Northwest Territories,Other expenditure,41.2
-2016,Northwest Territories,Social protection,12.237
-2016,Nova Scotia,Education,22.462
-2016,Nova Scotia,Health,41.795
-2016,Nova Scotia,Other expenditure,27.49
-2016,Nova Scotia,Social protection,8.253
-2016,Nunavut,Education,14.578
-2016,Nunavut,Health,22.377
-2016,Nunavut,Other expenditure,50.557
-2016,Nunavut,Social protection,12.488
-2016,Ontario,Education,24.742
-2016,Ontario,Health,37.623
-2016,Ontario,Other expenditure,24.716
-2016,Ontario,Social protection,12.919
-2016,Prince Edward Island,Education,25.251
-2016,Prince Edward Island,Health,44.033
-2016,Prince Edward Island,Other expenditure,25.147
-2016,Prince Edward Island,Social protection,5.569
-2016,Quebec,Education,19.233
-2016,Quebec,Health,33.449
-2016,Quebec,Other expenditure,27.972
-2016,Quebec,Social protection,19.346
-2016,Saskatchewan,Education,26.334
-2016,Saskatchewan,Health,37.309
-2016,Saskatchewan,Other expenditure,25.577
-2016,Saskatchewan,Social protection,10.779
-2016,Yukon,Education,16.518
-2016,Yukon,Health,27.073
-2016,Yukon,Other expenditure,47.567
-2016,Yukon,Social protection,8.842
-2017,Alberta,Education,26.178
-2017,Alberta,Health,37.019
-2017,Alberta,Other expenditure,28.495
-2017,Alberta,Social protection,8.307
-2017,British Columbia,Education,23.181
-2017,British Columbia,Health,42.836
-2017,British Columbia,Other expenditure,24.437
-2017,British Columbia,Social protection,9.545
-2017,Manitoba,Education,22.789
-2017,Manitoba,Health,43.152
-2017,Manitoba,Other expenditure,24.816
-2017,Manitoba,Social protection,9.244
-2017,New Brunswick,Education,16.54
-2017,New Brunswick,Health,43.616
-2017,New Brunswick,Other expenditure,30.978
-2017,New Brunswick,Social protection,8.865
-2017,Newfoundland and Labrador,Education,22.108
-2017,Newfoundland and Labrador,Health,44.08
-2017,Newfoundland and Labrador,Other expenditure,27.743
-2017,Newfoundland and Labrador,Social protection,6.068
-2017,Northwest Territories,Education,13.849
-2017,Northwest Territories,Health,32.224
-2017,Northwest Territories,Other expenditure,41.896
-2017,Northwest Territories,Social protection,12.031
-2017,Nova Scotia,Education,22.757
-2017,Nova Scotia,Health,41.097
-2017,Nova Scotia,Other expenditure,28.263
-2017,Nova Scotia,Social protection,7.884
-2017,Nunavut,Education,14.298
-2017,Nunavut,Health,24.197
-2017,Nunavut,Other expenditure,49.538
-2017,Nunavut,Social protection,11.967
-2017,Ontario,Education,25.766
-2017,Ontario,Health,36.795
-2017,Ontario,Other expenditure,24.641
-2017,Ontario,Social protection,12.798
-2017,Prince Edward Island,Education,24.77
-2017,Prince Edward Island,Health,44.39
-2017,Prince Edward Island,Other expenditure,25.459
-2017,Prince Edward Island,Social protection,5.381
-2017,Quebec,Education,19.312
-2017,Quebec,Health,33.201
-2017,Quebec,Other expenditure,28.67
-2017,Quebec,Social protection,18.818
-2017,Saskatchewan,Education,26.014
-2017,Saskatchewan,Health,38.787
-2017,Saskatchewan,Other expenditure,24.088
-2017,Saskatchewan,Social protection,11.112
-2017,Yukon,Education,16.531
-2017,Yukon,Health,27.236
-2017,Yukon,Other expenditure,46.748
-2017,Yukon,Social protection,9.485
-2018,Alberta,Education,25.131
-2018,Alberta,Health,37.805
-2018,Alberta,Other expenditure,28.092
-2018,Alberta,Social protection,8.971
-2018,British Columbia,Education,22.759
-2018,British Columbia,Health,42.577
-2018,British Columbia,Other expenditure,24.207
-2018,British Columbia,Social protection,10.457
-2018,Manitoba,Education,23.26
-2018,Manitoba,Health,43.143
-2018,Manitoba,Other expenditure,24.14
-2018,Manitoba,Social protection,9.457
-2018,New Brunswick,Education,16.717
-2018,New Brunswick,Health,43.789
-2018,New Brunswick,Other expenditure,30.584
-2018,New Brunswick,Social protection,8.91
-2018,Newfoundland and Labrador,Education,21.94
-2018,Newfoundland and Labrador,Health,45.525
-2018,Newfoundland and Labrador,Other expenditure,26.905
-2018,Newfoundland and Labrador,Social protection,5.629
-2018,Northwest Territories,Education,13.525
-2018,Northwest Territories,Health,32.409
-2018,Northwest Territories,Other expenditure,41.87
-2018,Northwest Territories,Social protection,12.195
-2018,Nova Scotia,Education,23.11
-2018,Nova Scotia,Health,41.988
-2018,Nova Scotia,Other expenditure,27.257
-2018,Nova Scotia,Social protection,7.645
-2018,Nunavut,Education,14.022
-2018,Nunavut,Health,24.149
-2018,Nunavut,Other expenditure,49.569
-2018,Nunavut,Social protection,12.259
-2018,Ontario,Education,25.594
-2018,Ontario,Health,35.842
-2018,Ontario,Other expenditure,25.826
-2018,Ontario,Social protection,12.738
-2018,Prince Edward Island,Education,25
-2018,Prince Edward Island,Health,43.25
-2018,Prince Edward Island,Other expenditure,26.125
-2018,Prince Edward Island,Social protection,5.625
-2018,Quebec,Education,19.526
-2018,Quebec,Health,33.169
-2018,Quebec,Other expenditure,28.638
-2018,Quebec,Social protection,18.668
-2018,Saskatchewan,Education,26.611
-2018,Saskatchewan,Health,37.706
-2018,Saskatchewan,Other expenditure,24.464
-2018,Saskatchewan,Social protection,11.218
-2018,Yukon,Education,15.443
-2018,Yukon,Health,25.316
-2018,Yukon,Other expenditure,50
-2018,Yukon,Social protection,9.241
-2019,Alberta,Education,24.553
-2019,Alberta,Health,37.333
-2019,Alberta,Other expenditure,29.482
-2019,Alberta,Social protection,8.632
-2019,British Columbia,Education,22.75
-2019,British Columbia,Health,42.614
-2019,British Columbia,Other expenditure,23.586
-2019,British Columbia,Social protection,11.05
-2019,Manitoba,Education,23.42
-2019,Manitoba,Health,42.618
-2019,Manitoba,Other expenditure,24.867
-2019,Manitoba,Social protection,9.094
-2019,New Brunswick,Education,16.647
-2019,New Brunswick,Health,43.987
-2019,New Brunswick,Other expenditure,30.576
-2019,New Brunswick,Social protection,8.789
-2019,Newfoundland and Labrador,Education,21.846
-2019,Newfoundland and Labrador,Health,45.513
-2019,Newfoundland and Labrador,Other expenditure,26.878
-2019,Newfoundland and Labrador,Social protection,5.763
-2019,Northwest Territories,Education,13.537
-2019,Northwest Territories,Health,32.387
-2019,Northwest Territories,Other expenditure,41.849
-2019,Northwest Territories,Social protection,12.227
-2019,Nova Scotia,Education,22.86
-2019,Nova Scotia,Health,42.144
-2019,Nova Scotia,Other expenditure,27.668
-2019,Nova Scotia,Social protection,7.328
-2019,Nunavut,Education,14.1
-2019,Nunavut,Health,24.19
-2019,Nunavut,Other expenditure,49.514
-2019,Nunavut,Social protection,12.196
-2019,Ontario,Education,25.045
-2019,Ontario,Health,36.546
-2019,Ontario,Other expenditure,25.769
-2019,Ontario,Social protection,12.64
-2019,Prince Edward Island,Education,24.849
-2019,Prince Edward Island,Health,43.16
-2019,Prince Edward Island,Other expenditure,26.211
-2019,Prince Edward Island,Social protection,5.781
-2019,Quebec,Education,19.717
-2019,Quebec,Health,33.009
-2019,Quebec,Other expenditure,28.679
-2019,Quebec,Social protection,18.595
-2019,Saskatchewan,Education,26.027
-2019,Saskatchewan,Health,38.214
-2019,Saskatchewan,Other expenditure,24.768
-2019,Saskatchewan,Social protection,10.991
-2019,Yukon,Education,15.707
-2019,Yukon,Health,25.407
-2019,Yukon,Other expenditure,50.188
-2019,Yukon,Social protection,8.698
diff --git a/tests/assets/progress-calculation/data/temp/indicator_10-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_10-2-1.csv
deleted file mode 100644
index 08f38a15..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_10-2-1.csv
+++ /dev/null
@@ -1,1261 +0,0 @@
-Year,Geography,Persons in low income,GeoCode,Value
-2015,"","",,14.2
-2016,"","",,13
-2017,"","",,12.6
-2018,"","",,12.3
-2019,"","",,12.1
-2015,Canada,Persons under 18 years,,15.2
-2015,Canada,Persons 18 to 64 years,,13.9
-2015,Canada,Persons 65 years and over,,14.3
-2015,Canada,Males,,13.7
-2015,Canada,"Males, under 18 years",,15
-2015,Canada,"Males, 18 to 64 years",,13.6
-2015,Canada,"Males, 65 years and over",,11.9
-2015,Canada,Females,,14.7
-2015,Canada,"Females, under 18 years",,15.4
-2015,Canada,"Females, 18 to 64 years",,14.1
-2015,Canada,"Females, 65 years and over",,16.3
-2015,Atlantic provinces,All persons,,16.7
-2015,Atlantic provinces,Persons under 18 years,,17.5
-2015,Atlantic provinces,Persons 18 to 64 years,,14.9
-2015,Atlantic provinces,Persons 65 years and over,,22
-2015,Atlantic provinces,Males,,15.5
-2015,Atlantic provinces,"Males, under 18 years",,16.8
-2015,Atlantic provinces,"Males, 18 to 64 years",,14.5
-2015,Atlantic provinces,"Males, 65 years and over",,18
-2015,Atlantic provinces,Females,,17.9
-2015,Atlantic provinces,"Females, under 18 years",,18.2
-2015,Atlantic provinces,"Females, 18 to 64 years",,15.4
-2015,Atlantic provinces,"Females, 65 years and over",,25.5
-2015,Newfoundland and Labrador,All persons,10,15.4
-2015,Newfoundland and Labrador,Persons under 18 years,,16.1
-2015,Newfoundland and Labrador,Persons 18 to 64 years,,11.7
-2015,Newfoundland and Labrador,Persons 65 years and over,,27.6
-2015,Newfoundland and Labrador,Males,,13
-2015,Newfoundland and Labrador,"Males, under 18 years",,15
-2015,Newfoundland and Labrador,"Males, 18 to 64 years",,9.8
-2015,Newfoundland and Labrador,"Males, 65 years and over",,22.9
-2015,Newfoundland and Labrador,Females,,17.7
-2015,Newfoundland and Labrador,"Females, under 18 years",,17.3
-2015,Newfoundland and Labrador,"Females, 18 to 64 years",,13.6
-2015,Newfoundland and Labrador,"Females, 65 years and over",,31.8
-2015,Prince Edward Island,All persons,11,15.9
-2015,Prince Edward Island,Persons under 18 years,,16.4
-2015,Prince Edward Island,Persons 18 to 64 years,,14.5
-2015,Prince Edward Island,Persons 65 years and over,,20.1
-2015,Prince Edward Island,Males,,14.4
-2015,Prince Edward Island,"Males, under 18 years",,14.4
-2015,Prince Edward Island,"Males, 18 to 64 years",,14.9
-2015,Prince Edward Island,"Males, 65 years and over",,12.7
-2015,Prince Edward Island,Females,,17.2
-2015,Prince Edward Island,"Females, under 18 years",,18.2
-2015,Prince Edward Island,"Females, 18 to 64 years",,14
-2015,Prince Edward Island,"Females, 65 years and over",,26.6
-2015,Nova Scotia,All persons,12,17.5
-2015,Nova Scotia,Persons under 18 years,,17.6
-2015,Nova Scotia,Persons 18 to 64 years,,16.4
-2015,Nova Scotia,Persons 65 years and over,,21
-2015,Nova Scotia,Males,,16.3
-2015,Nova Scotia,"Males, under 18 years",,15.9
-2015,Nova Scotia,"Males, 18 to 64 years",,16.1
-2015,Nova Scotia,"Males, 65 years and over",,17.2
-2015,Nova Scotia,Females,,18.6
-2015,Nova Scotia,"Females, under 18 years",,19.6
-2015,Nova Scotia,"Females, 18 to 64 years",,16.6
-2015,Nova Scotia,"Females, 65 years and over",,24.2
-2015,New Brunswick,All persons,13,16.9
-2015,New Brunswick,Persons under 18 years,,18.5
-2015,New Brunswick,Persons 18 to 64 years,,15.5
-2015,New Brunswick,Persons 65 years and over,,19.9
-2015,New Brunswick,Males,,16.5
-2015,New Brunswick,"Males, under 18 years",,19.6
-2015,New Brunswick,"Males, 18 to 64 years",,15.6
-2015,New Brunswick,"Males, 65 years and over",,16.5
-2015,New Brunswick,Females,,17.2
-2015,New Brunswick,"Females, under 18 years",,17.3
-2015,New Brunswick,"Females, 18 to 64 years",,15.4
-2015,New Brunswick,"Females, 65 years and over",,22.8
-2015,Quebec,All persons,24,16.2
-2015,Quebec,Persons under 18 years,,15.5
-2015,Quebec,Persons 18 to 64 years,,15.8
-2015,Quebec,Persons 65 years and over,,18.4
-2015,Quebec,Males,,15.4
-2015,Quebec,"Males, under 18 years",,15
-2015,Quebec,"Males, 18 to 64 years",,15.4
-2015,Quebec,"Males, 65 years and over",,15.6
-2015,Quebec,Females,,17
-2015,Quebec,"Females, under 18 years",,16
-2015,Quebec,"Females, 18 to 64 years",,16.2
-2015,Quebec,"Females, 65 years and over",,20.7
-2015,Ontario,All persons,35,14.3
-2015,Ontario,Persons under 18 years,,15.8
-2015,Ontario,Persons 18 to 64 years,,14.2
-2015,Ontario,Persons 65 years and over,,12.5
-2015,Ontario,Males,,13.8
-2015,Ontario,"Males, under 18 years",,16.7
-2015,Ontario,"Males, 18 to 64 years",,13.8
-2015,Ontario,"Males, 65 years and over",,10
-2015,Ontario,Females,,14.7
-2015,Ontario,"Females, under 18 years",,14.8
-2015,Ontario,"Females, 18 to 64 years",,14.7
-2015,Ontario,"Females, 65 years and over",,14.6
-2015,Prairie provinces,All persons,,9.5
-2015,Prairie provinces,Persons under 18 years,,13.9
-2015,Prairie provinces,Persons 18 to 64 years,,8.3
-2015,Prairie provinces,Persons 65 years and over,,7.8
-2015,Prairie provinces,Males,,9.1
-2015,Prairie provinces,"Males, under 18 years",,12.9
-2015,Prairie provinces,"Males, 18 to 64 years",,8.3
-2015,Prairie provinces,"Males, 65 years and over",,6.3
-2015,Prairie provinces,Females,,9.9
-2015,Prairie provinces,"Females, under 18 years",,15.1
-2015,Prairie provinces,"Females, 18 to 64 years",,8.3
-2015,Prairie provinces,"Females, 65 years and over",,9.1
-2015,Manitoba,All persons,46,15.6
-2015,Manitoba,Persons under 18 years,,22.4
-2015,Manitoba,Persons 18 to 64 years,,13.7
-2015,Manitoba,Persons 65 years and over,,13.4
-2015,Manitoba,Males,,16
-2015,Manitoba,"Males, under 18 years",,26.2
-2015,Manitoba,"Males, 18 to 64 years",,13.9
-2015,Manitoba,"Males, 65 years and over",,9
-2015,Manitoba,Females,,15.2
-2015,Manitoba,"Females, under 18 years",,18.3
-2015,Manitoba,"Females, 18 to 64 years",,13.6
-2015,Manitoba,"Females, 65 years and over",,17.1
-2015,Saskatchewan,All persons,47,12.6
-2015,Saskatchewan,Persons under 18 years,,17.7
-2015,Saskatchewan,Persons 18 to 64 years,,10.8
-2015,Saskatchewan,Persons 65 years and over,,12.4
-2015,Saskatchewan,Males,,11.2
-2015,Saskatchewan,"Males, under 18 years",,17
-2015,Saskatchewan,"Males, 18 to 64 years",,9.4
-2015,Saskatchewan,"Males, 65 years and over",,10.3
-2015,Saskatchewan,Females,,14
-2015,Saskatchewan,"Females, under 18 years",,18.5
-2015,Saskatchewan,"Females, 18 to 64 years",,12.3
-2015,Saskatchewan,"Females, 65 years and over",,14.2
-2015,Alberta,All persons,48,6.9
-2015,Alberta,Persons under 18 years,,10.5
-2015,Alberta,Persons 18 to 64 years,,6.2
-2015,Alberta,Persons 65 years and over,,4.1
-2015,Alberta,Males,,6.6
-2015,Alberta,"Males, under 18 years",,8
-2015,Alberta,"Males, 18 to 64 years",,6.5
-2015,Alberta,"Males, 65 years and over",,4
-2015,Alberta,Females,,7.2
-2015,Alberta,"Females, under 18 years",,13.3
-2015,Alberta,"Females, 18 to 64 years",,5.8
-2015,Alberta,"Females, 65 years and over",,4.2
-2015,British Columbia,All persons,59,15.8
-2015,British Columbia,Persons under 18 years,,14
-2015,British Columbia,Persons 18 to 64 years,,16.8
-2015,British Columbia,Persons 65 years and over,,14.1
-2015,British Columbia,Males,,15.7
-2015,British Columbia,"Males, under 18 years",,12.8
-2015,British Columbia,"Males, 18 to 64 years",,17.3
-2015,British Columbia,"Males, 65 years and over",,12.7
-2015,British Columbia,Females,,15.9
-2015,British Columbia,"Females, under 18 years",,15.2
-2015,British Columbia,"Females, 18 to 64 years",,16.3
-2015,British Columbia,"Females, 65 years and over",,15.3
-2015,"Québec, Quebec",All persons,,9.9
-2015,"Québec, Quebec",Persons under 18 years,,
-2015,"Québec, Quebec",Persons 18 to 64 years,,9
-2015,"Québec, Quebec",Persons 65 years and over,,16.6
-2015,"Québec, Quebec",Males,,10.2
-2015,"Québec, Quebec","Males, under 18 years",,
-2015,"Québec, Quebec","Males, 18 to 64 years",,9.7
-2015,"Québec, Quebec","Males, 65 years and over",,13.9
-2015,"Québec, Quebec",Females,,9.7
-2015,"Québec, Quebec","Females, under 18 years",,
-2015,"Québec, Quebec","Females, 18 to 64 years",,8.4
-2015,"Québec, Quebec","Females, 65 years and over",,18.6
-2015,"Montréal, Quebec",All persons,,18.9
-2015,"Montréal, Quebec",Persons under 18 years,,20.3
-2015,"Montréal, Quebec",Persons 18 to 64 years,,19.1
-2015,"Montréal, Quebec",Persons 65 years and over,,16.1
-2015,"Montréal, Quebec",Males,,18.2
-2015,"Montréal, Quebec","Males, under 18 years",,20.5
-2015,"Montréal, Quebec","Males, 18 to 64 years",,18.4
-2015,"Montréal, Quebec","Males, 65 years and over",,14.4
-2015,"Montréal, Quebec",Females,,19.5
-2015,"Montréal, Quebec","Females, under 18 years",,20.2
-2015,"Montréal, Quebec","Females, 18 to 64 years",,19.8
-2015,"Montréal, Quebec","Females, 65 years and over",,17.4
-2015,"Ottawa-Gatineau, Ontario/Quebec",All persons,,10.8
-2015,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,,10.5
-2015,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,,11.4
-2015,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,,8.1
-2015,"Ottawa-Gatineau, Ontario/Quebec",Males,,9.8
-2015,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",,
-2015,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",,10.6
-2015,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",,
-2015,"Ottawa-Gatineau, Ontario/Quebec",Females,,11.7
-2015,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",,
-2015,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",,12.2
-2015,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",,8.8
-2015,"Toronto, Ontario",All persons,,16.4
-2015,"Toronto, Ontario",Persons under 18 years,,18.8
-2015,"Toronto, Ontario",Persons 18 to 64 years,,15.8
-2015,"Toronto, Ontario",Persons 65 years and over,,15.9
-2015,"Toronto, Ontario",Males,,16
-2015,"Toronto, Ontario","Males, under 18 years",,20.3
-2015,"Toronto, Ontario","Males, 18 to 64 years",,15.2
-2015,"Toronto, Ontario","Males, 65 years and over",,13
-2015,"Toronto, Ontario",Females,,16.7
-2015,"Toronto, Ontario","Females, under 18 years",,17.1
-2015,"Toronto, Ontario","Females, 18 to 64 years",,16.3
-2015,"Toronto, Ontario","Females, 65 years and over",,18.2
-2015,"Winnipeg, Manitoba",All persons,,16.4
-2015,"Winnipeg, Manitoba",Persons under 18 years,,23.8
-2015,"Winnipeg, Manitoba",Persons 18 to 64 years,,15.2
-2015,"Winnipeg, Manitoba",Persons 65 years and over,,10.8
-2015,"Winnipeg, Manitoba",Males,,16.2
-2015,"Winnipeg, Manitoba","Males, under 18 years",,28.3
-2015,"Winnipeg, Manitoba","Males, 18 to 64 years",,14.7
-2015,"Winnipeg, Manitoba","Males, 65 years and over",,4.9
-2015,"Winnipeg, Manitoba",Females,,16.5
-2015,"Winnipeg, Manitoba","Females, under 18 years",,19.5
-2015,"Winnipeg, Manitoba","Females, 18 to 64 years",,15.8
-2015,"Winnipeg, Manitoba","Females, 65 years and over",,15.6
-2015,"Calgary, Alberta",All persons,,7.8
-2015,"Calgary, Alberta",Persons under 18 years,,
-2015,"Calgary, Alberta",Persons 18 to 64 years,,6.7
-2015,"Calgary, Alberta",Persons 65 years and over,,
-2015,"Calgary, Alberta",Males,,7.6
-2015,"Calgary, Alberta","Males, under 18 years",,
-2015,"Calgary, Alberta","Males, 18 to 64 years",,7.2
-2015,"Calgary, Alberta","Males, 65 years and over",,
-2015,"Calgary, Alberta",Females,,8
-2015,"Calgary, Alberta","Females, under 18 years",,
-2015,"Calgary, Alberta","Females, 18 to 64 years",,6.2
-2015,"Calgary, Alberta","Females, 65 years and over",,
-2015,"Edmonton, Alberta",All persons,,6.1
-2015,"Edmonton, Alberta",Persons under 18 years,,
-2015,"Edmonton, Alberta",Persons 18 to 64 years,,5.6
-2015,"Edmonton, Alberta",Persons 65 years and over,,
-2015,"Edmonton, Alberta",Males,,5.9
-2015,"Edmonton, Alberta","Males, under 18 years",,
-2015,"Edmonton, Alberta","Males, 18 to 64 years",,6.6
-2015,"Edmonton, Alberta","Males, 65 years and over",,
-2015,"Edmonton, Alberta",Females,,6.2
-2015,"Edmonton, Alberta","Females, under 18 years",,
-2015,"Edmonton, Alberta","Females, 18 to 64 years",,4.5
-2015,"Edmonton, Alberta","Females, 65 years and over",,
-2015,"Vancouver, British Columbia",All persons,,16.1
-2015,"Vancouver, British Columbia",Persons under 18 years,,15.1
-2015,"Vancouver, British Columbia",Persons 18 to 64 years,,16.7
-2015,"Vancouver, British Columbia",Persons 65 years and over,,15.1
-2015,"Vancouver, British Columbia",Males,,16.2
-2015,"Vancouver, British Columbia","Males, under 18 years",,14.9
-2015,"Vancouver, British Columbia","Males, 18 to 64 years",,16.8
-2015,"Vancouver, British Columbia","Males, 65 years and over",,15.4
-2015,"Vancouver, British Columbia",Females,,16
-2015,"Vancouver, British Columbia","Females, under 18 years",,15.2
-2015,"Vancouver, British Columbia","Females, 18 to 64 years",,16.5
-2015,"Vancouver, British Columbia","Females, 65 years and over",,14.9
-2016,Canada,Persons under 18 years,,14
-2016,Canada,Persons 18 to 64 years,,12.4
-2016,Canada,Persons 65 years and over,,14.2
-2016,Canada,Males,,12.2
-2016,Canada,"Males, under 18 years",,13.5
-2016,Canada,"Males, 18 to 64 years",,11.8
-2016,Canada,"Males, 65 years and over",,12
-2016,Canada,Females,,13.8
-2016,Canada,"Females, under 18 years",,14.5
-2016,Canada,"Females, 18 to 64 years",,13
-2016,Canada,"Females, 65 years and over",,16.1
-2016,Atlantic provinces,All persons,,15.4
-2016,Atlantic provinces,Persons under 18 years,,17.6
-2016,Atlantic provinces,Persons 18 to 64 years,,13.4
-2016,Atlantic provinces,Persons 65 years and over,,20.1
-2016,Atlantic provinces,Males,,14.3
-2016,Atlantic provinces,"Males, under 18 years",,18.6
-2016,Atlantic provinces,"Males, 18 to 64 years",,12
-2016,Atlantic provinces,"Males, 65 years and over",,18
-2016,Atlantic provinces,Females,,16.6
-2016,Atlantic provinces,"Females, under 18 years",,16.6
-2016,Atlantic provinces,"Females, 18 to 64 years",,14.8
-2016,Atlantic provinces,"Females, 65 years and over",,21.9
-2016,Newfoundland and Labrador,All persons,10,15.6
-2016,Newfoundland and Labrador,Persons under 18 years,,16.3
-2016,Newfoundland and Labrador,Persons 18 to 64 years,,12.4
-2016,Newfoundland and Labrador,Persons 65 years and over,,25.4
-2016,Newfoundland and Labrador,Males,,13.6
-2016,Newfoundland and Labrador,"Males, under 18 years",,16.5
-2016,Newfoundland and Labrador,"Males, 18 to 64 years",,9.5
-2016,Newfoundland and Labrador,"Males, 65 years and over",,24.9
-2016,Newfoundland and Labrador,Females,,17.6
-2016,Newfoundland and Labrador,"Females, under 18 years",,16.1
-2016,Newfoundland and Labrador,"Females, 18 to 64 years",,15.3
-2016,Newfoundland and Labrador,"Females, 65 years and over",,25.9
-2016,Prince Edward Island,All persons,11,14.4
-2016,Prince Edward Island,Persons under 18 years,,19.8
-2016,Prince Edward Island,Persons 18 to 64 years,,11.2
-2016,Prince Edward Island,Persons 65 years and over,,19.1
-2016,Prince Edward Island,Males,,11.7
-2016,Prince Edward Island,"Males, under 18 years",,16.1
-2016,Prince Edward Island,"Males, 18 to 64 years",,9.8
-2016,Prince Edward Island,"Males, 65 years and over",,13.4
-2016,Prince Edward Island,Females,,16.9
-2016,Prince Edward Island,"Females, under 18 years",,23.9
-2016,Prince Edward Island,"Females, 18 to 64 years",,12.6
-2016,Prince Edward Island,"Females, 65 years and over",,24.1
-2016,Nova Scotia,All persons,12,16.1
-2016,Nova Scotia,Persons under 18 years,,18.1
-2016,Nova Scotia,Persons 18 to 64 years,,15.6
-2016,Nova Scotia,Persons 65 years and over,,16.1
-2016,Nova Scotia,Males,,15.9
-2016,Nova Scotia,"Males, under 18 years",,19.3
-2016,Nova Scotia,"Males, 18 to 64 years",,15.4
-2016,Nova Scotia,"Males, 65 years and over",,14.4
-2016,Nova Scotia,Females,,16.3
-2016,Nova Scotia,"Females, under 18 years",,16.7
-2016,Nova Scotia,"Females, 18 to 64 years",,15.8
-2016,Nova Scotia,"Females, 65 years and over",,17.4
-2016,New Brunswick,All persons,13,14.7
-2016,New Brunswick,Persons under 18 years,,17.5
-2016,New Brunswick,Persons 18 to 64 years,,11.8
-2016,New Brunswick,Persons 65 years and over,,21.5
-2016,New Brunswick,Males,,13.3
-2016,New Brunswick,"Males, under 18 years",,19.7
-2016,New Brunswick,"Males, 18 to 64 years",,9.9
-2016,New Brunswick,"Males, 65 years and over",,18.4
-2016,New Brunswick,Females,,16.1
-2016,New Brunswick,"Females, under 18 years",,15.1
-2016,New Brunswick,"Females, 18 to 64 years",,13.7
-2016,New Brunswick,"Females, 65 years and over",,24.3
-2016,Quebec,All persons,24,14
-2016,Quebec,Persons under 18 years,,13.1
-2016,Quebec,Persons 18 to 64 years,,12.9
-2016,Quebec,Persons 65 years and over,,18.9
-2016,Quebec,Males,,13.4
-2016,Quebec,"Males, under 18 years",,13.4
-2016,Quebec,"Males, 18 to 64 years",,12.7
-2016,Quebec,"Males, 65 years and over",,16
-2016,Quebec,Females,,14.7
-2016,Quebec,"Females, under 18 years",,12.8
-2016,Quebec,"Females, 18 to 64 years",,13.2
-2016,Quebec,"Females, 65 years and over",,21.3
-2016,Ontario,All persons,35,13.7
-2016,Ontario,Persons under 18 years,,16.2
-2016,Ontario,Persons 18 to 64 years,,13.2
-2016,Ontario,Persons 65 years and over,,12.3
-2016,Ontario,Males,,12.2
-2016,Ontario,"Males, under 18 years",,15
-2016,Ontario,"Males, 18 to 64 years",,11.9
-2016,Ontario,"Males, 65 years and over",,10.1
-2016,Ontario,Females,,15
-2016,Ontario,"Females, under 18 years",,17.5
-2016,Ontario,"Females, 18 to 64 years",,14.6
-2016,Ontario,"Females, 65 years and over",,14.1
-2016,Prairie provinces,All persons,,9.6
-2016,Prairie provinces,Persons under 18 years,,10.4
-2016,Prairie provinces,Persons 18 to 64 years,,9.4
-2016,Prairie provinces,Persons 65 years and over,,9.6
-2016,Prairie provinces,Males,,9.5
-2016,Prairie provinces,"Males, under 18 years",,10.6
-2016,Prairie provinces,"Males, 18 to 64 years",,9.2
-2016,Prairie provinces,"Males, 65 years and over",,9.1
-2016,Prairie provinces,Females,,9.8
-2016,Prairie provinces,"Females, under 18 years",,10.1
-2016,Prairie provinces,"Females, 18 to 64 years",,9.7
-2016,Prairie provinces,"Females, 65 years and over",,10
-2016,Manitoba,All persons,46,13.3
-2016,Manitoba,Persons under 18 years,,17.1
-2016,Manitoba,Persons 18 to 64 years,,11.8
-2016,Manitoba,Persons 65 years and over,,14.1
-2016,Manitoba,Males,,13
-2016,Manitoba,"Males, under 18 years",,18.5
-2016,Manitoba,"Males, 18 to 64 years",,11.3
-2016,Manitoba,"Males, 65 years and over",,11.5
-2016,Manitoba,Females,,13.6
-2016,Manitoba,"Females, under 18 years",,15.6
-2016,Manitoba,"Females, 18 to 64 years",,12.3
-2016,Manitoba,"Females, 65 years and over",,16.4
-2016,Saskatchewan,All persons,47,11.6
-2016,Saskatchewan,Persons under 18 years,,13
-2016,Saskatchewan,Persons 18 to 64 years,,10.2
-2016,Saskatchewan,Persons 65 years and over,,15.7
-2016,Saskatchewan,Males,,10.6
-2016,Saskatchewan,"Males, under 18 years",,12.1
-2016,Saskatchewan,"Males, 18 to 64 years",,9.3
-2016,Saskatchewan,"Males, 65 years and over",,14.5
-2016,Saskatchewan,Females,,12.7
-2016,Saskatchewan,"Females, under 18 years",,13.9
-2016,Saskatchewan,"Females, 18 to 64 years",,11.1
-2016,Saskatchewan,"Females, 65 years and over",,16.9
-2016,Alberta,All persons,48,8.1
-2016,Alberta,Persons under 18 years,,7.7
-2016,Alberta,Persons 18 to 64 years,,8.6
-2016,Alberta,Persons 65 years and over,,5.8
-2016,Alberta,Males,,8.2
-2016,Alberta,"Males, under 18 years",,7.8
-2016,Alberta,"Males, 18 to 64 years",,8.6
-2016,Alberta,"Males, 65 years and over",,6.4
-2016,Alberta,Females,,7.9
-2016,Alberta,"Females, under 18 years",,7.7
-2016,Alberta,"Females, 18 to 64 years",,8.5
-2016,Alberta,"Females, 65 years and over",,5.3
-2016,British Columbia,All persons,59,12.9
-2016,British Columbia,Persons under 18 years,,12.8
-2016,British Columbia,Persons 18 to 64 years,,12.9
-2016,British Columbia,Persons 65 years and over,,12.8
-2016,British Columbia,Males,,12.8
-2016,British Columbia,"Males, under 18 years",,11.8
-2016,British Columbia,"Males, 18 to 64 years",,13.9
-2016,British Columbia,"Males, 65 years and over",,9.8
-2016,British Columbia,Females,,12.9
-2016,British Columbia,"Females, under 18 years",,13.9
-2016,British Columbia,"Females, 18 to 64 years",,11.9
-2016,British Columbia,"Females, 65 years and over",,15.6
-2016,"Québec, Quebec",All persons,,11.1
-2016,"Québec, Quebec",Persons under 18 years,,7.8
-2016,"Québec, Quebec",Persons 18 to 64 years,,9.3
-2016,"Québec, Quebec",Persons 65 years and over,,19.9
-2016,"Québec, Quebec",Males,,8.7
-2016,"Québec, Quebec","Males, under 18 years",,
-2016,"Québec, Quebec","Males, 18 to 64 years",,8.3
-2016,"Québec, Quebec","Males, 65 years and over",,13.3
-2016,"Québec, Quebec",Females,,13.2
-2016,"Québec, Quebec","Females, under 18 years",,
-2016,"Québec, Quebec","Females, 18 to 64 years",,10.3
-2016,"Québec, Quebec","Females, 65 years and over",,25
-2016,"Montréal, Quebec",All persons,,14.9
-2016,"Montréal, Quebec",Persons under 18 years,,15.8
-2016,"Montréal, Quebec",Persons 18 to 64 years,,14
-2016,"Montréal, Quebec",Persons 65 years and over,,17.4
-2016,"Montréal, Quebec",Males,,14.7
-2016,"Montréal, Quebec","Males, under 18 years",,15.6
-2016,"Montréal, Quebec","Males, 18 to 64 years",,13.8
-2016,"Montréal, Quebec","Males, 65 years and over",,17.7
-2016,"Montréal, Quebec",Females,,15.1
-2016,"Montréal, Quebec","Females, under 18 years",,16
-2016,"Montréal, Quebec","Females, 18 to 64 years",,14.2
-2016,"Montréal, Quebec","Females, 65 years and over",,17.2
-2016,"Ottawa-Gatineau, Ontario/Quebec",All persons,,9.3
-2016,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,,11.1
-2016,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,,9.2
-2016,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,,7.1
-2016,"Ottawa-Gatineau, Ontario/Quebec",Males,,8.3
-2016,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",,9.6
-2016,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",,8.7
-2016,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",,
-2016,"Ottawa-Gatineau, Ontario/Quebec",Females,,10.3
-2016,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",,12.4
-2016,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",,9.8
-2016,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",,9.7
-2016,"Toronto, Ontario",All persons,,15.6
-2016,"Toronto, Ontario",Persons under 18 years,,19.3
-2016,"Toronto, Ontario",Persons 18 to 64 years,,14.7
-2016,"Toronto, Ontario",Persons 65 years and over,,14.6
-2016,"Toronto, Ontario",Males,,13.9
-2016,"Toronto, Ontario","Males, under 18 years",,16.9
-2016,"Toronto, Ontario","Males, 18 to 64 years",,12.9
-2016,"Toronto, Ontario","Males, 65 years and over",,14.2
-2016,"Toronto, Ontario",Females,,17.2
-2016,"Toronto, Ontario","Females, under 18 years",,21.6
-2016,"Toronto, Ontario","Females, 18 to 64 years",,16.4
-2016,"Toronto, Ontario","Females, 65 years and over",,14.9
-2016,"Winnipeg, Manitoba",All persons,,13.3
-2016,"Winnipeg, Manitoba",Persons under 18 years,,18.7
-2016,"Winnipeg, Manitoba",Persons 18 to 64 years,,12.1
-2016,"Winnipeg, Manitoba",Persons 65 years and over,,11.1
-2016,"Winnipeg, Manitoba",Males,,13.2
-2016,"Winnipeg, Manitoba","Males, under 18 years",,20
-2016,"Winnipeg, Manitoba","Males, 18 to 64 years",,11.7
-2016,"Winnipeg, Manitoba","Males, 65 years and over",,9.6
-2016,"Winnipeg, Manitoba",Females,,13.4
-2016,"Winnipeg, Manitoba","Females, under 18 years",,17.4
-2016,"Winnipeg, Manitoba","Females, 18 to 64 years",,12.5
-2016,"Winnipeg, Manitoba","Females, 65 years and over",,12.4
-2016,"Calgary, Alberta",All persons,,6.6
-2016,"Calgary, Alberta",Persons under 18 years,,5.3
-2016,"Calgary, Alberta",Persons 18 to 64 years,,7
-2016,"Calgary, Alberta",Persons 65 years and over,,
-2016,"Calgary, Alberta",Males,,6.7
-2016,"Calgary, Alberta","Males, under 18 years",,5.8
-2016,"Calgary, Alberta","Males, 18 to 64 years",,6.3
-2016,"Calgary, Alberta","Males, 65 years and over",,
-2016,"Calgary, Alberta",Females,,6.5
-2016,"Calgary, Alberta","Females, under 18 years",,
-2016,"Calgary, Alberta","Females, 18 to 64 years",,7.6
-2016,"Calgary, Alberta","Females, 65 years and over",,
-2016,"Edmonton, Alberta",All persons,,6.7
-2016,"Edmonton, Alberta",Persons under 18 years,,
-2016,"Edmonton, Alberta",Persons 18 to 64 years,,8.2
-2016,"Edmonton, Alberta",Persons 65 years and over,,
-2016,"Edmonton, Alberta",Males,,7.2
-2016,"Edmonton, Alberta","Males, under 18 years",,
-2016,"Edmonton, Alberta","Males, 18 to 64 years",,9.1
-2016,"Edmonton, Alberta","Males, 65 years and over",,
-2016,"Edmonton, Alberta",Females,,6.1
-2016,"Edmonton, Alberta","Females, under 18 years",,
-2016,"Edmonton, Alberta","Females, 18 to 64 years",,7.3
-2016,"Edmonton, Alberta","Females, 65 years and over",,
-2016,"Vancouver, British Columbia",All persons,,12.2
-2016,"Vancouver, British Columbia",Persons under 18 years,,11.4
-2016,"Vancouver, British Columbia",Persons 18 to 64 years,,12.2
-2016,"Vancouver, British Columbia",Persons 65 years and over,,12.8
-2016,"Vancouver, British Columbia",Males,,11.9
-2016,"Vancouver, British Columbia","Males, under 18 years",,10.9
-2016,"Vancouver, British Columbia","Males, 18 to 64 years",,13.1
-2016,"Vancouver, British Columbia","Males, 65 years and over",,8.8
-2016,"Vancouver, British Columbia",Females,,12.4
-2016,"Vancouver, British Columbia","Females, under 18 years",,12
-2016,"Vancouver, British Columbia","Females, 18 to 64 years",,11.4
-2016,"Vancouver, British Columbia","Females, 65 years and over",,16.5
-2017,Canada,Persons under 18 years,,11.9
-2017,Canada,Persons 18 to 64 years,,12.2
-2017,Canada,Persons 65 years and over,,15.1
-2017,Canada,Males,,11.8
-2017,Canada,"Males, under 18 years",,11.4
-2017,Canada,"Males, 18 to 64 years",,11.9
-2017,Canada,"Males, 65 years and over",,11.9
-2017,Canada,Females,,13.4
-2017,Canada,"Females, under 18 years",,12.4
-2017,Canada,"Females, 18 to 64 years",,12.4
-2017,Canada,"Females, 65 years and over",,17.9
-2017,Atlantic provinces,All persons,,16
-2017,Atlantic provinces,Persons under 18 years,,16.4
-2017,Atlantic provinces,Persons 18 to 64 years,,14.7
-2017,Atlantic provinces,Persons 65 years and over,,19.4
-2017,Atlantic provinces,Males,,14.7
-2017,Atlantic provinces,"Males, under 18 years",,15.9
-2017,Atlantic provinces,"Males, 18 to 64 years",,13.6
-2017,Atlantic provinces,"Males, 65 years and over",,17.1
-2017,Atlantic provinces,Females,,17.1
-2017,Atlantic provinces,"Females, under 18 years",,16.9
-2017,Atlantic provinces,"Females, 18 to 64 years",,15.7
-2017,Atlantic provinces,"Females, 65 years and over",,21.5
-2017,Newfoundland and Labrador,All persons,10,15
-2017,Newfoundland and Labrador,Persons under 18 years,,13.1
-2017,Newfoundland and Labrador,Persons 18 to 64 years,,13.3
-2017,Newfoundland and Labrador,Persons 65 years and over,,22.2
-2017,Newfoundland and Labrador,Males,,13.7
-2017,Newfoundland and Labrador,"Males, under 18 years",,13.5
-2017,Newfoundland and Labrador,"Males, 18 to 64 years",,11.9
-2017,Newfoundland and Labrador,"Males, 65 years and over",,19.8
-2017,Newfoundland and Labrador,Females,,16.3
-2017,Newfoundland and Labrador,"Females, under 18 years",,12.6
-2017,Newfoundland and Labrador,"Females, 18 to 64 years",,14.6
-2017,Newfoundland and Labrador,"Females, 65 years and over",,24.3
-2017,Prince Edward Island,All persons,11,14.4
-2017,Prince Edward Island,Persons under 18 years,,12.1
-2017,Prince Edward Island,Persons 18 to 64 years,,13.4
-2017,Prince Edward Island,Persons 65 years and over,,19.8
-2017,Prince Edward Island,Males,,14.3
-2017,Prince Edward Island,"Males, under 18 years",,14
-2017,Prince Edward Island,"Males, 18 to 64 years",,13.5
-2017,Prince Edward Island,"Males, 65 years and over",,17.6
-2017,Prince Edward Island,Females,,14.5
-2017,Prince Edward Island,"Females, under 18 years",,10
-2017,Prince Edward Island,"Females, 18 to 64 years",,13.4
-2017,Prince Edward Island,"Females, 65 years and over",,21.7
-2017,Nova Scotia,All persons,12,17.5
-2017,Nova Scotia,Persons under 18 years,,19.3
-2017,Nova Scotia,Persons 18 to 64 years,,16.9
-2017,Nova Scotia,Persons 65 years and over,,17.9
-2017,Nova Scotia,Males,,16.1
-2017,Nova Scotia,"Males, under 18 years",,17.1
-2017,Nova Scotia,"Males, 18 to 64 years",,15.8
-2017,Nova Scotia,"Males, 65 years and over",,16
-2017,Nova Scotia,Females,,18.8
-2017,Nova Scotia,"Females, under 18 years",,21.7
-2017,Nova Scotia,"Females, 18 to 64 years",,17.8
-2017,Nova Scotia,"Females, 65 years and over",,19.6
-2017,New Brunswick,All persons,13,15
-2017,New Brunswick,Persons under 18 years,,16.1
-2017,New Brunswick,Persons 18 to 64 years,,13.2
-2017,New Brunswick,Persons 65 years and over,,19.3
-2017,New Brunswick,Males,,13.8
-2017,New Brunswick,"Males, under 18 years",,16.6
-2017,New Brunswick,"Males, 18 to 64 years",,12.1
-2017,New Brunswick,"Males, 65 years and over",,16.4
-2017,New Brunswick,Females,,16.1
-2017,New Brunswick,"Females, under 18 years",,15.7
-2017,New Brunswick,"Females, 18 to 64 years",,14.3
-2017,New Brunswick,"Females, 65 years and over",,21.9
-2017,Quebec,All persons,24,14.4
-2017,Quebec,Persons under 18 years,,10.5
-2017,Quebec,Persons 18 to 64 years,,13.2
-2017,Quebec,Persons 65 years and over,,22.3
-2017,Quebec,Males,,13.1
-2017,Quebec,"Males, under 18 years",,10.5
-2017,Quebec,"Males, 18 to 64 years",,12.9
-2017,Quebec,"Males, 65 years and over",,16.9
-2017,Quebec,Females,,15.7
-2017,Quebec,"Females, under 18 years",,10.6
-2017,Quebec,"Females, 18 to 64 years",,13.6
-2017,Quebec,"Females, 65 years and over",,27
-2017,Ontario,All persons,35,12.7
-2017,Ontario,Persons under 18 years,,13
-2017,Ontario,Persons 18 to 64 years,,12.8
-2017,Ontario,Persons 65 years and over,,11.9
-2017,Ontario,Males,,12.3
-2017,Ontario,"Males, under 18 years",,12.1
-2017,Ontario,"Males, 18 to 64 years",,13.1
-2017,Ontario,"Males, 65 years and over",,9.4
-2017,Ontario,Females,,13.1
-2017,Ontario,"Females, under 18 years",,14
-2017,Ontario,"Females, 18 to 64 years",,12.6
-2017,Ontario,"Females, 65 years and over",,14
-2017,Prairie provinces,All persons,,9.6
-2017,Prairie provinces,Persons under 18 years,,10.9
-2017,Prairie provinces,Persons 18 to 64 years,,9.3
-2017,Prairie provinces,Persons 65 years and over,,8.8
-2017,Prairie provinces,Males,,8.7
-2017,Prairie provinces,"Males, under 18 years",,9.8
-2017,Prairie provinces,"Males, 18 to 64 years",,8.6
-2017,Prairie provinces,"Males, 65 years and over",,7
-2017,Prairie provinces,Females,,10.5
-2017,Prairie provinces,"Females, under 18 years",,12
-2017,Prairie provinces,"Females, 18 to 64 years",,10
-2017,Prairie provinces,"Females, 65 years and over",,10.4
-2017,Manitoba,All persons,46,14.5
-2017,Manitoba,Persons under 18 years,,19
-2017,Manitoba,Persons 18 to 64 years,,12.9
-2017,Manitoba,Persons 65 years and over,,15.1
-2017,Manitoba,Males,,13.2
-2017,Manitoba,"Males, under 18 years",,16.9
-2017,Manitoba,"Males, 18 to 64 years",,12.2
-2017,Manitoba,"Males, 65 years and over",,12
-2017,Manitoba,Females,,15.8
-2017,Manitoba,"Females, under 18 years",,21.1
-2017,Manitoba,"Females, 18 to 64 years",,13.5
-2017,Manitoba,"Females, 65 years and over",,17.7
-2017,Saskatchewan,All persons,47,13
-2017,Saskatchewan,Persons under 18 years,,15.4
-2017,Saskatchewan,Persons 18 to 64 years,,11.6
-2017,Saskatchewan,Persons 65 years and over,,15.4
-2017,Saskatchewan,Males,,12.3
-2017,Saskatchewan,"Males, under 18 years",,14.9
-2017,Saskatchewan,"Males, 18 to 64 years",,11.3
-2017,Saskatchewan,"Males, 65 years and over",,12.7
-2017,Saskatchewan,Females,,13.7
-2017,Saskatchewan,"Females, under 18 years",,15.9
-2017,Saskatchewan,"Females, 18 to 64 years",,11.9
-2017,Saskatchewan,"Females, 65 years and over",,17.8
-2017,Alberta,All persons,48,7.2
-2017,Alberta,Persons under 18 years,,7.3
-2017,Alberta,Persons 18 to 64 years,,7.7
-2017,Alberta,Persons 65 years and over,,4.4
-2017,Alberta,Males,,6.4
-2017,Alberta,"Males, under 18 years",,6.3
-2017,Alberta,"Males, 18 to 64 years",,7
-2017,Alberta,"Males, 65 years and over",,3.4
-2017,Alberta,Females,,8
-2017,Alberta,"Females, under 18 years",,8.4
-2017,Alberta,"Females, 18 to 64 years",,8.5
-2017,Alberta,"Females, 65 years and over",,5.4
-2017,British Columbia,All persons,59,11.7
-2017,British Columbia,Persons under 18 years,,10.5
-2017,British Columbia,Persons 18 to 64 years,,11.1
-2017,British Columbia,Persons 65 years and over,,14.9
-2017,British Columbia,Males,,11
-2017,British Columbia,"Males, under 18 years",,11.7
-2017,British Columbia,"Males, 18 to 64 years",,10.5
-2017,British Columbia,"Males, 65 years and over",,11.8
-2017,British Columbia,Females,,12.4
-2017,British Columbia,"Females, under 18 years",,9.2
-2017,British Columbia,"Females, 18 to 64 years",,11.7
-2017,British Columbia,"Females, 65 years and over",,17.8
-2017,"Québec, Quebec",All persons,,8.7
-2017,"Québec, Quebec",Persons under 18 years,,
-2017,"Québec, Quebec",Persons 18 to 64 years,,7.1
-2017,"Québec, Quebec",Persons 65 years and over,,17.8
-2017,"Québec, Quebec",Males,,7.7
-2017,"Québec, Quebec","Males, under 18 years",,
-2017,"Québec, Quebec","Males, 18 to 64 years",,6.5
-2017,"Québec, Quebec","Males, 65 years and over",,13.7
-2017,"Québec, Quebec",Females,,9.8
-2017,"Québec, Quebec","Females, under 18 years",,
-2017,"Québec, Quebec","Females, 18 to 64 years",,7.7
-2017,"Québec, Quebec","Females, 65 years and over",,21.7
-2017,"Montréal, Quebec",All persons,,15.6
-2017,"Montréal, Quebec",Persons under 18 years,,12.6
-2017,"Montréal, Quebec",Persons 18 to 64 years,,14.9
-2017,"Montréal, Quebec",Persons 65 years and over,,22.4
-2017,"Montréal, Quebec",Males,,14.7
-2017,"Montréal, Quebec","Males, under 18 years",,12.9
-2017,"Montréal, Quebec","Males, 18 to 64 years",,14.7
-2017,"Montréal, Quebec","Males, 65 years and over",,17.1
-2017,"Montréal, Quebec",Females,,16.6
-2017,"Montréal, Quebec","Females, under 18 years",,12.2
-2017,"Montréal, Quebec","Females, 18 to 64 years",,15.1
-2017,"Montréal, Quebec","Females, 65 years and over",,26.6
-2017,"Ottawa-Gatineau, Ontario/Quebec",All persons,,10.9
-2017,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,,11.3
-2017,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,,10.6
-2017,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,,11.9
-2017,"Ottawa-Gatineau, Ontario/Quebec",Males,,10.8
-2017,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",,12.1
-2017,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",,10.7
-2017,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",,9.1
-2017,"Ottawa-Gatineau, Ontario/Quebec",Females,,11.1
-2017,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",,10.4
-2017,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",,10.5
-2017,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",,14
-2017,"Toronto, Ontario",All persons,,12.4
-2017,"Toronto, Ontario",Persons under 18 years,,12.7
-2017,"Toronto, Ontario",Persons 18 to 64 years,,12.6
-2017,"Toronto, Ontario",Persons 65 years and over,,11.2
-2017,"Toronto, Ontario",Males,,12.3
-2017,"Toronto, Ontario","Males, under 18 years",,11.2
-2017,"Toronto, Ontario","Males, 18 to 64 years",,13.1
-2017,"Toronto, Ontario","Males, 65 years and over",,9.7
-2017,"Toronto, Ontario",Females,,12.5
-2017,"Toronto, Ontario","Females, under 18 years",,14.2
-2017,"Toronto, Ontario","Females, 18 to 64 years",,12
-2017,"Toronto, Ontario","Females, 65 years and over",,12.5
-2017,"Winnipeg, Manitoba",All persons,,14.4
-2017,"Winnipeg, Manitoba",Persons under 18 years,,18.4
-2017,"Winnipeg, Manitoba",Persons 18 to 64 years,,13.2
-2017,"Winnipeg, Manitoba",Persons 65 years and over,,14.5
-2017,"Winnipeg, Manitoba",Males,,13.3
-2017,"Winnipeg, Manitoba","Males, under 18 years",,15.3
-2017,"Winnipeg, Manitoba","Males, 18 to 64 years",,13
-2017,"Winnipeg, Manitoba","Males, 65 years and over",,11.7
-2017,"Winnipeg, Manitoba",Females,,15.6
-2017,"Winnipeg, Manitoba","Females, under 18 years",,21.5
-2017,"Winnipeg, Manitoba","Females, 18 to 64 years",,13.5
-2017,"Winnipeg, Manitoba","Females, 65 years and over",,16.8
-2017,"Calgary, Alberta",All persons,,6.4
-2017,"Calgary, Alberta",Persons under 18 years,,7.8
-2017,"Calgary, Alberta",Persons 18 to 64 years,,6.6
-2017,"Calgary, Alberta",Persons 65 years and over,,
-2017,"Calgary, Alberta",Males,,5.7
-2017,"Calgary, Alberta","Males, under 18 years",,4.8
-2017,"Calgary, Alberta","Males, 18 to 64 years",,6.5
-2017,"Calgary, Alberta","Males, 65 years and over",,
-2017,"Calgary, Alberta",Females,,7.1
-2017,"Calgary, Alberta","Females, under 18 years",,10.2
-2017,"Calgary, Alberta","Females, 18 to 64 years",,6.8
-2017,"Calgary, Alberta","Females, 65 years and over",,
-2017,"Edmonton, Alberta",All persons,,6.9
-2017,"Edmonton, Alberta",Persons under 18 years,,
-2017,"Edmonton, Alberta",Persons 18 to 64 years,,7.2
-2017,"Edmonton, Alberta",Persons 65 years and over,,5.8
-2017,"Edmonton, Alberta",Males,,6.3
-2017,"Edmonton, Alberta","Males, under 18 years",,
-2017,"Edmonton, Alberta","Males, 18 to 64 years",,6.4
-2017,"Edmonton, Alberta","Males, 65 years and over",,
-2017,"Edmonton, Alberta",Females,,7.5
-2017,"Edmonton, Alberta","Females, under 18 years",,
-2017,"Edmonton, Alberta","Females, 18 to 64 years",,8
-2017,"Edmonton, Alberta","Females, 65 years and over",,
-2017,"Vancouver, British Columbia",All persons,,12.5
-2017,"Vancouver, British Columbia",Persons under 18 years,,10.6
-2017,"Vancouver, British Columbia",Persons 18 to 64 years,,11.8
-2017,"Vancouver, British Columbia",Persons 65 years and over,,17.4
-2017,"Vancouver, British Columbia",Males,,11.7
-2017,"Vancouver, British Columbia","Males, under 18 years",,12.7
-2017,"Vancouver, British Columbia","Males, 18 to 64 years",,11.1
-2017,"Vancouver, British Columbia","Males, 65 years and over",,13.3
-2017,"Vancouver, British Columbia",Females,,13.3
-2017,"Vancouver, British Columbia","Females, under 18 years",,
-2017,"Vancouver, British Columbia","Females, 18 to 64 years",,12.6
-2017,"Vancouver, British Columbia","Females, 65 years and over",,20.9
-2018,Canada,Persons under 18 years,,12.3
-2018,Canada,Persons 18 to 64 years,,11.8
-2018,Canada,Persons 65 years and over,,14.3
-2018,Canada,Males,,11.8
-2018,Canada,"Males, under 18 years",,13
-2018,Canada,"Males, 18 to 64 years",,11.5
-2018,Canada,"Males, 65 years and over",,11.6
-2018,Canada,Females,,12.8
-2018,Canada,"Females, under 18 years",,11.6
-2018,Canada,"Females, 18 to 64 years",,12
-2018,Canada,"Females, 65 years and over",,16.6
-2018,Atlantic provinces,All persons,,15.2
-2018,Atlantic provinces,Persons under 18 years,,15.8
-2018,Atlantic provinces,Persons 18 to 64 years,,13.2
-2018,Atlantic provinces,Persons 65 years and over,,20.6
-2018,Atlantic provinces,Males,,14.5
-2018,Atlantic provinces,"Males, under 18 years",,16.6
-2018,Atlantic provinces,"Males, 18 to 64 years",,13
-2018,Atlantic provinces,"Males, 65 years and over",,17
-2018,Atlantic provinces,Females,,15.8
-2018,Atlantic provinces,"Females, under 18 years",,15
-2018,Atlantic provinces,"Females, 18 to 64 years",,13.3
-2018,Atlantic provinces,"Females, 65 years and over",,23.7
-2018,Newfoundland and Labrador,All persons,10,16
-2018,Newfoundland and Labrador,Persons under 18 years,,15.7
-2018,Newfoundland and Labrador,Persons 18 to 64 years,,13.7
-2018,Newfoundland and Labrador,Persons 65 years and over,,23.3
-2018,Newfoundland and Labrador,Males,,15.8
-2018,Newfoundland and Labrador,"Males, under 18 years",,16.7
-2018,Newfoundland and Labrador,"Males, 18 to 64 years",,14.4
-2018,Newfoundland and Labrador,"Males, 65 years and over",,19.4
-2018,Newfoundland and Labrador,Females,,16.2
-2018,Newfoundland and Labrador,"Females, under 18 years",,14.6
-2018,Newfoundland and Labrador,"Females, 18 to 64 years",,13
-2018,Newfoundland and Labrador,"Females, 65 years and over",,26.8
-2018,Prince Edward Island,All persons,11,14.6
-2018,Prince Edward Island,Persons under 18 years,,15.9
-2018,Prince Edward Island,Persons 18 to 64 years,,12
-2018,Prince Edward Island,Persons 65 years and over,,21.8
-2018,Prince Edward Island,Males,,13.8
-2018,Prince Edward Island,"Males, under 18 years",,16.3
-2018,Prince Edward Island,"Males, 18 to 64 years",,11.7
-2018,Prince Edward Island,"Males, 65 years and over",,18.2
-2018,Prince Edward Island,Females,,15.5
-2018,Prince Edward Island,"Females, under 18 years",,15.4
-2018,Prince Edward Island,"Females, 18 to 64 years",,12.3
-2018,Prince Edward Island,"Females, 65 years and over",,24.9
-2018,Nova Scotia,All persons,12,15.9
-2018,Nova Scotia,Persons under 18 years,,16.8
-2018,Nova Scotia,Persons 18 to 64 years,,14.3
-2018,Nova Scotia,Persons 65 years and over,,20.2
-2018,Nova Scotia,Males,,15.1
-2018,Nova Scotia,"Males, under 18 years",,17.8
-2018,Nova Scotia,"Males, 18 to 64 years",,13.8
-2018,Nova Scotia,"Males, 65 years and over",,16.7
-2018,Nova Scotia,Females,,16.7
-2018,Nova Scotia,"Females, under 18 years",,15.9
-2018,Nova Scotia,"Females, 18 to 64 years",,14.7
-2018,Nova Scotia,"Females, 65 years and over",,23.2
-2018,New Brunswick,All persons,13,13.8
-2018,New Brunswick,Persons under 18 years,,14.7
-2018,New Brunswick,Persons 18 to 64 years,,11.7
-2018,New Brunswick,Persons 65 years and over,,18.9
-2018,New Brunswick,Males,,12.9
-2018,New Brunswick,"Males, under 18 years",,15.3
-2018,New Brunswick,"Males, 18 to 64 years",,11.4
-2018,New Brunswick,"Males, 65 years and over",,15.4
-2018,New Brunswick,Females,,14.6
-2018,New Brunswick,"Females, under 18 years",,14.1
-2018,New Brunswick,"Females, 18 to 64 years",,12
-2018,New Brunswick,"Females, 65 years and over",,22.1
-2018,Quebec,All persons,24,14
-2018,Quebec,Persons under 18 years,,11.7
-2018,Quebec,Persons 18 to 64 years,,12.8
-2018,Quebec,Persons 65 years and over,,20.4
-2018,Quebec,Males,,13
-2018,Quebec,"Males, under 18 years",,11.5
-2018,Quebec,"Males, 18 to 64 years",,12.5
-2018,Quebec,"Males, 65 years and over",,16.1
-2018,Quebec,Females,,15.1
-2018,Quebec,"Females, under 18 years",,11.8
-2018,Quebec,"Females, 18 to 64 years",,13.1
-2018,Quebec,"Females, 65 years and over",,24.1
-2018,Ontario,All persons,35,12.4
-2018,Ontario,Persons under 18 years,,13.9
-2018,Ontario,Persons 18 to 64 years,,12.3
-2018,Ontario,Persons 65 years and over,,11.3
-2018,Ontario,Males,,12
-2018,Ontario,"Males, under 18 years",,14.8
-2018,Ontario,"Males, 18 to 64 years",,11.7
-2018,Ontario,"Males, 65 years and over",,9.3
-2018,Ontario,Females,,12.9
-2018,Ontario,"Females, under 18 years",,12.9
-2018,Ontario,"Females, 18 to 64 years",,12.8
-2018,Ontario,"Females, 65 years and over",,13.1
-2018,Prairie provinces,All persons,,9.7
-2018,Prairie provinces,Persons under 18 years,,10.7
-2018,Prairie provinces,Persons 18 to 64 years,,9.4
-2018,Prairie provinces,Persons 65 years and over,,9.2
-2018,Prairie provinces,Males,,9.4
-2018,Prairie provinces,"Males, under 18 years",,11.1
-2018,Prairie provinces,"Males, 18 to 64 years",,9.1
-2018,Prairie provinces,"Males, 65 years and over",,7.5
-2018,Prairie provinces,Females,,10
-2018,Prairie provinces,"Females, under 18 years",,10.3
-2018,Prairie provinces,"Females, 18 to 64 years",,9.7
-2018,Prairie provinces,"Females, 65 years and over",,10.7
-2018,Manitoba,All persons,46,14.1
-2018,Manitoba,Persons under 18 years,,19
-2018,Manitoba,Persons 18 to 64 years,,12.2
-2018,Manitoba,Persons 65 years and over,,14.8
-2018,Manitoba,Males,,13.3
-2018,Manitoba,"Males, under 18 years",,19.5
-2018,Manitoba,"Males, 18 to 64 years",,11.7
-2018,Manitoba,"Males, 65 years and over",,10.5
-2018,Manitoba,Females,,14.8
-2018,Manitoba,"Females, under 18 years",,18.4
-2018,Manitoba,"Females, 18 to 64 years",,12.6
-2018,Manitoba,"Females, 65 years and over",,18.6
-2018,Saskatchewan,All persons,47,13
-2018,Saskatchewan,Persons under 18 years,,14.3
-2018,Saskatchewan,Persons 18 to 64 years,,12.5
-2018,Saskatchewan,Persons 65 years and over,,13.4
-2018,Saskatchewan,Males,,12.3
-2018,Saskatchewan,"Males, under 18 years",,13.4
-2018,Saskatchewan,"Males, 18 to 64 years",,12.3
-2018,Saskatchewan,"Males, 65 years and over",,10.8
-2018,Saskatchewan,Females,,13.8
-2018,Saskatchewan,"Females, under 18 years",,15.2
-2018,Saskatchewan,"Females, 18 to 64 years",,12.7
-2018,Saskatchewan,"Females, 65 years and over",,15.6
-2018,Alberta,All persons,48,7.5
-2018,Alberta,Persons under 18 years,,7.3
-2018,Alberta,Persons 18 to 64 years,,7.9
-2018,Alberta,Persons 65 years and over,,5.9
-2018,Alberta,Males,,7.5
-2018,Alberta,"Males, under 18 years",,8
-2018,Alberta,"Males, 18 to 64 years",,7.7
-2018,Alberta,"Males, 65 years and over",,5.4
-2018,Alberta,Females,,7.6
-2018,Alberta,"Females, under 18 years",,6.6
-2018,Alberta,"Females, 18 to 64 years",,8.2
-2018,Alberta,"Females, 65 years and over",,6.4
-2018,British Columbia,All persons,59,11.2
-2018,British Columbia,Persons under 18 years,,9.4
-2018,British Columbia,Persons 18 to 64 years,,11.1
-2018,British Columbia,Persons 65 years and over,,13.1
-2018,British Columbia,Males,,11.6
-2018,British Columbia,"Males, under 18 years",,11.1
-2018,British Columbia,"Males, 18 to 64 years",,11.8
-2018,British Columbia,"Males, 65 years and over",,11.2
-2018,British Columbia,Females,,10.8
-2018,British Columbia,"Females, under 18 years",,7.5
-2018,British Columbia,"Females, 18 to 64 years",,10.5
-2018,British Columbia,"Females, 65 years and over",,14.9
-2018,"Québec, Quebec",All persons,,11.3
-2018,"Québec, Quebec",Persons under 18 years,,9.5
-2018,"Québec, Quebec",Persons 18 to 64 years,,10.5
-2018,"Québec, Quebec",Persons 65 years and over,,17
-2018,"Québec, Quebec",Males,,11.5
-2018,"Québec, Quebec","Males, under 18 years",,12.3
-2018,"Québec, Quebec","Males, 18 to 64 years",,10
-2018,"Québec, Quebec","Males, 65 years and over",,16.8
-2018,"Québec, Quebec",Females,,11.2
-2018,"Québec, Quebec","Females, under 18 years",,
-2018,"Québec, Quebec","Females, 18 to 64 years",,10.9
-2018,"Québec, Quebec","Females, 65 years and over",,17.1
-2018,"Montréal, Quebec",All persons,,13.5
-2018,"Montréal, Quebec",Persons under 18 years,,12.6
-2018,"Montréal, Quebec",Persons 18 to 64 years,,12.9
-2018,"Montréal, Quebec",Persons 65 years and over,,16.5
-2018,"Montréal, Quebec",Males,,11.9
-2018,"Montréal, Quebec","Males, under 18 years",,12.4
-2018,"Montréal, Quebec","Males, 18 to 64 years",,12.2
-2018,"Montréal, Quebec","Males, 65 years and over",,9.7
-2018,"Montréal, Quebec",Females,,15
-2018,"Montréal, Quebec","Females, under 18 years",,12.9
-2018,"Montréal, Quebec","Females, 18 to 64 years",,13.6
-2018,"Montréal, Quebec","Females, 65 years and over",,21.9
-2018,"Ottawa-Gatineau, Ontario/Quebec",All persons,,12
-2018,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,,12.4
-2018,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,,11.8
-2018,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,,12.4
-2018,"Ottawa-Gatineau, Ontario/Quebec",Males,,12.3
-2018,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",,12.2
-2018,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",,13
-2018,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",,9.3
-2018,"Ottawa-Gatineau, Ontario/Quebec",Females,,11.8
-2018,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",,12.6
-2018,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",,10.6
-2018,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",,15
-2018,"Toronto, Ontario",All persons,,13.1
-2018,"Toronto, Ontario",Persons under 18 years,,14.6
-2018,"Toronto, Ontario",Persons 18 to 64 years,,12.9
-2018,"Toronto, Ontario",Persons 65 years and over,,11.6
-2018,"Toronto, Ontario",Males,,12.9
-2018,"Toronto, Ontario","Males, under 18 years",,15.9
-2018,"Toronto, Ontario","Males, 18 to 64 years",,12.5
-2018,"Toronto, Ontario","Males, 65 years and over",,10.2
-2018,"Toronto, Ontario",Females,,13.3
-2018,"Toronto, Ontario","Females, under 18 years",,13.2
-2018,"Toronto, Ontario","Females, 18 to 64 years",,13.4
-2018,"Toronto, Ontario","Females, 65 years and over",,12.9
-2018,"Winnipeg, Manitoba",All persons,,13.5
-2018,"Winnipeg, Manitoba",Persons under 18 years,,19.3
-2018,"Winnipeg, Manitoba",Persons 18 to 64 years,,11.9
-2018,"Winnipeg, Manitoba",Persons 65 years and over,,12.7
-2018,"Winnipeg, Manitoba",Males,,12.8
-2018,"Winnipeg, Manitoba","Males, under 18 years",,19.6
-2018,"Winnipeg, Manitoba","Males, 18 to 64 years",,11.4
-2018,"Winnipeg, Manitoba","Males, 65 years and over",,9.4
-2018,"Winnipeg, Manitoba",Females,,14.2
-2018,"Winnipeg, Manitoba","Females, under 18 years",,19.1
-2018,"Winnipeg, Manitoba","Females, 18 to 64 years",,12.4
-2018,"Winnipeg, Manitoba","Females, 65 years and over",,15.5
-2018,"Calgary, Alberta",All persons,,8.7
-2018,"Calgary, Alberta",Persons under 18 years,,
-2018,"Calgary, Alberta",Persons 18 to 64 years,,9.2
-2018,"Calgary, Alberta",Persons 65 years and over,,
-2018,"Calgary, Alberta",Males,,8.7
-2018,"Calgary, Alberta","Males, under 18 years",,
-2018,"Calgary, Alberta","Males, 18 to 64 years",,9
-2018,"Calgary, Alberta","Males, 65 years and over",,
-2018,"Calgary, Alberta",Females,,8.6
-2018,"Calgary, Alberta","Females, under 18 years",,
-2018,"Calgary, Alberta","Females, 18 to 64 years",,9.3
-2018,"Calgary, Alberta","Females, 65 years and over",,
-2018,"Edmonton, Alberta",All persons,,6.1
-2018,"Edmonton, Alberta",Persons under 18 years,,5.6
-2018,"Edmonton, Alberta",Persons 18 to 64 years,,6.5
-2018,"Edmonton, Alberta",Persons 65 years and over,,5.1
-2018,"Edmonton, Alberta",Males,,5.6
-2018,"Edmonton, Alberta","Males, under 18 years",,5.7
-2018,"Edmonton, Alberta","Males, 18 to 64 years",,5.6
-2018,"Edmonton, Alberta","Males, 65 years and over",,
-2018,"Edmonton, Alberta",Females,,6.7
-2018,"Edmonton, Alberta","Females, under 18 years",,5.6
-2018,"Edmonton, Alberta","Females, 18 to 64 years",,7.4
-2018,"Edmonton, Alberta","Females, 65 years and over",,5
-2018,"Vancouver, British Columbia",All persons,,11.1
-2018,"Vancouver, British Columbia",Persons under 18 years,,8.4
-2018,"Vancouver, British Columbia",Persons 18 to 64 years,,11.4
-2018,"Vancouver, British Columbia",Persons 65 years and over,,13.2
-2018,"Vancouver, British Columbia",Males,,12.1
-2018,"Vancouver, British Columbia","Males, under 18 years",,10.6
-2018,"Vancouver, British Columbia","Males, 18 to 64 years",,12.6
-2018,"Vancouver, British Columbia","Males, 65 years and over",,11.7
-2018,"Vancouver, British Columbia",Females,,10.2
-2018,"Vancouver, British Columbia","Females, under 18 years",,
-2018,"Vancouver, British Columbia","Females, 18 to 64 years",,10.3
-2018,"Vancouver, British Columbia","Females, 65 years and over",,14.5
-2019,Canada,Persons under 18 years,,11.4
-2019,Canada,Persons 18 to 64 years,,11.4
-2019,Canada,Persons 65 years and over,,15.2
-2019,Canada,Males,,11.2
-2019,Canada,"Males, under 18 years",,11.4
-2019,Canada,"Males, 18 to 64 years",,10.9
-2019,Canada,"Males, 65 years and over",,12.5
-2019,Canada,Females,,12.8
-2019,Canada,"Females, under 18 years",,11.5
-2019,Canada,"Females, 18 to 64 years",,11.8
-2019,Canada,"Females, 65 years and over",,17.6
-2019,Atlantic provinces,All persons,,15.1
-2019,Atlantic provinces,Persons under 18 years,,16.6
-2019,Atlantic provinces,Persons 18 to 64 years,,12.6
-2019,Atlantic provinces,Persons 65 years and over,,21.4
-2019,Atlantic provinces,Males,,13.8
-2019,Atlantic provinces,"Males, under 18 years",,16.9
-2019,Atlantic provinces,"Males, 18 to 64 years",,11.9
-2019,Atlantic provinces,"Males, 65 years and over",,16.9
-2019,Atlantic provinces,Females,,16.4
-2019,Atlantic provinces,"Females, under 18 years",,16.4
-2019,Atlantic provinces,"Females, 18 to 64 years",,13.3
-2019,Atlantic provinces,"Females, 65 years and over",,25.3
-2019,Newfoundland and Labrador,All persons,10,14.7
-2019,Newfoundland and Labrador,Persons under 18 years,,13.1
-2019,Newfoundland and Labrador,Persons 18 to 64 years,,10.7
-2019,Newfoundland and Labrador,Persons 65 years and over,,27.3
-2019,Newfoundland and Labrador,Males,,13.4
-2019,Newfoundland and Labrador,"Males, under 18 years",,14.6
-2019,Newfoundland and Labrador,"Males, 18 to 64 years",,9.5
-2019,Newfoundland and Labrador,"Males, 65 years and over",,24.2
-2019,Newfoundland and Labrador,Females,,15.9
-2019,Newfoundland and Labrador,"Females, under 18 years",,11.6
-2019,Newfoundland and Labrador,"Females, 18 to 64 years",,11.9
-2019,Newfoundland and Labrador,"Females, 65 years and over",,30.2
-2019,Prince Edward Island,All persons,11,14.4
-2019,Prince Edward Island,Persons under 18 years,,18.6
-2019,Prince Edward Island,Persons 18 to 64 years,,12.3
-2019,Prince Edward Island,Persons 65 years and over,,16.6
-2019,Prince Edward Island,Males,,13.7
-2019,Prince Edward Island,"Males, under 18 years",,19
-2019,Prince Edward Island,"Males, 18 to 64 years",,12
-2019,Prince Edward Island,"Males, 65 years and over",,13.3
-2019,Prince Edward Island,Females,,15
-2019,Prince Edward Island,"Females, under 18 years",,18.1
-2019,Prince Edward Island,"Females, 18 to 64 years",,12.6
-2019,Prince Edward Island,"Females, 65 years and over",,19.5
-2019,Nova Scotia,All persons,12,15.7
-2019,Nova Scotia,Persons under 18 years,,16.9
-2019,Nova Scotia,Persons 18 to 64 years,,13.9
-2019,Nova Scotia,Persons 65 years and over,,20
-2019,Nova Scotia,Males,,14.4
-2019,Nova Scotia,"Males, under 18 years",,17.6
-2019,Nova Scotia,"Males, 18 to 64 years",,13.3
-2019,Nova Scotia,"Males, 65 years and over",,15.3
-2019,Nova Scotia,Females,,16.9
-2019,Nova Scotia,"Females, under 18 years",,16.1
-2019,Nova Scotia,"Females, 18 to 64 years",,14.6
-2019,Nova Scotia,"Females, 65 years and over",,24
-2019,New Brunswick,All persons,13,14.9
-2019,New Brunswick,Persons under 18 years,,18.2
-2019,New Brunswick,Persons 18 to 64 years,,12.2
-2019,New Brunswick,Persons 65 years and over,,19.9
-2019,New Brunswick,Males,,13.2
-2019,New Brunswick,"Males, under 18 years",,17.1
-2019,New Brunswick,"Males, 18 to 64 years",,11.6
-2019,New Brunswick,"Males, 65 years and over",,14.5
-2019,New Brunswick,Females,,16.5
-2019,New Brunswick,"Females, under 18 years",,19.3
-2019,New Brunswick,"Females, 18 to 64 years",,12.8
-2019,New Brunswick,"Females, 65 years and over",,24.7
-2019,Quebec,All persons,24,13.5
-2019,Quebec,Persons under 18 years,,8.4
-2019,Quebec,Persons 18 to 64 years,,12
-2019,Quebec,Persons 65 years and over,,22.9
-2019,Quebec,Males,,13.1
-2019,Quebec,"Males, under 18 years",,10.2
-2019,Quebec,"Males, 18 to 64 years",,12.7
-2019,Quebec,"Males, 65 years and over",,17.8
-2019,Quebec,Females,,13.8
-2019,Quebec,"Females, under 18 years",,6.6
-2019,Quebec,"Females, 18 to 64 years",,11.4
-2019,Quebec,"Females, 65 years and over",,27.3
-2019,Ontario,All persons,35,12.3
-2019,Ontario,Persons under 18 years,,13.8
-2019,Ontario,Persons 18 to 64 years,,11.6
-2019,Ontario,Persons 65 years and over,,13.1
-2019,Ontario,Males,,11
-2019,Ontario,"Males, under 18 years",,12.5
-2019,Ontario,"Males, 18 to 64 years",,10.4
-2019,Ontario,"Males, 65 years and over",,11.2
-2019,Ontario,Females,,13.5
-2019,Ontario,"Females, under 18 years",,15.1
-2019,Ontario,"Females, 18 to 64 years",,12.7
-2019,Ontario,"Females, 65 years and over",,14.8
-2019,Prairie provinces,All persons,,9.7
-2019,Prairie provinces,Persons under 18 years,,10.7
-2019,Prairie provinces,Persons 18 to 64 years,,9.7
-2019,Prairie provinces,Persons 65 years and over,,8.2
-2019,Prairie provinces,Males,,9.8
-2019,Prairie provinces,"Males, under 18 years",,11
-2019,Prairie provinces,"Males, 18 to 64 years",,9.8
-2019,Prairie provinces,"Males, 65 years and over",,7.8
-2019,Prairie provinces,Females,,9.6
-2019,Prairie provinces,"Females, under 18 years",,10.3
-2019,Prairie provinces,"Females, 18 to 64 years",,9.6
-2019,Prairie provinces,"Females, 65 years and over",,8.5
-2019,Manitoba,All persons,46,15.3
-2019,Manitoba,Persons under 18 years,,20.5
-2019,Manitoba,Persons 18 to 64 years,,13.5
-2019,Manitoba,Persons 65 years and over,,15.6
-2019,Manitoba,Males,,15
-2019,Manitoba,"Males, under 18 years",,21.2
-2019,Manitoba,"Males, 18 to 64 years",,13.1
-2019,Manitoba,"Males, 65 years and over",,13.7
-2019,Manitoba,Females,,15.7
-2019,Manitoba,"Females, under 18 years",,19.8
-2019,Manitoba,"Females, 18 to 64 years",,13.8
-2019,Manitoba,"Females, 65 years and over",,17.3
-2019,Saskatchewan,All persons,47,13.5
-2019,Saskatchewan,Persons under 18 years,,12.9
-2019,Saskatchewan,Persons 18 to 64 years,,13.4
-2019,Saskatchewan,Persons 65 years and over,,14.7
-2019,Saskatchewan,Males,,13.9
-2019,Saskatchewan,"Males, under 18 years",,13.8
-2019,Saskatchewan,"Males, 18 to 64 years",,13.8
-2019,Saskatchewan,"Males, 65 years and over",,14.4
-2019,Saskatchewan,Females,,13.1
-2019,Saskatchewan,"Females, under 18 years",,12
-2019,Saskatchewan,"Females, 18 to 64 years",,13
-2019,Saskatchewan,"Females, 65 years and over",,15.1
-2019,Alberta,All persons,48,7.1
-2019,Alberta,Persons under 18 years,,7.2
-2019,Alberta,Persons 18 to 64 years,,7.8
-2019,Alberta,Persons 65 years and over,,3.6
-2019,Alberta,Males,,7.2
-2019,Alberta,"Males, under 18 years",,7.3
-2019,Alberta,"Males, 18 to 64 years",,7.9
-2019,Alberta,"Males, 65 years and over",,3.9
-2019,Alberta,Females,,6.9
-2019,Alberta,"Females, under 18 years",,7.1
-2019,Alberta,"Females, 18 to 64 years",,7.7
-2019,Alberta,"Females, 65 years and over",,3.4
-2019,British Columbia,All persons,59,10.8
-2019,British Columbia,Persons under 18 years,,8.1
-2019,British Columbia,Persons 18 to 64 years,,11.3
-2019,British Columbia,Persons 65 years and over,,11.3
-2019,British Columbia,Males,,9.7
-2019,British Columbia,"Males, under 18 years",,8
-2019,British Columbia,"Males, 18 to 64 years",,10.5
-2019,British Columbia,"Males, 65 years and over",,8.9
-2019,British Columbia,Females,,11.8
-2019,British Columbia,"Females, under 18 years",,8.2
-2019,British Columbia,"Females, 18 to 64 years",,12.2
-2019,British Columbia,"Females, 65 years and over",,13.4
-2019,"Québec, Quebec",All persons,,10.3
-2019,"Québec, Quebec",Persons under 18 years,,
-2019,"Québec, Quebec",Persons 18 to 64 years,,9.2
-2019,"Québec, Quebec",Persons 65 years and over,,22.2
-2019,"Québec, Quebec",Males,,8.5
-2019,"Québec, Quebec","Males, under 18 years",,
-2019,"Québec, Quebec","Males, 18 to 64 years",,8.4
-2019,"Québec, Quebec","Males, 65 years and over",,13.9
-2019,"Québec, Quebec",Females,,12
-2019,"Québec, Quebec","Females, under 18 years",,
-2019,"Québec, Quebec","Females, 18 to 64 years",,9.8
-2019,"Québec, Quebec","Females, 65 years and over",,29.8
-2019,"Montréal, Quebec",All persons,,14.6
-2019,"Montréal, Quebec",Persons under 18 years,,11.8
-2019,"Montréal, Quebec",Persons 18 to 64 years,,13.5
-2019,"Montréal, Quebec",Persons 65 years and over,,22.1
-2019,"Montréal, Quebec",Males,,14.7
-2019,"Montréal, Quebec","Males, under 18 years",,14
-2019,"Montréal, Quebec","Males, 18 to 64 years",,14.4
-2019,"Montréal, Quebec","Males, 65 years and over",,16.9
-2019,"Montréal, Quebec",Females,,14.5
-2019,"Montréal, Quebec","Females, under 18 years",,9.6
-2019,"Montréal, Quebec","Females, 18 to 64 years",,12.5
-2019,"Montréal, Quebec","Females, 65 years and over",,26.1
-2019,"Ottawa-Gatineau, Ontario/Quebec",All persons,,8.7
-2019,"Ottawa-Gatineau, Ontario/Quebec",Persons under 18 years,,7.9
-2019,"Ottawa-Gatineau, Ontario/Quebec",Persons 18 to 64 years,,8.4
-2019,"Ottawa-Gatineau, Ontario/Quebec",Persons 65 years and over,,10.9
-2019,"Ottawa-Gatineau, Ontario/Quebec",Males,,8.5
-2019,"Ottawa-Gatineau, Ontario/Quebec","Males, under 18 years",,8.8
-2019,"Ottawa-Gatineau, Ontario/Quebec","Males, 18 to 64 years",,8.6
-2019,"Ottawa-Gatineau, Ontario/Quebec","Males, 65 years and over",,7.5
-2019,"Ottawa-Gatineau, Ontario/Quebec",Females,,9
-2019,"Ottawa-Gatineau, Ontario/Quebec","Females, under 18 years",,
-2019,"Ottawa-Gatineau, Ontario/Quebec","Females, 18 to 64 years",,8.2
-2019,"Ottawa-Gatineau, Ontario/Quebec","Females, 65 years and over",,13.8
-2019,"Toronto, Ontario",All persons,,13.1
-2019,"Toronto, Ontario",Persons under 18 years,,16.8
-2019,"Toronto, Ontario",Persons 18 to 64 years,,11.2
-2019,"Toronto, Ontario",Persons 65 years and over,,16.7
-2019,"Toronto, Ontario",Males,,11.6
-2019,"Toronto, Ontario","Males, under 18 years",,15
-2019,"Toronto, Ontario","Males, 18 to 64 years",,9.7
-2019,"Toronto, Ontario","Males, 65 years and over",,16.5
-2019,"Toronto, Ontario",Females,,14.4
-2019,"Toronto, Ontario","Females, under 18 years",,18.6
-2019,"Toronto, Ontario","Females, 18 to 64 years",,12.6
-2019,"Toronto, Ontario","Females, 65 years and over",,17
-2019,"Winnipeg, Manitoba",All persons,,14.6
-2019,"Winnipeg, Manitoba",Persons under 18 years,,19.8
-2019,"Winnipeg, Manitoba",Persons 18 to 64 years,,13.1
-2019,"Winnipeg, Manitoba",Persons 65 years and over,,14.6
-2019,"Winnipeg, Manitoba",Males,,14.2
-2019,"Winnipeg, Manitoba","Males, under 18 years",,20.2
-2019,"Winnipeg, Manitoba","Males, 18 to 64 years",,12.6
-2019,"Winnipeg, Manitoba","Males, 65 years and over",,13.6
-2019,"Winnipeg, Manitoba",Females,,15
-2019,"Winnipeg, Manitoba","Females, under 18 years",,19.5
-2019,"Winnipeg, Manitoba","Females, 18 to 64 years",,13.5
-2019,"Winnipeg, Manitoba","Females, 65 years and over",,15.5
-2019,"Calgary, Alberta",All persons,,4.9
-2019,"Calgary, Alberta",Persons under 18 years,,
-2019,"Calgary, Alberta",Persons 18 to 64 years,,5.3
-2019,"Calgary, Alberta",Persons 65 years and over,,
-2019,"Calgary, Alberta",Males,,4.5
-2019,"Calgary, Alberta","Males, under 18 years",,
-2019,"Calgary, Alberta","Males, 18 to 64 years",,4.8
-2019,"Calgary, Alberta","Males, 65 years and over",,
-2019,"Calgary, Alberta",Females,,5.3
-2019,"Calgary, Alberta","Females, under 18 years",,
-2019,"Calgary, Alberta","Females, 18 to 64 years",,5.8
-2019,"Calgary, Alberta","Females, 65 years and over",,
-2019,"Edmonton, Alberta",All persons,,7.3
-2019,"Edmonton, Alberta",Persons under 18 years,,
-2019,"Edmonton, Alberta",Persons 18 to 64 years,,8.4
-2019,"Edmonton, Alberta",Persons 65 years and over,,
-2019,"Edmonton, Alberta",Males,,7.8
-2019,"Edmonton, Alberta","Males, under 18 years",,
-2019,"Edmonton, Alberta","Males, 18 to 64 years",,8.9
-2019,"Edmonton, Alberta","Males, 65 years and over",,
-2019,"Edmonton, Alberta",Females,,6.9
-2019,"Edmonton, Alberta","Females, under 18 years",,
-2019,"Edmonton, Alberta","Females, 18 to 64 years",,7.8
-2019,"Edmonton, Alberta","Females, 65 years and over",,
-2019,"Vancouver, British Columbia",All persons,,9.7
-2019,"Vancouver, British Columbia",Persons under 18 years,,4.7
-2019,"Vancouver, British Columbia",Persons 18 to 64 years,,11.1
-2019,"Vancouver, British Columbia",Persons 65 years and over,,8.8
-2019,"Vancouver, British Columbia",Males,,8.9
-2019,"Vancouver, British Columbia","Males, under 18 years",,
-2019,"Vancouver, British Columbia","Males, 18 to 64 years",,10.6
-2019,"Vancouver, British Columbia","Males, 65 years and over",,6.4
-2019,"Vancouver, British Columbia",Females,,10.5
-2019,"Vancouver, British Columbia","Females, under 18 years",,
-2019,"Vancouver, British Columbia","Females, 18 to 64 years",,11.6
-2019,"Vancouver, British Columbia","Females, 65 years and over",,11.1
diff --git a/tests/assets/progress-calculation/data/temp/indicator_10-4-1.csv b/tests/assets/progress-calculation/data/temp/indicator_10-4-1.csv
deleted file mode 100644
index 7019bab1..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_10-4-1.csv
+++ /dev/null
@@ -1,319 +0,0 @@
-Year,Geography,GeoCode,Value
-2000,"",,49.91
-2001,"",,50.22
-2002,"",,50.03
-2003,"",,49.51
-2004,"",,49.17
-2005,"",,48.78
-2006,"",,49.33
-2007,"",,49.69
-2008,"",,49.47
-2009,"",,51.68
-2010,"",,50.28
-2011,"",,49.78
-2012,"",,50.54
-2013,"",,50.53
-2014,"",,50.05
-2015,"",,51.59
-2016,"",,50.68
-2017,"",,49.98
-2018,"",,50.41
-2019,"",,50.8
-2020,"",,52.54
-2000,Newfoundland and Labrador,10,44.72
-2000,Prince Edward Island,11,51.18
-2000,Nova Scotia,12,52.07
-2000,New Brunswick,13,50.13
-2000,Quebec,24,51.23
-2000,Ontario,35,52.75
-2000,Manitoba,46,49.15
-2000,Saskatchewan,47,39.21
-2000,Alberta,48,41.43
-2000,British Columbia,59,50.28
-2000,Yukon,60,53.17
-2000,Northwest Territories,61,42.06
-2000,Nunavut,62,53.98
-2000,Outside Canada,,87.82
-2001,Newfoundland and Labrador,10,45.89
-2001,Prince Edward Island,11,51.97
-2001,Nova Scotia,12,51.39
-2001,New Brunswick,13,49.03
-2001,Quebec,24,51.42
-2001,Ontario,35,52.21
-2001,Manitoba,46,49.1
-2001,Saskatchewan,47,41.62
-2001,Alberta,48,44.36
-2001,British Columbia,59,50.65
-2001,Yukon,60,51.64
-2001,Northwest Territories,61,41.06
-2001,Nunavut,62,59.74
-2001,Outside Canada,,88.59
-2002,Newfoundland and Labrador,10,41.1
-2002,Prince Edward Island,11,50.85
-2002,Nova Scotia,12,51.77
-2002,New Brunswick,13,49.72
-2002,Quebec,24,51.26
-2002,Ontario,35,51.13
-2002,Manitoba,46,49.42
-2002,Saskatchewan,47,41.8
-2002,Alberta,48,46.41
-2002,British Columbia,59,50.66
-2002,Yukon,60,55.24
-2002,Northwest Territories,61,43.59
-2002,Nunavut,62,62
-2002,Outside Canada,,88.38
-2003,Newfoundland and Labrador,10,39.43
-2003,Prince Edward Island,11,52.07
-2003,Nova Scotia,12,50.49
-2003,New Brunswick,13,49.82
-2003,Quebec,24,51.51
-2003,Ontario,35,51.6
-2003,Manitoba,46,50.01
-2003,Saskatchewan,47,41.02
-2003,Alberta,48,42.93
-2003,British Columbia,59,49.53
-2003,Yukon,60,52.94
-2003,Northwest Territories,61,36.52
-2003,Nunavut,62,64.11
-2003,Outside Canada,,89.18
-2004,Newfoundland and Labrador,10,38.52
-2004,Prince Edward Island,11,51.72
-2004,Nova Scotia,12,50.68
-2004,New Brunswick,13,49.38
-2004,Quebec,24,51.34
-2004,Ontario,35,51.85
-2004,Manitoba,46,49.53
-2004,Saskatchewan,47,39.16
-2004,Alberta,48,42.17
-2004,British Columbia,59,48.65
-2004,Yukon,60,52.76
-2004,Northwest Territories,61,33.63
-2004,Nunavut,62,63.21
-2004,Outside Canada,,90.02
-2005,Newfoundland and Labrador,10,35.01
-2005,Prince Edward Island,11,50.37
-2005,Nova Scotia,12,50.69
-2005,New Brunswick,13,48.71
-2005,Quebec,24,51.39
-2005,Ontario,35,51.96
-2005,Manitoba,46,49.37
-2005,Saskatchewan,47,38.22
-2005,Alberta,48,41.23
-2005,British Columbia,59,48.16
-2005,Yukon,60,51.94
-2005,Northwest Territories,61,36.52
-2005,Nunavut,62,63.63
-2005,Outside Canada,,91.49
-2006,Newfoundland and Labrador,10,33.34
-2006,Prince Edward Island,11,50.61
-2006,Nova Scotia,12,51.52
-2006,New Brunswick,13,48.63
-2006,Quebec,24,51.45
-2006,Ontario,35,52.31
-2006,Manitoba,46,47.86
-2006,Saskatchewan,47,40.15
-2006,Alberta,48,43.37
-2006,British Columbia,59,49.03
-2006,Yukon,60,52.32
-2006,Northwest Territories,61,39.59
-2006,Nunavut,62,63.29
-2006,Outside Canada,,89.48
-2007,Newfoundland and Labrador,10,30.34
-2007,Prince Edward Island,11,50.43
-2007,Nova Scotia,12,51.48
-2007,New Brunswick,13,48.89
-2007,Quebec,24,51.24
-2007,Ontario,35,52.96
-2007,Manitoba,46,48.37
-2007,Saskatchewan,47,38.83
-2007,Alberta,48,45.11
-2007,British Columbia,59,49.12
-2007,Yukon,60,54.66
-2007,Northwest Territories,61,42.99
-2007,Nunavut,62,62.4
-2007,Outside Canada,,89.51
-2008,Newfoundland and Labrador,10,29.99
-2008,Prince Edward Island,11,51.88
-2008,Nova Scotia,12,51.81
-2008,New Brunswick,13,51.29
-2008,Quebec,24,51.97
-2008,Ontario,35,53.88
-2008,Manitoba,46,48.85
-2008,Saskatchewan,47,32.92
-2008,Alberta,48,43.12
-2008,British Columbia,59,49.57
-2008,Yukon,60,51.66
-2008,Northwest Territories,61,41.45
-2008,Nunavut,62,59.29
-2008,Outside Canada,,90.13
-2009,Newfoundland and Labrador,10,40.61
-2009,Prince Edward Island,11,52.52
-2009,Nova Scotia,12,53.75
-2009,New Brunswick,13,52.34
-2009,Quebec,24,52.15
-2009,Ontario,35,54.01
-2009,Manitoba,46,51.55
-2009,Saskatchewan,47,39.02
-2009,Alberta,48,49.97
-2009,British Columbia,59,50.65
-2009,Yukon,60,50.82
-2009,Northwest Territories,61,48.95
-2009,Nunavut,62,63.85
-2009,Outside Canada,,90
-2010,Newfoundland and Labrador,10,37.02
-2010,Prince Edward Island,11,51.33
-2010,Nova Scotia,12,52.47
-2010,New Brunswick,13,51.26
-2010,Quebec,24,51.75
-2010,Ontario,35,52.82
-2010,Manitoba,46,50.49
-2010,Saskatchewan,47,38.89
-2010,Alberta,48,46.68
-2010,British Columbia,59,49.58
-2010,Yukon,60,51.99
-2010,Northwest Territories,61,42.45
-2010,Nunavut,62,57.13
-2010,Outside Canada,,90.03
-2011,Newfoundland and Labrador,10,35.16
-2011,Prince Edward Island,11,51.64
-2011,Nova Scotia,12,52.97
-2011,New Brunswick,13,50.82
-2011,Quebec,24,52
-2011,Ontario,35,52.84
-2011,Manitoba,46,50.07
-2011,Saskatchewan,47,36.12
-2011,Alberta,48,45.47
-2011,British Columbia,59,48.84
-2011,Yukon,60,53.19
-2011,Northwest Territories,61,45.5
-2011,Nunavut,62,58.99
-2011,Outside Canada,,89.65
-2012,Newfoundland and Labrador,10,40.02
-2012,Prince Edward Island,11,51.63
-2012,Nova Scotia,12,53.64
-2012,New Brunswick,13,50.95
-2012,Quebec,24,52.68
-2012,Ontario,35,52.95
-2012,Manitoba,46,49.21
-2012,Saskatchewan,47,37.28
-2012,Alberta,48,47.76
-2012,British Columbia,59,49.31
-2012,Yukon,60,54.3
-2012,Northwest Territories,61,50.43
-2012,Nunavut,62,57.32
-2012,Outside Canada,,89.31
-2013,Newfoundland and Labrador,10,40.24
-2013,Prince Edward Island,11,51.18
-2013,Nova Scotia,12,53.81
-2013,New Brunswick,13,51.27
-2013,Quebec,24,52.79
-2013,Ontario,35,53.43
-2013,Manitoba,46,49.2
-2013,Saskatchewan,47,36.77
-2013,Alberta,48,46.95
-2013,British Columbia,59,49.48
-2013,Yukon,60,52.37
-2013,Northwest Territories,61,51.05
-2013,Nunavut,62,56.64
-2013,Outside Canada,,89.26
-2014,Newfoundland and Labrador,10,41.89
-2014,Prince Edward Island,11,51.79
-2014,Nova Scotia,12,53.47
-2014,New Brunswick,13,51.58
-2014,Quebec,24,52.73
-2014,Ontario,35,52.89
-2014,Manitoba,46,49.4
-2014,Saskatchewan,47,38.46
-2014,Alberta,48,45.61
-2014,British Columbia,59,48.57
-2014,Yukon,60,51.06
-2014,Northwest Territories,61,49.41
-2014,Nunavut,62,57.74
-2014,Outside Canada,,90
-2015,Newfoundland and Labrador,10,48.05
-2015,Prince Edward Island,11,50.69
-2015,Nova Scotia,12,53.52
-2015,New Brunswick,13,50.9
-2015,Quebec,24,52.32
-2015,Ontario,35,52.84
-2015,Manitoba,46,50.19
-2015,Saskatchewan,47,40.53
-2015,Alberta,48,52.51
-2015,British Columbia,59,49.37
-2015,Yukon,60,53.41
-2015,Northwest Territories,61,53.76
-2015,Nunavut,62,60.39
-2015,Outside Canada,,89.8
-2016,Newfoundland and Labrador,10,46.89
-2016,Prince Edward Island,11,49.69
-2016,Nova Scotia,12,52.67
-2016,New Brunswick,13,51.08
-2016,Quebec,24,52.21
-2016,Ontario,35,51.72
-2016,Manitoba,46,49.69
-2016,Saskatchewan,47,41.22
-2016,Alberta,48,50.31
-2016,British Columbia,59,48.45
-2016,Yukon,60,52.1
-2016,Northwest Territories,61,54.9
-2016,Nunavut,62,58.95
-2016,Outside Canada,,90.11
-2017,Newfoundland and Labrador,10,43.12
-2017,Prince Edward Island,11,49.22
-2017,Nova Scotia,12,52.36
-2017,New Brunswick,13,50.56
-2017,Quebec,24,52.02
-2017,Ontario,35,51.84
-2017,Manitoba,46,49.02
-2017,Saskatchewan,47,39.18
-2017,Alberta,48,47.33
-2017,British Columbia,59,48.15
-2017,Yukon,60,53.59
-2017,Northwest Territories,61,52.52
-2017,Nunavut,62,54.47
-2017,Outside Canada,,90.35
-2018,Newfoundland and Labrador,10,41.37
-2018,Prince Edward Island,11,49.85
-2018,Nova Scotia,12,53.36
-2018,New Brunswick,13,51.1
-2018,Quebec,24,52.73
-2018,Ontario,35,52.73
-2018,Manitoba,46,49.21
-2018,Saskatchewan,47,38.41
-2018,Alberta,48,46.64
-2018,British Columbia,59,48.58
-2018,Yukon,60,55.5
-2018,Northwest Territories including Nunavut,,
-2018,Northwest Territories,61,52.42
-2018,Nunavut,62,57.13
-2018,Outside Canada,,90.46
-2019,Newfoundland and Labrador,10,41.29
-2019,Prince Edward Island,11,49.81
-2019,Nova Scotia,12,52.73
-2019,New Brunswick,13,51.7
-2019,Quebec,24,53.27
-2019,Ontario,35,53.09
-2019,Manitoba,46,49.63
-2019,Saskatchewan,47,38.73
-2019,Alberta,48,46.77
-2019,British Columbia,59,49.06
-2019,Yukon,60,58.63
-2019,Northwest Territories including Nunavut,,
-2019,Northwest Territories,61,54.53
-2019,Nunavut,62,57.09
-2019,Outside Canada,,91.21
-2020,Newfoundland and Labrador,10,43.95
-2020,Prince Edward Island,11,50.15
-2020,Nova Scotia,12,52.45
-2020,New Brunswick,13,51.73
-2020,Quebec,24,54.71
-2020,Ontario,35,54.45
-2020,Manitoba,46,49.67
-2020,Saskatchewan,47,40.24
-2020,Alberta,48,51.87
-2020,British Columbia,59,49.31
-2020,Yukon,60,56.63
-2020,Northwest Territories including Nunavut,,
-2020,Northwest Territories,61,56.36
-2020,Nunavut,62,52.07
-2020,Outside Canada,,90.94
diff --git a/tests/assets/progress-calculation/data/temp/indicator_10-c-1.csv b/tests/assets/progress-calculation/data/temp/indicator_10-c-1.csv
deleted file mode 100644
index 2d8b849f..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_10-c-1.csv
+++ /dev/null
@@ -1,2 +0,0 @@
-Year,Value
-2017,6
diff --git a/tests/assets/progress-calculation/data/temp/indicator_11-1-1.csv b/tests/assets/progress-calculation/data/temp/indicator_11-1-1.csv
deleted file mode 100644
index 8b953f1e..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_11-1-1.csv
+++ /dev/null
@@ -1,10 +0,0 @@
-Year,Selected housing vulnerable populations,Value
-2016,,12.7
-2018,,11.6
-2018,"Total, lone-parent family households",22
-2018,Lone-parent family households whose reference person is male,15.8
-2018,Lone-parent family households whose reference person is female,24
-2018,"Total, one person households",22
-2018,Men living alone,21
-2018,Women living alone,24
-2018,Reference person who experienced homelessness,34
diff --git a/tests/assets/progress-calculation/data/temp/indicator_11-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_11-2-1.csv
deleted file mode 100644
index 765012ce..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_11-2-1.csv
+++ /dev/null
@@ -1,75 +0,0 @@
-Year,Geography,Census divisions,GeoCode,Value
-2016,Newfoundland and Labrador,"",10,26.7
-2016,"St. John's, Newfoundland and Labrador","",,59.9
-2016,Newfoundland and Labrador,Census subdivisions in a census agglomeration,,22.1
-2016,Newfoundland and Labrador,Area outside census metropolitan areas and census agglomeration,,0
-2016,Prince Edward Island,"",11,16.9
-2016,Prince Edward Island,Census subdivisions in a census agglomeration,,28.1
-2016,Prince Edward Island,Area outside census metropolitan areas and census agglomeration,,0
-2016,Nova Scotia,"",12,37.6
-2016,"Halifax, Nova Scotia","",,70.9
-2016,Nova Scotia,Census subdivisions in a census agglomeration,,29.7
-2016,Nova Scotia,Area outside census metropolitan areas and census agglomeration,,0
-2016,New Brunswick,"",13,28.8
-2016,"Moncton, New Brunswick","",,65.4
-2016,"Saint John, New Brunswick","",,49.1
-2016,New Brunswick,Census subdivisions in a census agglomeration,,29.8
-2016,New Brunswick,Area outside census metropolitan areas and census agglomeration,,0
-2016,Quebec,"",24,66.6
-2016,"Montréal, Quebec","",,91.6
-2016,"Ottawa - Gatineau (Quebec part), Quebec","",,77.2
-2016,"Québec, Quebec","",,83.1
-2016,"Saguenay, Quebec","",,75.4
-2016,"Sherbrooke, Quebec","",,76.4
-2016,"Trois-Rivières, Quebec","",,75.4
-2016,Quebec,Census subdivisions in a census agglomeration,,35.5
-2016,Quebec,Area outside census metropolitan areas and census agglomeration,,3.4
-2016,Ontario,"",35,75.2
-2016,"Barrie, Ontario","",,66.8
-2016,"Belleville, Ontario","",,57.1
-2016,"Brantford, Ontario","",,69.6
-2016,"Greater Sudbury / Grand Sudbury, Ontario","",,66.5
-2016,"Guelph, Ontario","",,83.5
-2016,"Hamilton, Ontario","",,81.1
-2016,"Kingston, Ontario","",,69.4
-2016,"Kitchener - Cambridge - Waterloo, Ontario","",,86.2
-2016,"London, Ontario","",,77.7
-2016,"Oshawa, Ontario","",,88.7
-2016,"Ottawa - Gatineau (Ontario part), Ontario","",,85
-2016,"Peterborough, Ontario","",,62.7
-2016,"St. Catharines - Niagara, Ontario","",,80.9
-2016,"Thunder Bay, Ontario","",,76.3
-2016,"Toronto, Ontario","",,93
-2016,"Windsor, Ontario","",,67.1
-2016,Ontario,Census subdivisions in a census agglomeration,,54.7
-2016,Ontario,Area outside census metropolitan areas and census agglomeration,,1.7
-2016,Manitoba,"",46,57.4
-2016,"Winnipeg, Manitoba","",,88.2
-2016,Manitoba,Census subdivisions in a census agglomeration,,35.7
-2016,Manitoba,Area outside census metropolitan areas and census agglomeration,,0
-2016,Saskatchewan,"",47,50.3
-2016,"Regina, Saskatchewan","",,90.4
-2016,"Saskatoon, Saskatchewan","",,82.6
-2016,Saskatchewan,Census subdivisions in a census agglomeration,,54.4
-2016,Saskatchewan,Area outside census metropolitan areas and census agglomeration,,0
-2016,Alberta,"",48,67.9
-2016,"Calgary, Alberta","",,88.9
-2016,"Edmonton, Alberta","",,82.7
-2016,"Lethbridge, Alberta","",,71.6
-2016,Alberta,Census subdivisions in a census agglomeration,,64.5
-2016,Alberta,Area outside census metropolitan areas and census agglomeration,,3.1
-2016,British Columbia,"",59,78.4
-2016,"Abbotsford - Mission, British Columbia","",,79.3
-2016,"Kelowna, British Columbia","",,73.7
-2016,"Vancouver, British Columbia","",,92.7
-2016,"Victoria, British Columbia","",,90.4
-2016,British Columbia,Census subdivisions in a census agglomeration,,72
-2016,British Columbia,Area outside census metropolitan areas and census agglomeration,,17.1
-2016,Yukon,"",60,56.3
-2016,Yukon,Census subdivisions in a census agglomeration,,71.6
-2016,Yukon,Area outside census metropolitan areas and census agglomeration,,0
-2016,Northwest Territories,"",61,41.4
-2016,Northwest Territories,Census subdivisions in a census agglomeration,,88.4
-2016,Northwest Territories,Area outside census metropolitan areas and census agglomeration,,0
-2016,Nunavut,"",62,0
-2016,Nunavut,Area outside census metropolitan areas and census agglomeration,,0
diff --git a/tests/assets/progress-calculation/data/temp/indicator_11-6-1.csv b/tests/assets/progress-calculation/data/temp/indicator_11-6-1.csv
deleted file mode 100644
index 981e6900..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_11-6-1.csv
+++ /dev/null
@@ -1,307 +0,0 @@
-Year,Geography,Sources of waste for disposal,GeoCode,Value
-2002,"","",,24081371
-2004,"","",,25226766
-2006,"","",,26417011
-2008,"","",,25926476
-2010,"","",,24952415
-2012,"","",,24681474
-2014,"","",,24766650
-2016,"","",,24940747
-2018,"","",,25733021
-2002,Newfoundland and Labrador,All sources of waste for disposal,10,376594
-2002,Newfoundland and Labrador,Residential sources of waste for disposal,,216218
-2002,Newfoundland and Labrador,Non-residential sources of waste for disposal,,160376
-2002,Prince Edward Island,All sources of waste for disposal,11,
-2002,Prince Edward Island,Residential sources of waste for disposal,,
-2002,Prince Edward Island,Non-residential sources of waste for disposal,,
-2002,Nova Scotia,All sources of waste for disposal,12,389194
-2002,Nova Scotia,Residential sources of waste for disposal,,169649
-2002,Nova Scotia,Non-residential sources of waste for disposal,,219546
-2002,New Brunswick,All sources of waste for disposal,13,413606
-2002,New Brunswick,Residential sources of waste for disposal,,203506
-2002,New Brunswick,Non-residential sources of waste for disposal,,210100
-2002,Quebec,All sources of waste for disposal,24,5846459
-2002,Quebec,Residential sources of waste for disposal,,1875235
-2002,Quebec,Non-residential sources of waste for disposal,,3971225
-2002,Ontario,All sources of waste for disposal,35,9645633
-2002,Ontario,Residential sources of waste for disposal,,3438408
-2002,Ontario,Non-residential sources of waste for disposal,,6207225
-2002,Manitoba,All sources of waste for disposal,46,896556
-2002,Manitoba,Residential sources of waste for disposal,,412612
-2002,Manitoba,Non-residential sources of waste for disposal,,483944
-2002,Saskatchewan,All sources of waste for disposal,47,795124
-2002,Saskatchewan,Residential sources of waste for disposal,,278692
-2002,Saskatchewan,Non-residential sources of waste for disposal,,516432
-2002,Alberta,All sources of waste for disposal,48,2890294
-2002,Alberta,Residential sources of waste for disposal,,866398
-2002,Alberta,Non-residential sources of waste for disposal,,2023896
-2002,British Columbia,All sources of waste for disposal,59,2687882
-2002,British Columbia,Residential sources of waste for disposal,,929101
-2002,British Columbia,Non-residential sources of waste for disposal,,1758781
-2002,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
-2002,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
-2002,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
-2004,Newfoundland and Labrador,All sources of waste for disposal,10,400048
-2004,Newfoundland and Labrador,Residential sources of waste for disposal,,228004
-2004,Newfoundland and Labrador,Non-residential sources of waste for disposal,,172044
-2004,Prince Edward Island,All sources of waste for disposal,11,
-2004,Prince Edward Island,Residential sources of waste for disposal,,
-2004,Prince Edward Island,Non-residential sources of waste for disposal,,
-2004,Nova Scotia,All sources of waste for disposal,12,399967
-2004,Nova Scotia,Residential sources of waste for disposal,,179262
-2004,Nova Scotia,Non-residential sources of waste for disposal,,220705
-2004,New Brunswick,All sources of waste for disposal,13,442173
-2004,New Brunswick,Residential sources of waste for disposal,,208120
-2004,New Brunswick,Non-residential sources of waste for disposal,,234053
-2004,Quebec,All sources of waste for disposal,24,6454000
-2004,Quebec,Residential sources of waste for disposal,,2209000
-2004,Quebec,Non-residential sources of waste for disposal,,4245000
-2004,Ontario,All sources of waste for disposal,35,9809264
-2004,Ontario,Residential sources of waste for disposal,,3489917
-2004,Ontario,Non-residential sources of waste for disposal,,6319347
-2004,Manitoba,All sources of waste for disposal,46,928117
-2004,Manitoba,Residential sources of waste for disposal,,450658
-2004,Manitoba,Non-residential sources of waste for disposal,,477459
-2004,Saskatchewan,All sources of waste for disposal,47,794933
-2004,Saskatchewan,Residential sources of waste for disposal,,279420
-2004,Saskatchewan,Non-residential sources of waste for disposal,,515513
-2004,Alberta,All sources of waste for disposal,48,3077311
-2004,Alberta,Residential sources of waste for disposal,,943420
-2004,Alberta,Non-residential sources of waste for disposal,,2133890
-2004,British Columbia,All sources of waste for disposal,59,2767657
-2004,British Columbia,Residential sources of waste for disposal,,919323
-2004,British Columbia,Non-residential sources of waste for disposal,,1848335
-2004,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
-2004,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
-2004,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
-2006,Newfoundland and Labrador,All sources of waste for disposal,10,428809
-2006,Newfoundland and Labrador,Residential sources of waste for disposal,,227618
-2006,Newfoundland and Labrador,Non-residential sources of waste for disposal,,201192
-2006,Prince Edward Island,All sources of waste for disposal,11,
-2006,Prince Edward Island,Residential sources of waste for disposal,,
-2006,Prince Edward Island,Non-residential sources of waste for disposal,,
-2006,Nova Scotia,All sources of waste for disposal,12,359105
-2006,Nova Scotia,Residential sources of waste for disposal,,169337
-2006,Nova Scotia,Non-residential sources of waste for disposal,,189768
-2006,New Brunswick,All sources of waste for disposal,13,511706
-2006,New Brunswick,Residential sources of waste for disposal,,263580
-2006,New Brunswick,Non-residential sources of waste for disposal,,248125
-2006,Quebec,All sources of waste for disposal,24,6808440
-2006,Quebec,Residential sources of waste for disposal,,2980427
-2006,Quebec,Non-residential sources of waste for disposal,,3828013
-2006,Ontario,All sources of waste for disposal,35,9710459
-2006,Ontario,Residential sources of waste for disposal,,3411642
-2006,Ontario,Non-residential sources of waste for disposal,,6298818
-2006,Manitoba,All sources of waste for disposal,46,904272
-2006,Manitoba,Residential sources of waste for disposal,,425304
-2006,Manitoba,Non-residential sources of waste for disposal,,478968
-2006,Saskatchewan,All sources of waste for disposal,47,833753
-2006,Saskatchewan,Residential sources of waste for disposal,,296062
-2006,Saskatchewan,Non-residential sources of waste for disposal,,537691
-2006,Alberta,All sources of waste for disposal,48,3819872
-2006,Alberta,Residential sources of waste for disposal,,973683
-2006,Alberta,Non-residential sources of waste for disposal,,2846189
-2006,British Columbia,All sources of waste for disposal,59,2917080
-2006,British Columbia,Residential sources of waste for disposal,,956968
-2006,British Columbia,Non-residential sources of waste for disposal,,1960113
-2006,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
-2006,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
-2006,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
-2008,Newfoundland and Labrador,All sources of waste for disposal,10,399184
-2008,Newfoundland and Labrador,Residential sources of waste for disposal,,210964
-2008,Newfoundland and Labrador,Non-residential sources of waste for disposal,,188220
-2008,Prince Edward Island,All sources of waste for disposal,11,
-2008,Prince Edward Island,Residential sources of waste for disposal,,
-2008,Prince Edward Island,Non-residential sources of waste for disposal,,
-2008,Nova Scotia,All sources of waste for disposal,12,354231
-2008,Nova Scotia,Residential sources of waste for disposal,,148060
-2008,Nova Scotia,Non-residential sources of waste for disposal,,206171
-2008,New Brunswick,All sources of waste for disposal,13,479461
-2008,New Brunswick,Residential sources of waste for disposal,,233703
-2008,New Brunswick,Non-residential sources of waste for disposal,,245758
-2008,Quebec,All sources of waste for disposal,24,6146319
-2008,Quebec,Residential sources of waste for disposal,,2848822
-2008,Quebec,Non-residential sources of waste for disposal,,3297497
-2008,Ontario,All sources of waste for disposal,35,9631559
-2008,Ontario,Residential sources of waste for disposal,,3231399
-2008,Ontario,Non-residential sources of waste for disposal,,6400160
-2008,Manitoba,All sources of waste for disposal,46,945441
-2008,Manitoba,Residential sources of waste for disposal,,400297
-2008,Manitoba,Non-residential sources of waste for disposal,,545144
-2008,Saskatchewan,All sources of waste for disposal,47,902943
-2008,Saskatchewan,Residential sources of waste for disposal,,289760
-2008,Saskatchewan,Non-residential sources of waste for disposal,,613182
-2008,Alberta,All sources of waste for disposal,48,4147558
-2008,Alberta,Residential sources of waste for disposal,,993976
-2008,Alberta,Non-residential sources of waste for disposal,,3153581
-2008,British Columbia,All sources of waste for disposal,59,2811568
-2008,British Columbia,Residential sources of waste for disposal,,960472
-2008,British Columbia,Non-residential sources of waste for disposal,,1851097
-2008,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
-2008,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
-2008,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
-2010,Newfoundland and Labrador,All sources of waste for disposal,10,394235
-2010,Newfoundland and Labrador,Residential sources of waste for disposal,,
-2010,Newfoundland and Labrador,Non-residential sources of waste for disposal,,
-2010,Prince Edward Island,All sources of waste for disposal,11,
-2010,Prince Edward Island,Residential sources of waste for disposal,,
-2010,Prince Edward Island,Non-residential sources of waste for disposal,,
-2010,Nova Scotia,All sources of waste for disposal,12,367246
-2010,Nova Scotia,Residential sources of waste for disposal,,145589
-2010,Nova Scotia,Non-residential sources of waste for disposal,,221657
-2010,New Brunswick,All sources of waste for disposal,13,475265
-2010,New Brunswick,Residential sources of waste for disposal,,219486
-2010,New Brunswick,Non-residential sources of waste for disposal,,255779
-2010,Quebec,All sources of waste for disposal,24,5795707
-2010,Quebec,Residential sources of waste for disposal,,2853189
-2010,Quebec,Non-residential sources of waste for disposal,,2942518
-2010,Ontario,All sources of waste for disposal,35,9247415
-2010,Ontario,Residential sources of waste for disposal,,3204264
-2010,Ontario,Non-residential sources of waste for disposal,,6043151
-2010,Manitoba,All sources of waste for disposal,46,1020481
-2010,Manitoba,Residential sources of waste for disposal,,453754
-2010,Manitoba,Non-residential sources of waste for disposal,,566727
-2010,Saskatchewan,All sources of waste for disposal,47,937268
-2010,Saskatchewan,Residential sources of waste for disposal,,283726
-2010,Saskatchewan,Non-residential sources of waste for disposal,,653541
-2010,Alberta,All sources of waste for disposal,48,3917492
-2010,Alberta,Residential sources of waste for disposal,,1093155
-2010,Alberta,Non-residential sources of waste for disposal,,2824337
-2010,British Columbia,All sources of waste for disposal,59,2658271
-2010,British Columbia,Residential sources of waste for disposal,,953761
-2010,British Columbia,Non-residential sources of waste for disposal,,1704510
-2010,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
-2010,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
-2010,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
-2012,Newfoundland and Labrador,All sources of waste for disposal,10,391571
-2012,Newfoundland and Labrador,Residential sources of waste for disposal,,
-2012,Newfoundland and Labrador,Non-residential sources of waste for disposal,,
-2012,Prince Edward Island,All sources of waste for disposal,11,
-2012,Prince Edward Island,Residential sources of waste for disposal,,
-2012,Prince Edward Island,Non-residential sources of waste for disposal,,
-2012,Nova Scotia,All sources of waste for disposal,12,365079
-2012,Nova Scotia,Residential sources of waste for disposal,,145601
-2012,Nova Scotia,Non-residential sources of waste for disposal,,219478
-2012,New Brunswick,All sources of waste for disposal,13,492938
-2012,New Brunswick,Residential sources of waste for disposal,,215755
-2012,New Brunswick,Non-residential sources of waste for disposal,,277183
-2012,Quebec,All sources of waste for disposal,24,5584621
-2012,Quebec,Residential sources of waste for disposal,,2803335
-2012,Quebec,Non-residential sources of waste for disposal,,2781286
-2012,Ontario,All sources of waste for disposal,35,9208839
-2012,Ontario,Residential sources of waste for disposal,,3388501
-2012,Ontario,Non-residential sources of waste for disposal,,5820338
-2012,Manitoba,All sources of waste for disposal,46,1017663
-2012,Manitoba,Residential sources of waste for disposal,,444227
-2012,Manitoba,Non-residential sources of waste for disposal,,573436
-2012,Saskatchewan,All sources of waste for disposal,47,957670
-2012,Saskatchewan,Residential sources of waste for disposal,,315987
-2012,Saskatchewan,Non-residential sources of waste for disposal,,641682
-2012,Alberta,All sources of waste for disposal,48,3913924
-2012,Alberta,Residential sources of waste for disposal,,1176226
-2012,Alberta,Non-residential sources of waste for disposal,,2737698
-2012,British Columbia,All sources of waste for disposal,59,2604147
-2012,British Columbia,Residential sources of waste for disposal,,947542
-2012,British Columbia,Non-residential sources of waste for disposal,,1656605
-2012,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
-2012,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
-2012,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
-2014,Newfoundland and Labrador,All sources of waste for disposal,10,415158
-2014,Newfoundland and Labrador,Residential sources of waste for disposal,,
-2014,Newfoundland and Labrador,Non-residential sources of waste for disposal,,
-2014,Prince Edward Island,All sources of waste for disposal,11,
-2014,Prince Edward Island,Residential sources of waste for disposal,,
-2014,Prince Edward Island,Non-residential sources of waste for disposal,,
-2014,Nova Scotia,All sources of waste for disposal,12,364193
-2014,Nova Scotia,Residential sources of waste for disposal,,160805
-2014,Nova Scotia,Non-residential sources of waste for disposal,,203388
-2014,New Brunswick,All sources of waste for disposal,13,508115
-2014,New Brunswick,Residential sources of waste for disposal,,234534
-2014,New Brunswick,Non-residential sources of waste for disposal,,273581
-2014,Quebec,All sources of waste for disposal,24,5414539
-2014,Quebec,Residential sources of waste for disposal,,2831404
-2014,Quebec,Non-residential sources of waste for disposal,,2583135
-2014,Ontario,All sources of waste for disposal,35,9165299
-2014,Ontario,Residential sources of waste for disposal,,3490792
-2014,Ontario,Non-residential sources of waste for disposal,,5674507
-2014,Manitoba,All sources of waste for disposal,46,990230
-2014,Manitoba,Residential sources of waste for disposal,,333008
-2014,Manitoba,Non-residential sources of waste for disposal,,657222
-2014,Saskatchewan,All sources of waste for disposal,47,940595
-2014,Saskatchewan,Residential sources of waste for disposal,,331430
-2014,Saskatchewan,Non-residential sources of waste for disposal,,609166
-2014,Alberta,All sources of waste for disposal,48,4097584
-2014,Alberta,Residential sources of waste for disposal,,1230635
-2014,Alberta,Non-residential sources of waste for disposal,,2866949
-2014,British Columbia,All sources of waste for disposal,59,2721309
-2014,British Columbia,Residential sources of waste for disposal,,941345
-2014,British Columbia,Non-residential sources of waste for disposal,,1779963
-2014,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
-2014,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
-2014,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
-2016,Newfoundland and Labrador,All sources of waste for disposal,10,395324
-2016,Newfoundland and Labrador,Residential sources of waste for disposal,,
-2016,Newfoundland and Labrador,Non-residential sources of waste for disposal,,
-2016,Prince Edward Island,All sources of waste for disposal,11,
-2016,Prince Edward Island,Residential sources of waste for disposal,,
-2016,Prince Edward Island,Non-residential sources of waste for disposal,,
-2016,Nova Scotia,All sources of waste for disposal,12,375258
-2016,Nova Scotia,Residential sources of waste for disposal,,169786
-2016,Nova Scotia,Non-residential sources of waste for disposal,,205472
-2016,New Brunswick,All sources of waste for disposal,13,503123
-2016,New Brunswick,Residential sources of waste for disposal,,225893
-2016,New Brunswick,Non-residential sources of waste for disposal,,277230
-2016,Quebec,All sources of waste for disposal,24,5356134
-2016,Quebec,Residential sources of waste for disposal,,3010083
-2016,Quebec,Non-residential sources of waste for disposal,,2346051
-2016,Ontario,All sources of waste for disposal,35,9475472
-2016,Ontario,Residential sources of waste for disposal,,3703850
-2016,Ontario,Non-residential sources of waste for disposal,,5771622
-2016,Manitoba,All sources of waste for disposal,46,969289
-2016,Manitoba,Residential sources of waste for disposal,,308517
-2016,Manitoba,Non-residential sources of waste for disposal,,660772
-2016,Saskatchewan,All sources of waste for disposal,47,898404
-2016,Saskatchewan,Residential sources of waste for disposal,,343497
-2016,Saskatchewan,Non-residential sources of waste for disposal,,554908
-2016,Alberta,All sources of waste for disposal,48,4206668
-2016,Alberta,Residential sources of waste for disposal,,1299856
-2016,Alberta,Non-residential sources of waste for disposal,,2906811
-2016,British Columbia,All sources of waste for disposal,59,2614087
-2016,British Columbia,Residential sources of waste for disposal,,929476
-2016,British Columbia,Non-residential sources of waste for disposal,,1684611
-2016,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,
-2016,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,
-2016,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,
-2018,Newfoundland and Labrador,All sources of waste for disposal,10,373668
-2018,Newfoundland and Labrador,Residential sources of waste for disposal,,158588
-2018,Newfoundland and Labrador,Non-residential sources of waste for disposal,,215080
-2018,Prince Edward Island,All sources of waste for disposal,11,53972
-2018,Prince Edward Island,Residential sources of waste for disposal,,20540
-2018,Prince Edward Island,Non-residential sources of waste for disposal,,33432
-2018,Nova Scotia,All sources of waste for disposal,12,392328
-2018,Nova Scotia,Residential sources of waste for disposal,,157078
-2018,Nova Scotia,Non-residential sources of waste for disposal,,235250
-2018,New Brunswick,All sources of waste for disposal,13,507848
-2018,New Brunswick,Residential sources of waste for disposal,,222110
-2018,New Brunswick,Non-residential sources of waste for disposal,,285738
-2018,Quebec,All sources of waste for disposal,24,5563136
-2018,Quebec,Residential sources of waste for disposal,,3231578
-2018,Quebec,Non-residential sources of waste for disposal,,2331557
-2018,Ontario,All sources of waste for disposal,35,10085613
-2018,Ontario,Residential sources of waste for disposal,,3980665
-2018,Ontario,Non-residential sources of waste for disposal,,6104948
-2018,Manitoba,All sources of waste for disposal,46,963256
-2018,Manitoba,Residential sources of waste for disposal,,333742
-2018,Manitoba,Non-residential sources of waste for disposal,,629514
-2018,Saskatchewan,All sources of waste for disposal,47,864753
-2018,Saskatchewan,Residential sources of waste for disposal,,381180
-2018,Saskatchewan,Non-residential sources of waste for disposal,,483573
-2018,Alberta,All sources of waste for disposal,48,4118081
-2018,Alberta,Residential sources of waste for disposal,,1336765
-2018,Alberta,Non-residential sources of waste for disposal,,2781316
-2018,British Columbia,All sources of waste for disposal,59,2719877
-2018,British Columbia,Residential sources of waste for disposal,,993371
-2018,British Columbia,Non-residential sources of waste for disposal,,1726506
-2018,"Yukon, Northwest Territories and Nunavut",All sources of waste for disposal,,90489
-2018,"Yukon, Northwest Territories and Nunavut",Residential sources of waste for disposal,,32621
-2018,"Yukon, Northwest Territories and Nunavut",Non-residential sources of waste for disposal,,57868
diff --git a/tests/assets/progress-calculation/data/temp/indicator_11-6-2.csv b/tests/assets/progress-calculation/data/temp/indicator_11-6-2.csv
deleted file mode 100644
index d7e86c3f..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_11-6-2.csv
+++ /dev/null
@@ -1,17 +0,0 @@
-Year,Value
-2002,7.3
-2003,7.2
-2004,6.5
-2005,6.9
-2006,6.2
-2007,6.1
-2008,6.1
-2009,6
-2010,6.8
-2011,6.6
-2012,6.6
-2013,7.2
-2014,7.5
-2015,7.5
-2016,6.4
-2020,8.8
diff --git a/tests/assets/progress-calculation/data/temp/indicator_14-4-1.csv b/tests/assets/progress-calculation/data/temp/indicator_14-4-1.csv
deleted file mode 100644
index 08aae2d2..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_14-4-1.csv
+++ /dev/null
@@ -1,10 +0,0 @@
-Year,Value
-2011,89.7
-2012,95.5
-2013,97.4
-2014,98.7
-2015,95.6
-2016,95.9
-2017,95.5
-2018,96.0
-2019,94.3
diff --git a/tests/assets/progress-calculation/data/temp/indicator_14-5-1.csv b/tests/assets/progress-calculation/data/temp/indicator_14-5-1.csv
deleted file mode 100644
index 06e1f272..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_14-5-1.csv
+++ /dev/null
@@ -1,12 +0,0 @@
-Year,Value
-2010,1.2
-2011,1.2
-2012,1.2
-2013,1.2
-2014,1.2
-2015,1.2
-2016,1.4
-2017,7.9
-2018,8.1
-2019,13.8
-2020,13.8
diff --git a/tests/assets/progress-calculation/data/temp/indicator_15-1-1.csv b/tests/assets/progress-calculation/data/temp/indicator_15-1-1.csv
deleted file mode 100644
index 2d50e66c..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_15-1-1.csv
+++ /dev/null
@@ -1,8 +0,0 @@
-Year,Value
-2010,38.19
-2015,38.17
-2016,38.17
-2017,38.16
-2018,38.16
-2019,38.16
-2020,38.15
diff --git a/tests/assets/progress-calculation/data/temp/indicator_15-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_15-2-1.csv
deleted file mode 100644
index 7eb980db..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_15-2-1.csv
+++ /dev/null
@@ -1,48 +0,0 @@
-Year,Units,Series,Value
-2015-2016,Percentage (%),Forest area net change rate,-0.01
-2016-2017,Percentage (%),Forest area net change rate,-0.01
-2017-2018,Percentage (%),Forest area net change rate,-0.01
-2018-2019,Percentage (%),Forest area net change rate,-0.01
-2019-2020,Percentage (%),Forest area net change rate,-0.01
-2010,Tonnes/hectare,Above-ground biomass stock in forest,91.16
-2015,Tonnes/hectare,Above-ground biomass stock in forest,90.49
-2016,Tonnes/hectare,Above-ground biomass stock in forest,90.43
-2017,Tonnes/hectare,Above-ground biomass stock in forest,90.43
-2018,Tonnes/hectare,Above-ground biomass stock in forest,90.43
-2019,Tonnes/hectare,Above-ground biomass stock in forest,90.43
-2020,Tonnes/hectare,Above-ground biomass stock in forest,90.43
-2010,Percentage (%),Proportion of forest area located within legally established protected areas,8.13
-2015,Percentage (%),Proportion of forest area located within legally established protected areas,8.5
-2016,Percentage (%),Proportion of forest area located within legally established protected areas,8.5
-2017,Percentage (%),Proportion of forest area located within legally established protected areas,8.5
-2018,Percentage (%),Proportion of forest area located within legally established protected areas,8.5
-2019,Percentage (%),Proportion of forest area located within legally established protected areas,8.5
-2020,Percentage (%),Proportion of forest area located within legally established protected areas,8.5
-2010,Percentage (%),Proportion of forest area under a long term forest management plan,54.12
-2015,Percentage (%),Proportion of forest area under a long term forest management plan,54.35
-2016,Percentage (%),Proportion of forest area under a long term forest management plan,57.64
-2017,Percentage (%),Proportion of forest area under a long term forest management plan,57.64
-2018,Percentage (%),Proportion of forest area under a long term forest management plan,60.71
-2019,Percentage (%),Proportion of forest area under a long term forest management plan,60.82
-2020,Percentage (%),Proportion of forest area under a long term forest management plan,60.82
-2000,Hectares,Forest area under an independently verified forest management certification scheme,5
-2001,Hectares,Forest area under an independently verified forest management certification scheme,17
-2002,Hectares,Forest area under an independently verified forest management certification scheme,28
-2003,Hectares,Forest area under an independently verified forest management certification scheme,58
-2004,Hectares,Forest area under an independently verified forest management certification scheme,86
-2005,Hectares,Forest area under an independently verified forest management certification scheme,120
-2006,Hectares,Forest area under an independently verified forest management certification scheme,124
-2007,Hectares,Forest area under an independently verified forest management certification scheme,138
-2008,Hectares,Forest area under an independently verified forest management certification scheme,146
-2009,Hectares,Forest area under an independently verified forest management certification scheme,143
-2010,Hectares,Forest area under an independently verified forest management certification scheme,150
-2011,Hectares,Forest area under an independently verified forest management certification scheme,151
-2012,Hectares,Forest area under an independently verified forest management certification scheme,148
-2013,Hectares,Forest area under an independently verified forest management certification scheme,153
-2014,Hectares,Forest area under an independently verified forest management certification scheme,161
-2015,Hectares,Forest area under an independently verified forest management certification scheme,166
-2016,Hectares,Forest area under an independently verified forest management certification scheme,168
-2017,Hectares,Forest area under an independently verified forest management certification scheme,170
-2018,Hectares,Forest area under an independently verified forest management certification scheme,164
-2019,Hectares,Forest area under an independently verified forest management certification scheme,168
-2020,Hectares,Forest area under an independently verified forest management certification scheme,164
diff --git a/tests/assets/progress-calculation/data/temp/indicator_15-5-1.csv b/tests/assets/progress-calculation/data/temp/indicator_15-5-1.csv
deleted file mode 100644
index df106e95..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_15-5-1.csv
+++ /dev/null
@@ -1,18 +0,0 @@
-Year,Value
-2000,1.13
-2001,0.82
-2002,0.24
-2003,-0.28
-2004,-0.9
-2005,-1.07
-2006,-0.89
-2007,-0.58
-2008,-0.57
-2009,-0.24
-2010,-0.16
-2011,-0.19
-2012,-1.2
-2013,-2.85
-2014,-4.12
-2015,-4.83
-2016,-4.39
diff --git a/tests/assets/progress-calculation/data/temp/indicator_15-a-1.csv b/tests/assets/progress-calculation/data/temp/indicator_15-a-1.csv
deleted file mode 100644
index b07d58c6..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_15-a-1.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-Year,Geography,Public sector components,GeoCode,Value
-2015,"","",,1875000000
-2016,"","",,1632000000
-2017,"","",,1848000000
-2018,"","",,1696000000
-2019,"","",,2202000000
-2020,"","",,1931000000
-2015,Canada,Consolidated provincial-territorial and local governments,,1446000000
-2015,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,9000000
-2015,Prince Edward Island,Consolidated provincial-territorial and local governments,11,2000000
-2015,Nova Scotia,Consolidated provincial-territorial and local governments,12,27000000
-2015,New Brunswick,Consolidated provincial-territorial and local governments,13,22000000
-2015,Quebec,Consolidated provincial-territorial and local governments,24,53000000
-2015,Ontario,Consolidated provincial-territorial and local governments,35,738000000
-2015,Manitoba,Consolidated provincial-territorial and local governments,46,33000000
-2015,Saskatchewan,Consolidated provincial-territorial and local governments,47,19000000
-2015,Alberta,Consolidated provincial-territorial and local governments,48,436000000
-2015,British Columbia,Consolidated provincial-territorial and local governments,59,33000000
-2015,Yukon,Consolidated provincial-territorial and local governments,60,53000000
-2015,Northwest Territories,Consolidated provincial-territorial and local governments,61,14000000
-2015,Nunavut,Consolidated provincial-territorial and local governments,62,6000000
-2016,Canada,Consolidated provincial-territorial and local governments,,1328000000
-2016,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,8000000
-2016,Prince Edward Island,Consolidated provincial-territorial and local governments,11,2000000
-2016,Nova Scotia,Consolidated provincial-territorial and local governments,12,22000000
-2016,New Brunswick,Consolidated provincial-territorial and local governments,13,11000000
-2016,Quebec,Consolidated provincial-territorial and local governments,24,52000000
-2016,Ontario,Consolidated provincial-territorial and local governments,35,758000000
-2016,Manitoba,Consolidated provincial-territorial and local governments,46,35000000
-2016,Saskatchewan,Consolidated provincial-territorial and local governments,47,17000000
-2016,Alberta,Consolidated provincial-territorial and local governments,48,328000000
-2016,British Columbia,Consolidated provincial-territorial and local governments,59,33000000
-2016,Yukon,Consolidated provincial-territorial and local governments,60,42000000
-2016,Northwest Territories,Consolidated provincial-territorial and local governments,61,13000000
-2016,Nunavut,Consolidated provincial-territorial and local governments,62,6000000
-2017,Canada,Consolidated provincial-territorial and local governments,,1506000000
-2017,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,7000000
-2017,Prince Edward Island,Consolidated provincial-territorial and local governments,11,2000000
-2017,Nova Scotia,Consolidated provincial-territorial and local governments,12,21000000
-2017,New Brunswick,Consolidated provincial-territorial and local governments,13,18000000
-2017,Quebec,Consolidated provincial-territorial and local governments,24,140000000
-2017,Ontario,Consolidated provincial-territorial and local governments,35,862000000
-2017,Manitoba,Consolidated provincial-territorial and local governments,46,34000000
-2017,Saskatchewan,Consolidated provincial-territorial and local governments,47,20000000
-2017,Alberta,Consolidated provincial-territorial and local governments,48,297000000
-2017,British Columbia,Consolidated provincial-territorial and local governments,59,52000000
-2017,Yukon,Consolidated provincial-territorial and local governments,60,34000000
-2017,Northwest Territories,Consolidated provincial-territorial and local governments,61,13000000
-2017,Nunavut,Consolidated provincial-territorial and local governments,62,6000000
-2018,Canada,Consolidated provincial-territorial and local governments,,1357000000
-2018,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,6000000
-2018,Prince Edward Island,Consolidated provincial-territorial and local governments,11,2000000
-2018,Nova Scotia,Consolidated provincial-territorial and local governments,12,36000000
-2018,New Brunswick,Consolidated provincial-territorial and local governments,13,19000000
-2018,Quebec,Consolidated provincial-territorial and local governments,24,55000000
-2018,Ontario,Consolidated provincial-territorial and local governments,35,802000000
-2018,Manitoba,Consolidated provincial-territorial and local governments,46,34000000
-2018,Saskatchewan,Consolidated provincial-territorial and local governments,47,22000000
-2018,Alberta,Consolidated provincial-territorial and local governments,48,295000000
-2018,British Columbia,Consolidated provincial-territorial and local governments,59,46000000
-2018,Yukon,Consolidated provincial-territorial and local governments,60,20000000
-2018,Northwest Territories,Consolidated provincial-territorial and local governments,61,14000000
-2018,Nunavut,Consolidated provincial-territorial and local governments,62,6000000
-2019,Canada,Consolidated provincial-territorial and local governments,,1665000000
-2019,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,7000000
-2019,Prince Edward Island,Consolidated provincial-territorial and local governments,11,2000000
-2019,Nova Scotia,Consolidated provincial-territorial and local governments,12,30000000
-2019,New Brunswick,Consolidated provincial-territorial and local governments,13,18000000
-2019,Quebec,Consolidated provincial-territorial and local governments,24,106000000
-2019,Ontario,Consolidated provincial-territorial and local governments,35,845000000
-2019,Manitoba,Consolidated provincial-territorial and local governments,46,35000000
-2019,Saskatchewan,Consolidated provincial-territorial and local governments,47,23000000
-2019,Alberta,Consolidated provincial-territorial and local governments,48,499000000
-2019,British Columbia,Consolidated provincial-territorial and local governments,59,46000000
-2019,Yukon,Consolidated provincial-territorial and local governments,60,29000000
-2019,Northwest Territories,Consolidated provincial-territorial and local governments,61,17000000
-2019,Nunavut,Consolidated provincial-territorial and local governments,62,7000000
-2020,Canada,Consolidated provincial-territorial and local governments,,1305000000
-2020,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,7000000
-2020,Prince Edward Island,Consolidated provincial-territorial and local governments,11,2000000
-2020,Nova Scotia,Consolidated provincial-territorial and local governments,12,31000000
-2020,New Brunswick,Consolidated provincial-territorial and local governments,13,16000000
-2020,Quebec,Consolidated provincial-territorial and local governments,24,165000000
-2020,Ontario,Consolidated provincial-territorial and local governments,35,821000000
-2020,Manitoba,Consolidated provincial-territorial and local governments,46,61000000
-2020,Saskatchewan,Consolidated provincial-territorial and local governments,47,23000000
-2020,Alberta,Consolidated provincial-territorial and local governments,48,66000000
-2020,British Columbia,Consolidated provincial-territorial and local governments,59,58000000
-2020,Yukon,Consolidated provincial-territorial and local governments,60,30000000
-2020,Northwest Territories,Consolidated provincial-territorial and local governments,61,17000000
-2020,Nunavut,Consolidated provincial-territorial and local governments,62,7000000
diff --git a/tests/assets/progress-calculation/data/temp/indicator_16-1-1.csv b/tests/assets/progress-calculation/data/temp/indicator_16-1-1.csv
deleted file mode 100644
index e89ad519..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_16-1-1.csv
+++ /dev/null
@@ -1,883 +0,0 @@
-Year,Geography,Gender,Indigenous identity,GeoCode,Value
-2014,"","","",,1.48
-2015,"","","",,1.71
-2016,"","","",,1.71
-2017,"","","",,1.83
-2018,"","","",,1.78
-2019,"","","",,1.83
-2020,"","","",,1.96
-2014,Canada,All genders,Indigenous identity,,7.19
-2014,Canada,All genders,Non-Indigenous identity,,1.18
-2014,Canada,Male,Total,,2.12
-2014,Canada,Male,Indigenous identity,,10.87
-2014,Canada,Male,Non-Indigenous identity,,1.65
-2014,Canada,Female,Total,,0.86
-2014,Canada,Female,Indigenous identity,,3.63
-2014,Canada,Female,Non-Indigenous identity,,0.71
-2014,Newfoundland and Labrador,All genders,Total,10,0.38
-2014,Newfoundland and Labrador,All genders,Indigenous identity,,0
-2014,Newfoundland and Labrador,All genders,Non-Indigenous identity,,0.41
-2014,Newfoundland and Labrador,Male,Total,,0.77
-2014,Newfoundland and Labrador,Male,Indigenous identity,,0
-2014,Newfoundland and Labrador,Male,Non-Indigenous identity,,0.83
-2014,Newfoundland and Labrador,Female,Total,,0
-2014,Newfoundland and Labrador,Female,Indigenous identity,,0
-2014,Newfoundland and Labrador,Female,Non-Indigenous identity,,0
-2014,Prince Edward Island,All genders,Total,11,2.06
-2014,Prince Edward Island,All genders,Indigenous identity,,0
-2014,Prince Edward Island,All genders,Non-Indigenous identity,,2.1
-2014,Prince Edward Island,Male,Total,,4.23
-2014,Prince Edward Island,Male,Indigenous identity,,0
-2014,Prince Edward Island,Male,Non-Indigenous identity,,4.31
-2014,Prince Edward Island,Female,Total,,0
-2014,Prince Edward Island,Female,Indigenous identity,,0
-2014,Prince Edward Island,Female,Non-Indigenous identity,,0
-2014,Nova Scotia,All genders,Total,12,0.64
-2014,Nova Scotia,All genders,Indigenous identity,,2.14
-2014,Nova Scotia,All genders,Non-Indigenous identity,,0.45
-2014,Nova Scotia,Male,Total,,0.87
-2014,Nova Scotia,Male,Indigenous identity,,0
-2014,Nova Scotia,Male,Non-Indigenous identity,,0.68
-2014,Nova Scotia,Female,Total,,0.42
-2014,Nova Scotia,Female,Indigenous identity,,4.19
-2014,Nova Scotia,Female,Non-Indigenous identity,,0.22
-2014,New Brunswick,All genders,Total,13,1.32
-2014,New Brunswick,All genders,Indigenous identity,,0
-2014,New Brunswick,All genders,Non-Indigenous identity,,1.37
-2014,New Brunswick,Male,Total,,1.6
-2014,New Brunswick,Male,Indigenous identity,,0
-2014,New Brunswick,Male,Non-Indigenous identity,,1.66
-2014,New Brunswick,Female,Total,,1.04
-2014,New Brunswick,Female,Indigenous identity,,0
-2014,New Brunswick,Female,Non-Indigenous identity,,1.08
-2014,Quebec,All genders,Total,24,0.89
-2014,Quebec,All genders,Indigenous identity,,2.15
-2014,Quebec,All genders,Non-Indigenous identity,,0.83
-2014,Quebec,Male,Total,,1.19
-2014,Quebec,Male,Indigenous identity,,2.12
-2014,Quebec,Male,Non-Indigenous identity,,1.11
-2014,Quebec,Female,Total,,0.59
-2014,Quebec,Female,Indigenous identity,,2.17
-2014,Quebec,Female,Non-Indigenous identity,,0.55
-2014,Ontario,All genders,Total,35,1.15
-2014,Ontario,All genders,Indigenous identity,,5.57
-2014,Ontario,All genders,Non-Indigenous identity,,1
-2014,Ontario,Male,Total,,1.72
-2014,Ontario,Male,Indigenous identity,,9.8
-2014,Ontario,Male,Non-Indigenous identity,,1.46
-2014,Ontario,Female,Total,,0.59
-2014,Ontario,Female,Indigenous identity,,1.55
-2014,Ontario,Female,Non-Indigenous identity,,0.55
-2014,Manitoba,All genders,Total,46,3.51
-2014,Manitoba,All genders,Indigenous identity,,12.88
-2014,Manitoba,All genders,Non-Indigenous identity,,1.52
-2014,Manitoba,Male,Total,,5.18
-2014,Manitoba,Male,Indigenous identity,,19.87
-2014,Manitoba,Male,Non-Indigenous identity,,2.09
-2014,Manitoba,Female,Total,,1.87
-2014,Manitoba,Female,Indigenous identity,,6.12
-2014,Manitoba,Female,Non-Indigenous identity,,0.95
-2014,Saskatchewan,All genders,Total,47,2.17
-2014,Saskatchewan,All genders,Indigenous identity,,6.73
-2014,Saskatchewan,All genders,Non-Indigenous identity,,1.29
-2014,Saskatchewan,Male,Total,,3.41
-2014,Saskatchewan,Male,Indigenous identity,,12.59
-2014,Saskatchewan,Male,Non-Indigenous identity,,1.7
-2014,Saskatchewan,Female,Total,,0.91
-2014,Saskatchewan,Female,Indigenous identity,,1.1
-2014,Saskatchewan,Female,Non-Indigenous identity,,0.87
-2014,Alberta,All genders,Total,48,2.65
-2014,Alberta,All genders,Indigenous identity,,12.23
-2014,Alberta,All genders,Non-Indigenous identity,,1.99
-2014,Alberta,Male,Total,,3.63
-2014,Alberta,Male,Indigenous identity,,17.08
-2014,Alberta,Male,Non-Indigenous identity,,2.72
-2014,Alberta,Female,Total,,1.65
-2014,Alberta,Female,Indigenous identity,,7.53
-2014,Alberta,Female,Non-Indigenous identity,,1.24
-2014,British Columbia,All genders,Total,59,1.89
-2014,British Columbia,All genders,Indigenous identity,,5.17
-2014,British Columbia,All genders,Non-Indigenous identity,,1.69
-2014,British Columbia,Male,Total,,2.61
-2014,British Columbia,Male,Indigenous identity,,8.29
-2014,British Columbia,Male,Non-Indigenous identity,,2.27
-2014,British Columbia,Female,Total,,1.18
-2014,British Columbia,Female,Indigenous identity,,2.17
-2014,British Columbia,Female,Non-Indigenous identity,,1.12
-2014,Yukon,All genders,Total,60,8.08
-2014,Yukon,All genders,Indigenous identity,,11.52
-2014,Yukon,All genders,Non-Indigenous identity,,7.03
-2014,Yukon,Male,Total,,10.58
-2014,Yukon,Male,Indigenous identity,,0
-2014,Yukon,Male,Non-Indigenous identity,,13.6
-2014,Yukon,Female,Total,,5.49
-2014,Yukon,Female,Indigenous identity,,22.34
-2014,Yukon,Female,Non-Indigenous identity,,0
-2014,Northwest Territories,All genders,Total,61,6.78
-2014,Northwest Territories,All genders,Indigenous identity,,13.27
-2014,Northwest Territories,All genders,Non-Indigenous identity,,0
-2014,Northwest Territories,Male,Total,,8.8
-2014,Northwest Territories,Male,Indigenous identity,,17.71
-2014,Northwest Territories,Male,Non-Indigenous identity,,0
-2014,Northwest Territories,Female,Total,,4.65
-2014,Northwest Territories,Female,Indigenous identity,,8.84
-2014,Northwest Territories,Female,Non-Indigenous identity,,0
-2014,Nunavut,All genders,Total,62,11.17
-2014,Nunavut,All genders,Indigenous identity,,13.01
-2014,Nunavut,All genders,Non-Indigenous identity,,0
-2014,Nunavut,Male,Total,,10.85
-2014,Nunavut,Male,Indigenous identity,,12.78
-2014,Nunavut,Male,Non-Indigenous identity,,0
-2014,Nunavut,Female,Total,,11.51
-2014,Nunavut,Female,Indigenous identity,,13.25
-2014,Nunavut,Female,Non-Indigenous identity,,0
-2015,Canada,All genders,Indigenous identity,,8.62
-2015,Canada,All genders,Non-Indigenous identity,,1.34
-2015,Canada,Male,Total,,2.44
-2015,Canada,Male,Indigenous identity,,12.49
-2015,Canada,Male,Non-Indigenous identity,,1.9
-2015,Canada,Female,Total,,0.99
-2015,Canada,Female,Indigenous identity,,4.87
-2015,Canada,Female,Non-Indigenous identity,,0.78
-2015,Newfoundland and Labrador,All genders,Total,10,0.57
-2015,Newfoundland and Labrador,All genders,Indigenous identity,,2.2
-2015,Newfoundland and Labrador,All genders,Non-Indigenous identity,,0.41
-2015,Newfoundland and Labrador,Male,Total,,0.76
-2015,Newfoundland and Labrador,Male,Indigenous identity,,0
-2015,Newfoundland and Labrador,Male,Non-Indigenous identity,,0.83
-2015,Newfoundland and Labrador,Female,Total,,0.37
-2015,Newfoundland and Labrador,Female,Indigenous identity,,4.33
-2015,Newfoundland and Labrador,Female,Non-Indigenous identity,,0
-2015,Prince Edward Island,All genders,Total,11,0.69
-2015,Prince Edward Island,All genders,Indigenous identity,,0
-2015,Prince Edward Island,All genders,Non-Indigenous identity,,0.7
-2015,Prince Edward Island,Male,Total,,0
-2015,Prince Edward Island,Male,Indigenous identity,,0
-2015,Prince Edward Island,Male,Non-Indigenous identity,,0
-2015,Prince Edward Island,Female,Total,,1.34
-2015,Prince Edward Island,Female,Indigenous identity,,0
-2015,Prince Edward Island,Female,Non-Indigenous identity,,1.36
-2015,Nova Scotia,All genders,Total,12,1.27
-2015,Nova Scotia,All genders,Indigenous identity,,1.98
-2015,Nova Scotia,All genders,Non-Indigenous identity,,1.12
-2015,Nova Scotia,Male,Total,,1.52
-2015,Nova Scotia,Male,Indigenous identity,,4.04
-2015,Nova Scotia,Male,Non-Indigenous identity,,1.38
-2015,Nova Scotia,Female,Total,,1.04
-2015,Nova Scotia,Female,Indigenous identity,,0
-2015,Nova Scotia,Female,Non-Indigenous identity,,0.88
-2015,New Brunswick,All genders,Total,13,1.44
-2015,New Brunswick,All genders,Indigenous identity,,0
-2015,New Brunswick,All genders,Non-Indigenous identity,,1.5
-2015,New Brunswick,Male,Total,,1.59
-2015,New Brunswick,Male,Indigenous identity,,0
-2015,New Brunswick,Male,Non-Indigenous identity,,1.66
-2015,New Brunswick,Female,Total,,1.3
-2015,New Brunswick,Female,Indigenous identity,,0
-2015,New Brunswick,Female,Non-Indigenous identity,,1.35
-2015,Quebec,All genders,Total,24,0.97
-2015,Quebec,All genders,Indigenous identity,,3.09
-2015,Quebec,All genders,Non-Indigenous identity,,0.91
-2015,Quebec,Male,Total,,1.48
-2015,Quebec,Male,Indigenous identity,,4.06
-2015,Quebec,Male,Non-Indigenous identity,,1.41
-2015,Quebec,Female,Total,,0.46
-2015,Quebec,Female,Indigenous identity,,2.09
-2015,Quebec,Female,Non-Indigenous identity,,0.42
-2015,Ontario,All genders,Total,35,1.27
-2015,Ontario,All genders,Indigenous identity,,3.33
-2015,Ontario,All genders,Non-Indigenous identity,,1.18
-2015,Ontario,Male,Total,,1.83
-2015,Ontario,Male,Indigenous identity,,5.25
-2015,Ontario,Male,Non-Indigenous identity,,1.69
-2015,Ontario,Female,Total,,0.72
-2015,Ontario,Female,Indigenous identity,,1.5
-2015,Ontario,Female,Non-Indigenous identity,,0.68
-2015,Manitoba,All genders,Total,46,3.7
-2015,Manitoba,All genders,Indigenous identity,,15.55
-2015,Manitoba,All genders,Non-Indigenous identity,,1.13
-2015,Manitoba,Male,Total,,5.73
-2015,Manitoba,Male,Indigenous identity,,24.58
-2015,Manitoba,Male,Non-Indigenous identity,,1.69
-2015,Manitoba,Female,Total,,1.69
-2015,Manitoba,Female,Indigenous identity,,6.81
-2015,Manitoba,Female,Non-Indigenous identity,,0.56
-2015,Saskatchewan,All genders,Total,47,4.01
-2015,Saskatchewan,All genders,Indigenous identity,,16.46
-2015,Saskatchewan,All genders,Non-Indigenous identity,,1.6
-2015,Saskatchewan,Male,Total,,5.67
-2015,Saskatchewan,Male,Indigenous identity,,29.02
-2015,Saskatchewan,Male,Non-Indigenous identity,,1.26
-2015,Saskatchewan,Female,Total,,2.33
-2015,Saskatchewan,Female,Indigenous identity,,4.32
-2015,Saskatchewan,Female,Non-Indigenous identity,,1.94
-2015,Alberta,All genders,Total,48,3.23
-2015,Alberta,All genders,Indigenous identity,,13.72
-2015,Alberta,All genders,Non-Indigenous identity,,2.47
-2015,Alberta,Male,Total,,4.23
-2015,Alberta,Male,Indigenous identity,,15.84
-2015,Alberta,Male,Non-Indigenous identity,,3.39
-2015,Alberta,Female,Total,,2.21
-2015,Alberta,Female,Indigenous identity,,11.67
-2015,Alberta,Female,Non-Indigenous identity,,1.53
-2015,British Columbia,All genders,Total,59,2.01
-2015,British Columbia,All genders,Indigenous identity,,6.42
-2015,British Columbia,All genders,Non-Indigenous identity,,1.73
-2015,British Columbia,Male,Total,,3
-2015,British Columbia,Male,Indigenous identity,,9.48
-2015,British Columbia,Male,Non-Indigenous identity,,2.6
-2015,British Columbia,Female,Total,,1.04
-2015,British Columbia,Female,Indigenous identity,,3.49
-2015,British Columbia,Female,Non-Indigenous identity,,0.88
-2015,Yukon,All genders,Total,60,2.65
-2015,Yukon,All genders,Indigenous identity,,0
-2015,Yukon,All genders,Non-Indigenous identity,,3.46
-2015,Yukon,Male,Total,,5.21
-2015,Yukon,Male,Indigenous identity,,0
-2015,Yukon,Male,Non-Indigenous identity,,6.71
-2015,Yukon,Female,Total,,0
-2015,Yukon,Female,Indigenous identity,,0
-2015,Yukon,Female,Non-Indigenous identity,,0
-2015,Northwest Territories,All genders,Total,61,13.48
-2015,Northwest Territories,All genders,Indigenous identity,,26.53
-2015,Northwest Territories,All genders,Non-Indigenous identity,,0
-2015,Northwest Territories,Male,Total,,13.12
-2015,Northwest Territories,Male,Indigenous identity,,26.49
-2015,Northwest Territories,Male,Non-Indigenous identity,,0
-2015,Northwest Territories,Female,Total,,13.86
-2015,Northwest Territories,Female,Indigenous identity,,26.57
-2015,Northwest Territories,Female,Non-Indigenous identity,,0
-2015,Nunavut,All genders,Total,62,5.5
-2015,Nunavut,All genders,Indigenous identity,,6.41
-2015,Nunavut,All genders,Non-Indigenous identity,,0
-2015,Nunavut,Male,Total,,5.35
-2015,Nunavut,Male,Indigenous identity,,6.31
-2015,Nunavut,Male,Non-Indigenous identity,,0
-2015,Nunavut,Female,Total,,5.66
-2015,Nunavut,Female,Indigenous identity,,6.52
-2015,Nunavut,Female,Non-Indigenous identity,,0
-2016,Canada,All genders,Indigenous identity,,7.96
-2016,Canada,All genders,Non-Indigenous identity,,1.36
-2016,Canada,Male,Total,,2.57
-2016,Canada,Male,Indigenous identity,,12.76
-2016,Canada,Male,Non-Indigenous identity,,2.02
-2016,Canada,Female,Total,,0.85
-2016,Canada,Female,Indigenous identity,,3.29
-2016,Canada,Female,Non-Indigenous identity,,0.71
-2016,Newfoundland and Labrador,All genders,Total,10,1.32
-2016,Newfoundland and Labrador,All genders,Indigenous identity,,2.11
-2016,Newfoundland and Labrador,All genders,Non-Indigenous identity,,1.25
-2016,Newfoundland and Labrador,Male,Total,,1.91
-2016,Newfoundland and Labrador,Male,Indigenous identity,,4.3
-2016,Newfoundland and Labrador,Male,Non-Indigenous identity,,1.67
-2016,Newfoundland and Labrador,Female,Total,,0.75
-2016,Newfoundland and Labrador,Female,Indigenous identity,,0
-2016,Newfoundland and Labrador,Female,Non-Indigenous identity,,0.82
-2016,Prince Edward Island,All genders,Total,11,0
-2016,Prince Edward Island,All genders,Indigenous identity,,0
-2016,Prince Edward Island,All genders,Non-Indigenous identity,,0
-2016,Prince Edward Island,Male,Total,,0
-2016,Prince Edward Island,Male,Indigenous identity,,0
-2016,Prince Edward Island,Male,Non-Indigenous identity,,0
-2016,Prince Edward Island,Female,Total,,0
-2016,Prince Edward Island,Female,Indigenous identity,,0
-2016,Prince Edward Island,Female,Non-Indigenous identity,,0
-2016,Nova Scotia,All genders,Total,12,1.38
-2016,Nova Scotia,All genders,Indigenous identity,,1.85
-2016,Nova Scotia,All genders,Non-Indigenous identity,,1.13
-2016,Nova Scotia,Male,Total,,2.39
-2016,Nova Scotia,Male,Indigenous identity,,3.78
-2016,Nova Scotia,Male,Non-Indigenous identity,,1.84
-2016,Nova Scotia,Female,Total,,0.42
-2016,Nova Scotia,Female,Indigenous identity,,0
-2016,Nova Scotia,Female,Non-Indigenous identity,,0.44
-2016,New Brunswick,All genders,Total,13,1.44
-2016,New Brunswick,All genders,Indigenous identity,,0
-2016,New Brunswick,All genders,Non-Indigenous identity,,1.5
-2016,New Brunswick,Male,Total,,2.38
-2016,New Brunswick,Male,Indigenous identity,,0
-2016,New Brunswick,Male,Non-Indigenous identity,,2.49
-2016,New Brunswick,Female,Total,,0.52
-2016,New Brunswick,Female,Indigenous identity,,0
-2016,New Brunswick,Female,Non-Indigenous identity,,0.54
-2016,Quebec,All genders,Total,24,0.81
-2016,Quebec,All genders,Indigenous identity,,1.98
-2016,Quebec,All genders,Non-Indigenous identity,,0.77
-2016,Quebec,Male,Total,,1.25
-2016,Quebec,Male,Indigenous identity,,3.9
-2016,Quebec,Male,Non-Indigenous identity,,1.15
-2016,Quebec,Female,Total,,0.39
-2016,Quebec,Female,Indigenous identity,,0
-2016,Quebec,Female,Non-Indigenous identity,,0.4
-2016,Ontario,All genders,Total,35,1.49
-2016,Ontario,All genders,Indigenous identity,,4.45
-2016,Ontario,All genders,Non-Indigenous identity,,1.36
-2016,Ontario,Male,Total,,2.21
-2016,Ontario,Male,Indigenous identity,,8.61
-2016,Ontario,Male,Non-Indigenous identity,,1.99
-2016,Ontario,Female,Total,,0.78
-2016,Ontario,Female,Indigenous identity,,0.48
-2016,Ontario,Female,Non-Indigenous identity,,0.75
-2016,Manitoba,All genders,Total,46,3.2
-2016,Manitoba,All genders,Indigenous identity,,11.35
-2016,Manitoba,All genders,Non-Indigenous identity,,1.4
-2016,Manitoba,Male,Total,,5.04
-2016,Manitoba,Male,Indigenous identity,,17.93
-2016,Manitoba,Male,Non-Indigenous identity,,2.23
-2016,Manitoba,Female,Total,,1.37
-2016,Manitoba,Female,Indigenous identity,,4.97
-2016,Manitoba,Female,Non-Indigenous identity,,0.56
-2016,Saskatchewan,All genders,Total,47,4.93
-2016,Saskatchewan,All genders,Indigenous identity,,20.39
-2016,Saskatchewan,All genders,Non-Indigenous identity,,1.9
-2016,Saskatchewan,Male,Total,,7.34
-2016,Saskatchewan,Male,Indigenous identity,,31.58
-2016,Saskatchewan,Male,Non-Indigenous identity,,2.71
-2016,Saskatchewan,Female,Total,,2.48
-2016,Saskatchewan,Female,Indigenous identity,,9.52
-2016,Saskatchewan,Female,Non-Indigenous identity,,1.07
-2016,Alberta,All genders,Total,48,2.76
-2016,Alberta,All genders,Indigenous identity,,11.15
-2016,Alberta,All genders,Non-Indigenous identity,,2.17
-2016,Alberta,Male,Total,,4.1
-2016,Alberta,Male,Indigenous identity,,15.38
-2016,Alberta,Male,Non-Indigenous identity,,3.33
-2016,Alberta,Female,Total,,1.39
-2016,Alberta,Female,Indigenous identity,,7.07
-2016,Alberta,Female,Non-Indigenous identity,,0.98
-2016,British Columbia,All genders,Total,59,1.85
-2016,British Columbia,All genders,Indigenous identity,,5.87
-2016,British Columbia,All genders,Non-Indigenous identity,,1.6
-2016,British Columbia,Male,Total,,2.75
-2016,British Columbia,Male,Indigenous identity,,10.6
-2016,British Columbia,Male,Non-Indigenous identity,,2.26
-2016,British Columbia,Female,Total,,0.98
-2016,British Columbia,Female,Indigenous identity,,1.35
-2016,British Columbia,Female,Non-Indigenous identity,,0.96
-2016,Yukon,All genders,Total,60,10.43
-2016,Yukon,All genders,Indigenous identity,,22.35
-2016,Yukon,All genders,Non-Indigenous identity,,6.8
-2016,Yukon,Male,Total,,20.52
-2016,Yukon,Male,Indigenous identity,,45.68
-2016,Yukon,Male,Non-Indigenous identity,,13.23
-2016,Yukon,Female,Total,,0
-2016,Yukon,Female,Indigenous identity,,0
-2016,Yukon,Female,Non-Indigenous identity,,0
-2016,Northwest Territories,All genders,Total,61,6.71
-2016,Northwest Territories,All genders,Indigenous identity,,13.26
-2016,Northwest Territories,All genders,Non-Indigenous identity,,0
-2016,Northwest Territories,Male,Total,,8.71
-2016,Northwest Territories,Male,Indigenous identity,,17.63
-2016,Northwest Territories,Male,Non-Indigenous identity,,0
-2016,Northwest Territories,Female,Total,,4.6
-2016,Northwest Territories,Female,Indigenous identity,,8.86
-2016,Northwest Territories,Female,Non-Indigenous identity,,0
-2016,Nunavut,All genders,Total,62,2.7
-2016,Nunavut,All genders,Indigenous identity,,3.15
-2016,Nunavut,All genders,Non-Indigenous identity,,0
-2016,Nunavut,Male,Total,,0
-2016,Nunavut,Male,Indigenous identity,,0
-2016,Nunavut,Male,Non-Indigenous identity,,0
-2016,Nunavut,Female,Total,,5.56
-2016,Nunavut,Female,Indigenous identity,,6.41
-2016,Nunavut,Female,Non-Indigenous identity,,0
-2017,Canada,All genders,Indigenous identity,,8.48
-2017,Canada,All genders,Non-Indigenous identity,,1.44
-2017,Canada,Male,Total,,2.71
-2017,Canada,Male,Indigenous identity,,13.04
-2017,Canada,Male,Non-Indigenous identity,,2.13
-2017,Canada,Female,Total,,0.94
-2017,Canada,Female,Indigenous identity,,4.05
-2017,Canada,Female,Non-Indigenous identity,,0.76
-2017,Newfoundland and Labrador,All genders,Total,10,0.76
-2017,Newfoundland and Labrador,All genders,Indigenous identity,,2.05
-2017,Newfoundland and Labrador,All genders,Non-Indigenous identity,,0.63
-2017,Newfoundland and Labrador,Male,Total,,0.38
-2017,Newfoundland and Labrador,Male,Indigenous identity,,0
-2017,Newfoundland and Labrador,Male,Non-Indigenous identity,,0.42
-2017,Newfoundland and Labrador,Female,Total,,1.13
-2017,Newfoundland and Labrador,Female,Indigenous identity,,4.03
-2017,Newfoundland and Labrador,Female,Non-Indigenous identity,,0.83
-2017,Prince Edward Island,All genders,Total,11,1.35
-2017,Prince Edward Island,All genders,Indigenous identity,,0
-2017,Prince Edward Island,All genders,Non-Indigenous identity,,1.37
-2017,Prince Edward Island,Male,Total,,2.75
-2017,Prince Edward Island,Male,Indigenous identity,,0
-2017,Prince Edward Island,Male,Non-Indigenous identity,,2.81
-2017,Prince Edward Island,Female,Total,,0
-2017,Prince Edward Island,Female,Indigenous identity,,0
-2017,Prince Edward Island,Female,Non-Indigenous identity,,0
-2017,Nova Scotia,All genders,Total,12,2.22
-2017,Nova Scotia,All genders,Indigenous identity,,0
-2017,Nova Scotia,All genders,Non-Indigenous identity,,2.25
-2017,Nova Scotia,Male,Total,,1.52
-2017,Nova Scotia,Male,Indigenous identity,,0
-2017,Nova Scotia,Male,Non-Indigenous identity,,1.61
-2017,Nova Scotia,Female,Total,,2.9
-2017,Nova Scotia,Female,Indigenous identity,,0
-2017,Nova Scotia,Female,Non-Indigenous identity,,2.87
-2017,New Brunswick,All genders,Total,13,1.31
-2017,New Brunswick,All genders,Indigenous identity,,0
-2017,New Brunswick,All genders,Non-Indigenous identity,,1.37
-2017,New Brunswick,Male,Total,,1.85
-2017,New Brunswick,Male,Indigenous identity,,0
-2017,New Brunswick,Male,Non-Indigenous identity,,1.94
-2017,New Brunswick,Female,Total,,0.78
-2017,New Brunswick,Female,Indigenous identity,,0
-2017,New Brunswick,Female,Non-Indigenous identity,,0.81
-2017,Quebec,All genders,Total,24,1.12
-2017,Quebec,All genders,Indigenous identity,,5.74
-2017,Quebec,All genders,Non-Indigenous identity,,1
-2017,Quebec,Male,Total,,1.5
-2017,Quebec,Male,Indigenous identity,,7.52
-2017,Quebec,Male,Non-Indigenous identity,,1.34
-2017,Quebec,Female,Total,,0.7
-2017,Quebec,Female,Indigenous identity,,3.89
-2017,Quebec,Female,Non-Indigenous identity,,0.62
-2017,Ontario,All genders,Total,35,1.41
-2017,Ontario,All genders,Indigenous identity,,4.79
-2017,Ontario,All genders,Non-Indigenous identity,,1.27
-2017,Ontario,Male,Total,,2.14
-2017,Ontario,Male,Indigenous identity,,7.84
-2017,Ontario,Male,Non-Indigenous identity,,1.92
-2017,Ontario,Female,Total,,0.7
-2017,Ontario,Female,Indigenous identity,,1.87
-2017,Ontario,Female,Non-Indigenous identity,,0.64
-2017,Manitoba,All genders,Total,46,3.53
-2017,Manitoba,All genders,Indigenous identity,,11.89
-2017,Manitoba,All genders,Non-Indigenous identity,,1.56
-2017,Manitoba,Male,Total,,5.72
-2017,Manitoba,Male,Indigenous identity,,19.97
-2017,Manitoba,Male,Non-Indigenous identity,,2.39
-2017,Manitoba,Female,Total,,1.35
-2017,Manitoba,Female,Indigenous identity,,4.04
-2017,Manitoba,Female,Non-Indigenous identity,,0.74
-2017,Saskatchewan,All genders,Total,47,3.31
-2017,Saskatchewan,All genders,Indigenous identity,,15.74
-2017,Saskatchewan,All genders,Non-Indigenous identity,,0.83
-2017,Saskatchewan,Male,Total,,5.01
-2017,Saskatchewan,Male,Indigenous identity,,26.61
-2017,Saskatchewan,Male,Non-Indigenous identity,,0.83
-2017,Saskatchewan,Female,Total,,1.58
-2017,Saskatchewan,Female,Indigenous identity,,5.17
-2017,Saskatchewan,Female,Non-Indigenous identity,,0.84
-2017,Alberta,All genders,Total,48,2.78
-2017,Alberta,All genders,Indigenous identity,,14.3
-2017,Alberta,All genders,Non-Indigenous identity,,1.9
-2017,Alberta,Male,Total,,4.39
-2017,Alberta,Male,Indigenous identity,,21.99
-2017,Alberta,Male,Non-Indigenous identity,,3.07
-2017,Alberta,Female,Total,,1.13
-2017,Alberta,Female,Indigenous identity,,6.86
-2017,Alberta,Female,Non-Indigenous identity,,0.71
-2017,British Columbia,All genders,Total,59,2.42
-2017,British Columbia,All genders,Indigenous identity,,3.69
-2017,British Columbia,All genders,Non-Indigenous identity,,2.34
-2017,British Columbia,Male,Total,,3.74
-2017,British Columbia,Male,Indigenous identity,,4.12
-2017,British Columbia,Male,Non-Indigenous identity,,3.72
-2017,British Columbia,Female,Total,,1.13
-2017,British Columbia,Female,Indigenous identity,,3.28
-2017,British Columbia,Female,Non-Indigenous identity,,0.99
-2017,Yukon,All genders,Total,60,20.65
-2017,Yukon,All genders,Indigenous identity,,66.96
-2017,Yukon,All genders,Non-Indigenous identity,,6.72
-2017,Yukon,Male,Total,,30.51
-2017,Yukon,Male,Indigenous identity,,91.22
-2017,Yukon,Male,Non-Indigenous identity,,13.09
-2017,Yukon,Female,Total,,10.48
-2017,Yukon,Female,Indigenous identity,,43.72
-2017,Yukon,Female,Non-Indigenous identity,,0
-2017,Northwest Territories,All genders,Total,61,4.44
-2017,Northwest Territories,All genders,Indigenous identity,,8.81
-2017,Northwest Territories,All genders,Non-Indigenous identity,,0
-2017,Northwest Territories,Male,Total,,8.68
-2017,Northwest Territories,Male,Indigenous identity,,17.58
-2017,Northwest Territories,Male,Non-Indigenous identity,,0
-2017,Northwest Territories,Female,Total,,0
-2017,Northwest Territories,Female,Indigenous identity,,0
-2017,Northwest Territories,Female,Non-Indigenous identity,,0
-2017,Nunavut,All genders,Total,62,15.97
-2017,Nunavut,All genders,Indigenous identity,,15.44
-2017,Nunavut,All genders,Non-Indigenous identity,,19.28
-2017,Nunavut,Male,Total,,20.86
-2017,Nunavut,Male,Indigenous identity,,18.28
-2017,Nunavut,Male,Non-Indigenous identity,,36.15
-2017,Nunavut,Female,Total,,10.87
-2017,Nunavut,Female,Indigenous identity,,12.52
-2017,Nunavut,Female,Non-Indigenous identity,,0
-2018,Canada,All genders,Indigenous identity,,7.47
-2018,Canada,All genders,Non-Indigenous identity,,1.46
-2018,Canada,Male,Total,,2.68
-2018,Canada,Male,Indigenous identity,,10.34
-2018,Canada,Male,Non-Indigenous identity,,2.25
-2018,Canada,Female,Total,,0.89
-2018,Canada,Female,Indigenous identity,,4.67
-2018,Canada,Female,Non-Indigenous identity,,0.68
-2018,Newfoundland and Labrador,All genders,Total,10,0.38
-2018,Newfoundland and Labrador,All genders,Indigenous identity,,0
-2018,Newfoundland and Labrador,All genders,Non-Indigenous identity,,0.21
-2018,Newfoundland and Labrador,Male,Total,,0.77
-2018,Newfoundland and Labrador,Male,Indigenous identity,,0
-2018,Newfoundland and Labrador,Male,Non-Indigenous identity,,0.42
-2018,Newfoundland and Labrador,Female,Total,,0
-2018,Newfoundland and Labrador,Female,Indigenous identity,,0
-2018,Newfoundland and Labrador,Female,Non-Indigenous identity,,0
-2018,Prince Edward Island,All genders,Total,11,0
-2018,Prince Edward Island,All genders,Indigenous identity,,0
-2018,Prince Edward Island,All genders,Non-Indigenous identity,,0
-2018,Prince Edward Island,Male,Total,,0
-2018,Prince Edward Island,Male,Indigenous identity,,0
-2018,Prince Edward Island,Male,Non-Indigenous identity,,0
-2018,Prince Edward Island,Female,Total,,0
-2018,Prince Edward Island,Female,Indigenous identity,,0
-2018,Prince Edward Island,Female,Non-Indigenous identity,,0
-2018,Nova Scotia,All genders,Total,12,1.16
-2018,Nova Scotia,All genders,Indigenous identity,,0
-2018,Nova Scotia,All genders,Non-Indigenous identity,,1.24
-2018,Nova Scotia,Male,Total,,1.51
-2018,Nova Scotia,Male,Indigenous identity,,0
-2018,Nova Scotia,Male,Non-Indigenous identity,,1.61
-2018,Nova Scotia,Female,Total,,0.83
-2018,Nova Scotia,Female,Indigenous identity,,0
-2018,Nova Scotia,Female,Non-Indigenous identity,,0.88
-2018,New Brunswick,All genders,Total,13,1.7
-2018,New Brunswick,All genders,Indigenous identity,,2.99
-2018,New Brunswick,All genders,Non-Indigenous identity,,1.64
-2018,New Brunswick,Male,Total,,1.32
-2018,New Brunswick,Male,Indigenous identity,,0
-2018,New Brunswick,Male,Non-Indigenous identity,,1.38
-2018,New Brunswick,Female,Total,,2.07
-2018,New Brunswick,Female,Indigenous identity,,6.05
-2018,New Brunswick,Female,Non-Indigenous identity,,1.89
-2018,Quebec,All genders,Total,24,1
-2018,Quebec,All genders,Indigenous identity,,2.31
-2018,Quebec,All genders,Non-Indigenous identity,,0.97
-2018,Quebec,Male,Total,,1.58
-2018,Quebec,Male,Indigenous identity,,2.73
-2018,Quebec,Male,Non-Indigenous identity,,1.55
-2018,Quebec,Female,Total,,0.43
-2018,Quebec,Female,Indigenous identity,,1.88
-2018,Quebec,Female,Non-Indigenous identity,,0.39
-2018,Ontario,All genders,Total,35,1.9
-2018,Ontario,All genders,Indigenous identity,,3.95
-2018,Ontario,All genders,Non-Indigenous identity,,1.83
-2018,Ontario,Male,Total,,2.81
-2018,Ontario,Male,Indigenous identity,,4.28
-2018,Ontario,Male,Non-Indigenous identity,,2.75
-2018,Ontario,Female,Total,,1.02
-2018,Ontario,Female,Indigenous identity,,3.63
-2018,Ontario,Female,Non-Indigenous identity,,0.93
-2018,Manitoba,All genders,Total,46,4.08
-2018,Manitoba,All genders,Indigenous identity,,16.02
-2018,Manitoba,All genders,Non-Indigenous identity,,1.36
-2018,Manitoba,Male,Total,,6.38
-2018,Manitoba,Male,Indigenous identity,,24.35
-2018,Manitoba,Male,Non-Indigenous identity,,2.36
-2018,Manitoba,Female,Total,,1.78
-2018,Manitoba,Female,Indigenous identity,,7.9
-2018,Manitoba,Female,Non-Indigenous identity,,0.36
-2018,Saskatchewan,All genders,Total,47,3
-2018,Saskatchewan,All genders,Indigenous identity,,11.29
-2018,Saskatchewan,All genders,Non-Indigenous identity,,1.34
-2018,Saskatchewan,Male,Total,,4.61
-2018,Saskatchewan,Male,Indigenous identity,,18.75
-2018,Saskatchewan,Male,Non-Indigenous identity,,1.84
-2018,Saskatchewan,Female,Total,,1.38
-2018,Saskatchewan,Female,Indigenous identity,,4.05
-2018,Saskatchewan,Female,Non-Indigenous identity,,0.83
-2018,Alberta,All genders,Total,48,1.85
-2018,Alberta,All genders,Indigenous identity,,10.16
-2018,Alberta,All genders,Non-Indigenous identity,,1.23
-2018,Alberta,Male,Total,,2.77
-2018,Alberta,Male,Indigenous identity,,13.76
-2018,Alberta,Male,Non-Indigenous identity,,1.94
-2018,Alberta,Female,Total,,0.92
-2018,Alberta,Female,Indigenous identity,,6.67
-2018,Alberta,Female,Non-Indigenous identity,,0.5
-2018,British Columbia,All genders,Total,59,1.8
-2018,British Columbia,All genders,Indigenous identity,,3.93
-2018,British Columbia,All genders,Non-Indigenous identity,,1.67
-2018,British Columbia,Male,Total,,2.92
-2018,British Columbia,Male,Indigenous identity,,4.69
-2018,British Columbia,Male,Non-Indigenous identity,,2.81
-2018,British Columbia,Female,Total,,0.71
-2018,British Columbia,Female,Indigenous identity,,3.21
-2018,British Columbia,Female,Non-Indigenous identity,,0.55
-2018,Yukon,All genders,Total,60,7.63
-2018,Yukon,All genders,Indigenous identity,,22.22
-2018,Yukon,All genders,Non-Indigenous identity,,3.3
-2018,Yukon,Male,Total,,10.01
-2018,Yukon,Male,Indigenous identity,,22.73
-2018,Yukon,Male,Non-Indigenous identity,,6.42
-2018,Yukon,Female,Total,,5.17
-2018,Yukon,Female,Indigenous identity,,21.73
-2018,Yukon,Female,Non-Indigenous identity,,0
-2018,Northwest Territories,All genders,Total,61,13.27
-2018,Northwest Territories,All genders,Indigenous identity,,21.96
-2018,Northwest Territories,All genders,Non-Indigenous identity,,4.46
-2018,Northwest Territories,Male,Total,,26
-2018,Northwest Territories,Male,Indigenous identity,,43.89
-2018,Northwest Territories,Male,Non-Indigenous identity,,8.56
-2018,Northwest Territories,Female,Total,,0
-2018,Northwest Territories,Female,Indigenous identity,,0
-2018,Northwest Territories,Female,Non-Indigenous identity,,0
-2018,Nunavut,All genders,Total,62,20.96
-2018,Nunavut,All genders,Indigenous identity,,24.22
-2018,Nunavut,All genders,Non-Indigenous identity,,0
-2018,Nunavut,Male,Total,,20.56
-2018,Nunavut,Male,Indigenous identity,,23.92
-2018,Nunavut,Male,Non-Indigenous identity,,0
-2018,Nunavut,Female,Total,,21.39
-2018,Nunavut,Female,Indigenous identity,,24.53
-2018,Nunavut,Female,Non-Indigenous identity,,0
-2019,Canada,All genders,Indigenous identity,,9.17
-2019,Canada,All genders,Non-Indigenous identity,,1.34
-2019,Canada,Male,Total,,2.82
-2019,Canada,Male,Indigenous identity,,13.6
-2019,Canada,Male,Non-Indigenous identity,,2.13
-2019,Canada,Female,Total,,0.82
-2019,Canada,Female,Indigenous identity,,4.76
-2019,Canada,Female,Non-Indigenous identity,,0.56
-2019,Newfoundland and Labrador,All genders,Total,10,0.96
-2019,Newfoundland and Labrador,All genders,Indigenous identity,,3.95
-2019,Newfoundland and Labrador,All genders,Non-Indigenous identity,,0.64
-2019,Newfoundland and Labrador,Male,Total,,1.16
-2019,Newfoundland and Labrador,Male,Indigenous identity,,4.03
-2019,Newfoundland and Labrador,Male,Non-Indigenous identity,,0.85
-2019,Newfoundland and Labrador,Female,Total,,0.76
-2019,Newfoundland and Labrador,Female,Indigenous identity,,3.87
-2019,Newfoundland and Labrador,Female,Non-Indigenous identity,,0.42
-2019,Prince Edward Island,All genders,Total,11,1.31
-2019,Prince Edward Island,All genders,Indigenous identity,,0
-2019,Prince Edward Island,All genders,Non-Indigenous identity,,1.34
-2019,Prince Edward Island,Male,Total,,2.67
-2019,Prince Edward Island,Male,Indigenous identity,,0
-2019,Prince Edward Island,Male,Non-Indigenous identity,,2.73
-2019,Prince Edward Island,Female,Total,,0
-2019,Prince Edward Island,Female,Indigenous identity,,0
-2019,Prince Edward Island,Female,Non-Indigenous identity,,0
-2019,Nova Scotia,All genders,Total,12,0.63
-2019,Nova Scotia,All genders,Indigenous identity,,3.26
-2019,Nova Scotia,All genders,Non-Indigenous identity,,0.34
-2019,Nova Scotia,Male,Total,,0.86
-2019,Nova Scotia,Male,Indigenous identity,,3.31
-2019,Nova Scotia,Male,Non-Indigenous identity,,0.69
-2019,Nova Scotia,Female,Total,,0.41
-2019,Nova Scotia,Female,Indigenous identity,,3.2
-2019,Nova Scotia,Female,Non-Indigenous identity,,0
-2019,New Brunswick,All genders,Total,13,2.22
-2019,New Brunswick,All genders,Indigenous identity,,2.9
-2019,New Brunswick,All genders,Non-Indigenous identity,,2.19
-2019,New Brunswick,Male,Total,,3.17
-2019,New Brunswick,Male,Indigenous identity,,5.75
-2019,New Brunswick,Male,Non-Indigenous identity,,3.04
-2019,New Brunswick,Female,Total,,1.29
-2019,New Brunswick,Female,Indigenous identity,,0
-2019,New Brunswick,Female,Non-Indigenous identity,,1.35
-2019,Quebec,All genders,Total,24,0.91
-2019,Quebec,All genders,Indigenous identity,,4.04
-2019,Quebec,All genders,Non-Indigenous identity,,0.8
-2019,Quebec,Male,Total,,1.3
-2019,Quebec,Male,Indigenous identity,,4.42
-2019,Quebec,Male,Non-Indigenous identity,,1.19
-2019,Quebec,Female,Total,,0.49
-2019,Quebec,Female,Indigenous identity,,3.65
-2019,Quebec,Female,Non-Indigenous identity,,0.41
-2019,Ontario,All genders,Total,35,1.74
-2019,Ontario,All genders,Indigenous identity,,5.87
-2019,Ontario,All genders,Non-Indigenous identity,,1.51
-2019,Ontario,Male,Total,,2.68
-2019,Ontario,Male,Indigenous identity,,7.38
-2019,Ontario,Male,Non-Indigenous identity,,2.42
-2019,Ontario,Female,Total,,0.79
-2019,Ontario,Female,Indigenous identity,,3.98
-2019,Ontario,Female,Non-Indigenous identity,,0.63
-2019,Manitoba,All genders,Total,46,5.27
-2019,Manitoba,All genders,Indigenous identity,,16.44
-2019,Manitoba,All genders,Non-Indigenous identity,,1.98
-2019,Manitoba,Male,Total,,9.08
-2019,Manitoba,Male,Indigenous identity,,29.35
-2019,Manitoba,Male,Non-Indigenous identity,,3.41
-2019,Manitoba,Female,Total,,1.46
-2019,Manitoba,Female,Indigenous identity,,3.87
-2019,Manitoba,Female,Non-Indigenous identity,,0.54
-2019,Saskatchewan,All genders,Total,47,4.65
-2019,Saskatchewan,All genders,Indigenous identity,,18.62
-2019,Saskatchewan,All genders,Non-Indigenous identity,,1.32
-2019,Saskatchewan,Male,Total,,7.39
-2019,Saskatchewan,Male,Indigenous identity,,29.62
-2019,Saskatchewan,Male,Non-Indigenous identity,,2.41
-2019,Saskatchewan,Female,Total,,1.7
-2019,Saskatchewan,Female,Indigenous identity,,7.94
-2019,Saskatchewan,Female,Non-Indigenous identity,,0.21
-2019,Alberta,All genders,Total,48,2.24
-2019,Alberta,All genders,Indigenous identity,,11.53
-2019,Alberta,All genders,Non-Indigenous identity,,1.56
-2019,Alberta,Male,Total,,3.33
-2019,Alberta,Male,Indigenous identity,,15.38
-2019,Alberta,Male,Non-Indigenous identity,,2.48
-2019,Alberta,Female,Total,,1.13
-2019,Alberta,Female,Indigenous identity,,7.79
-2019,Alberta,Female,Non-Indigenous identity,,0.63
-2019,British Columbia,All genders,Total,59,1.78
-2019,British Columbia,All genders,Indigenous identity,,4.8
-2019,British Columbia,All genders,Non-Indigenous identity,,1.56
-2019,British Columbia,Male,Total,,2.87
-2019,British Columbia,Male,Indigenous identity,,7.84
-2019,British Columbia,Male,Non-Indigenous identity,,2.51
-2019,British Columbia,Female,Total,,0.7
-2019,British Columbia,Female,Indigenous identity,,1.88
-2019,British Columbia,Female,Non-Indigenous identity,,0.62
-2019,Yukon,All genders,Total,60,2.52
-2019,Yukon,All genders,Indigenous identity,,11.07
-2019,Yukon,All genders,Non-Indigenous identity,,0
-2019,Yukon,Male,Total,,0
-2019,Yukon,Male,Indigenous identity,,0
-2019,Yukon,Male,Non-Indigenous identity,,0
-2019,Yukon,Female,Total,,5.11
-2019,Yukon,Female,Indigenous identity,,21.71
-2019,Yukon,Female,Non-Indigenous identity,,0
-2019,Northwest Territories,All genders,Total,61,4.4
-2019,Northwest Territories,All genders,Indigenous identity,,8.74
-2019,Northwest Territories,All genders,Non-Indigenous identity,,0
-2019,Northwest Territories,Male,Total,,8.64
-2019,Northwest Territories,Male,Indigenous identity,,17.49
-2019,Northwest Territories,Male,Non-Indigenous identity,,0
-2019,Northwest Territories,Female,Total,,0
-2019,Northwest Territories,Female,Indigenous identity,,0
-2019,Northwest Territories,Female,Non-Indigenous identity,,0
-2019,Nunavut,All genders,Total,62,18.06
-2019,Nunavut,All genders,Indigenous identity,,20.8
-2019,Nunavut,All genders,Non-Indigenous identity,,0
-2019,Nunavut,Male,Total,,20.3
-2019,Nunavut,Male,Indigenous identity,,23.5
-2019,Nunavut,Male,Non-Indigenous identity,,0
-2019,Nunavut,Female,Total,,15.74
-2019,Nunavut,Female,Indigenous identity,,18.04
-2019,Nunavut,Female,Non-Indigenous identity,,0
-2020,Canada,All genders,Indigenous identity,,10.05
-2020,Canada,All genders,Non-Indigenous identity,,1.42
-2020,Canada,Male,Total,,3.01
-2020,Canada,Male,Indigenous identity,,16.5
-2020,Canada,Male,Non-Indigenous identity,,2.14
-2020,Canada,Female,Total,,0.89
-2020,Canada,Female,Indigenous identity,,3.76
-2020,Canada,Female,Non-Indigenous identity,,0.69
-2020,Newfoundland and Labrador,All genders,Total,10,0.77
-2020,Newfoundland and Labrador,All genders,Indigenous identity,,1.94
-2020,Newfoundland and Labrador,All genders,Non-Indigenous identity,,0.21
-2020,Newfoundland and Labrador,Male,Total,,1.55
-2020,Newfoundland and Labrador,Male,Indigenous identity,,3.96
-2020,Newfoundland and Labrador,Male,Non-Indigenous identity,,0.43
-2020,Newfoundland and Labrador,Female,Total,,0
-2020,Newfoundland and Labrador,Female,Indigenous identity,,0
-2020,Newfoundland and Labrador,Female,Non-Indigenous identity,,0
-2020,Prince Edward Island,All genders,Total,11,0.65
-2020,Prince Edward Island,All genders,Indigenous identity,,0
-2020,Prince Edward Island,All genders,Non-Indigenous identity,,0.66
-2020,Prince Edward Island,Male,Total,,0
-2020,Prince Edward Island,Male,Indigenous identity,,0
-2020,Prince Edward Island,Male,Non-Indigenous identity,,0
-2020,Prince Edward Island,Female,Total,,1.28
-2020,Prince Edward Island,Female,Indigenous identity,,0
-2020,Prince Edward Island,Female,Non-Indigenous identity,,1.31
-2020,Nova Scotia,All genders,Total,12,3.67
-2020,Nova Scotia,All genders,Indigenous identity,,1.57
-2020,Nova Scotia,All genders,Non-Indigenous identity,,3.6
-2020,Nova Scotia,Male,Total,,4.06
-2020,Nova Scotia,Male,Indigenous identity,,0
-2020,Nova Scotia,Male,Non-Indigenous identity,,4.12
-2020,Nova Scotia,Female,Total,,3.3
-2020,Nova Scotia,Female,Indigenous identity,,3.09
-2020,Nova Scotia,Female,Non-Indigenous identity,,3.09
-2020,New Brunswick,All genders,Total,13,1.83
-2020,New Brunswick,All genders,Indigenous identity,,5.64
-2020,New Brunswick,All genders,Non-Indigenous identity,,1.65
-2020,New Brunswick,Male,Total,,2.91
-2020,New Brunswick,Male,Indigenous identity,,11.2
-2020,New Brunswick,Male,Non-Indigenous identity,,2.5
-2020,New Brunswick,Female,Total,,0.78
-2020,New Brunswick,Female,Indigenous identity,,0
-2020,New Brunswick,Female,Non-Indigenous identity,,0.81
-2020,Quebec,All genders,Total,24,1.02
-2020,Quebec,All genders,Indigenous identity,,4.8
-2020,Quebec,All genders,Non-Indigenous identity,,0.9
-2020,Quebec,Male,Total,,1.48
-2020,Quebec,Male,Indigenous identity,,7.73
-2020,Quebec,Male,Non-Indigenous identity,,1.28
-2020,Quebec,Female,Total,,0.56
-2020,Quebec,Female,Indigenous identity,,1.77
-2020,Quebec,Female,Non-Indigenous identity,,0.53
-2020,Ontario,All genders,Total,35,1.59
-2020,Ontario,All genders,Indigenous identity,,5.05
-2020,Ontario,All genders,Non-Indigenous identity,,1.35
-2020,Ontario,Male,Total,,2.42
-2020,Ontario,Male,Indigenous identity,,8.51
-2020,Ontario,Male,Non-Indigenous identity,,2.07
-2020,Ontario,Female,Total,,0.75
-2020,Ontario,Female,Indigenous identity,,1.72
-2020,Ontario,Female,Non-Indigenous identity,,0.64
-2020,Manitoba,All genders,Total,46,4.51
-2020,Manitoba,All genders,Indigenous identity,,15.32
-2020,Manitoba,All genders,Non-Indigenous identity,,1.26
-2020,Manitoba,Male,Total,,7.57
-2020,Manitoba,Male,Indigenous identity,,24.83
-2020,Manitoba,Male,Non-Indigenous identity,,2.33
-2020,Manitoba,Female,Total,,1.45
-2020,Manitoba,Female,Indigenous identity,,6.05
-2020,Manitoba,Female,Non-Indigenous identity,,0.18
-2020,Saskatchewan,All genders,Total,47,5.02
-2020,Saskatchewan,All genders,Indigenous identity,,22.74
-2020,Saskatchewan,All genders,Non-Indigenous identity,,1.31
-2020,Saskatchewan,Male,Total,,7.99
-2020,Saskatchewan,Male,Indigenous identity,,37.11
-2020,Saskatchewan,Male,Non-Indigenous identity,,1.99
-2020,Saskatchewan,Female,Total,,2.02
-2020,Saskatchewan,Female,Indigenous identity,,8.77
-2020,Saskatchewan,Female,Non-Indigenous identity,,0.61
-2020,Alberta,All genders,Total,48,3.06
-2020,Alberta,All genders,Indigenous identity,,18.29
-2020,Alberta,All genders,Non-Indigenous identity,,1.94
-2020,Alberta,Male,Total,,5.11
-2020,Alberta,Male,Indigenous identity,,31.87
-2020,Alberta,Male,Non-Indigenous identity,,3.18
-2020,Alberta,Female,Total,,0.93
-2020,Alberta,Female,Indigenous identity,,5.07
-2020,Alberta,Female,Non-Indigenous identity,,0.62
-2020,British Columbia,All genders,Total,59,1.92
-2020,British Columbia,All genders,Indigenous identity,,4.07
-2020,British Columbia,All genders,Non-Indigenous identity,,1.78
-2020,British Columbia,Male,Total,,2.89
-2020,British Columbia,Male,Indigenous identity,,6.38
-2020,British Columbia,Male,Non-Indigenous identity,,2.66
-2020,British Columbia,Female,Total,,0.93
-2020,British Columbia,Female,Indigenous identity,,1.84
-2020,British Columbia,Female,Non-Indigenous identity,,0.87
-2020,Yukon,All genders,Total,60,0
-2020,Yukon,All genders,Indigenous identity,,0
-2020,Yukon,All genders,Non-Indigenous identity,,0
-2020,Yukon,Male,Total,,0
-2020,Yukon,Male,Indigenous identity,,0
-2020,Yukon,Male,Non-Indigenous identity,,0
-2020,Yukon,Female,Total,,0
-2020,Yukon,Female,Indigenous identity,,0
-2020,Yukon,Female,Non-Indigenous identity,,0
-2020,Northwest Territories,All genders,Total,61,13.11
-2020,Northwest Territories,All genders,Indigenous identity,,17.42
-2020,Northwest Territories,All genders,Non-Indigenous identity,,8.77
-2020,Northwest Territories,Male,Total,,12.92
-2020,Northwest Territories,Male,Indigenous identity,,17.45
-2020,Northwest Territories,Male,Non-Indigenous identity,,8.5
-2020,Northwest Territories,Female,Total,,13.31
-2020,Northwest Territories,Female,Indigenous identity,,17.39
-2020,Northwest Territories,Female,Non-Indigenous identity,,9.06
-2020,Nunavut,All genders,Total,62,7.63
-2020,Nunavut,All genders,Indigenous identity,,8.76
-2020,Nunavut,All genders,Non-Indigenous identity,,0
-2020,Nunavut,Male,Total,,10.02
-2020,Nunavut,Male,Indigenous identity,,11.55
-2020,Nunavut,Male,Non-Indigenous identity,,0
-2020,Nunavut,Female,Total,,5.16
-2020,Nunavut,Female,Indigenous identity,,5.91
-2020,Nunavut,Female,Non-Indigenous identity,,0
diff --git a/tests/assets/progress-calculation/data/temp/indicator_16-1-3.csv b/tests/assets/progress-calculation/data/temp/indicator_16-1-3.csv
deleted file mode 100644
index 4fa55281..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_16-1-3.csv
+++ /dev/null
@@ -1,6 +0,0 @@
-Year,Value
-1999,111
-2004,106
-2009,118
-2014,76
-2019,83
diff --git a/tests/assets/progress-calculation/data/temp/indicator_16-2-3.csv b/tests/assets/progress-calculation/data/temp/indicator_16-2-3.csv
deleted file mode 100644
index 89bfc2a1..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_16-2-3.csv
+++ /dev/null
@@ -1,4 +0,0 @@
-Year,Sex,Value
-2014,,8
-2014,Men,4
-2014,Women,12
diff --git a/tests/assets/progress-calculation/data/temp/indicator_16-3-1.csv b/tests/assets/progress-calculation/data/temp/indicator_16-3-1.csv
deleted file mode 100644
index 1035a0be..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_16-3-1.csv
+++ /dev/null
@@ -1,6 +0,0 @@
-Year,Value
-1999,37
-2004,34
-2009,31
-2014,31
-2019,29
diff --git a/tests/assets/progress-calculation/data/temp/indicator_17-1-2.csv b/tests/assets/progress-calculation/data/temp/indicator_17-1-2.csv
deleted file mode 100644
index 950106f5..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_17-1-2.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-Year,Geography,Public sector components,GeoCode,Value
-2015,,,,78.16
-2016,,,,78.52
-2017,,,,78.69
-2018,,,,78.27
-2019,,,,78.37
-2020,,,,79.01
-2015,Canada,Consolidated provincial-territorial and local governments,,60.99
-2015,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,56.77
-2015,Prince Edward Island,Consolidated provincial-territorial and local governments,11,52.03
-2015,Nova Scotia,Consolidated provincial-territorial and local governments,12,54.23
-2015,New Brunswick,Consolidated provincial-territorial and local governments,13,51.08
-2015,Quebec,Consolidated provincial-territorial and local governments,24,62.23
-2015,Ontario,Consolidated provincial-territorial and local governments,35,65.97
-2015,Manitoba,Consolidated provincial-territorial and local governments,46,58.53
-2015,Saskatchewan,Consolidated provincial-territorial and local governments,47,55.12
-2015,Alberta,Consolidated provincial-territorial and local governments,48,56.66
-2015,British Columbia,Consolidated provincial-territorial and local governments,59,58.12
-2015,Yukon,Consolidated provincial-territorial and local governments,60,11.68
-2015,Northwest Territories,Consolidated provincial-territorial and local governments,61,14.88
-2015,Nunavut,Consolidated provincial-territorial and local governments,62,5.72
-2016,Canada,Consolidated provincial-territorial and local governments,,60.83
-2016,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,55.85
-2016,Prince Edward Island,Consolidated provincial-territorial and local governments,11,49.76
-2016,Nova Scotia,Consolidated provincial-territorial and local governments,12,53.92
-2016,New Brunswick,Consolidated provincial-territorial and local governments,13,51.02
-2016,Quebec,Consolidated provincial-territorial and local governments,24,61.81
-2016,Ontario,Consolidated provincial-territorial and local governments,35,66.12
-2016,Manitoba,Consolidated provincial-territorial and local governments,46,57.67
-2016,Saskatchewan,Consolidated provincial-territorial and local governments,47,52.9
-2016,Alberta,Consolidated provincial-territorial and local governments,48,54.66
-2016,British Columbia,Consolidated provincial-territorial and local governments,59,59.87
-2016,Yukon,Consolidated provincial-territorial and local governments,60,12.65
-2016,Northwest Territories,Consolidated provincial-territorial and local governments,61,17.01
-2016,Nunavut,Consolidated provincial-territorial and local governments,62,5.64
-2017,Canada,Consolidated provincial-territorial and local governments,,61.12
-2017,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,58.27
-2017,Prince Edward Island,Consolidated provincial-territorial and local governments,11,51.78
-2017,Nova Scotia,Consolidated provincial-territorial and local governments,12,52.17
-2017,New Brunswick,Consolidated provincial-territorial and local governments,13,51.27
-2017,Quebec,Consolidated provincial-territorial and local governments,24,61.2
-2017,Ontario,Consolidated provincial-territorial and local governments,35,67.5
-2017,Manitoba,Consolidated provincial-territorial and local governments,46,58.11
-2017,Saskatchewan,Consolidated provincial-territorial and local governments,47,54.28
-2017,Alberta,Consolidated provincial-territorial and local governments,48,53.54
-2017,British Columbia,Consolidated provincial-territorial and local governments,59,59.7
-2017,Yukon,Consolidated provincial-territorial and local governments,60,12.42
-2017,Northwest Territories,Consolidated provincial-territorial and local governments,61,14.34
-2017,Nunavut,Consolidated provincial-territorial and local governments,62,5.52
-2018,Canada,Consolidated provincial-territorial and local governments,,60.45
-2018,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,54.48
-2018,Prince Edward Island,Consolidated provincial-territorial and local governments,11,50.73
-2018,Nova Scotia,Consolidated provincial-territorial and local governments,12,52.4
-2018,New Brunswick,Consolidated provincial-territorial and local governments,13,50.65
-2018,Quebec,Consolidated provincial-territorial and local governments,24,60.21
-2018,Ontario,Consolidated provincial-territorial and local governments,35,66.42
-2018,Manitoba,Consolidated provincial-territorial and local governments,46,56.82
-2018,Saskatchewan,Consolidated provincial-territorial and local governments,47,54.8
-2018,Alberta,Consolidated provincial-territorial and local governments,48,53.89
-2018,British Columbia,Consolidated provincial-territorial and local governments,59,60.04
-2018,Yukon,Consolidated provincial-territorial and local governments,60,13.39
-2018,Northwest Territories,Consolidated provincial-territorial and local governments,61,14.57
-2018,Nunavut,Consolidated provincial-territorial and local governments,62,6.75
-2019,Canada,Consolidated provincial-territorial and local governments,,60.18
-2019,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,43.36
-2019,Prince Edward Island,Consolidated provincial-territorial and local governments,11,49.09
-2019,Nova Scotia,Consolidated provincial-territorial and local governments,12,52.75
-2019,New Brunswick,Consolidated provincial-territorial and local governments,13,49.83
-2019,Quebec,Consolidated provincial-territorial and local governments,24,60.25
-2019,Ontario,Consolidated provincial-territorial and local governments,35,67.37
-2019,Manitoba,Consolidated provincial-territorial and local governments,46,55.55
-2019,Saskatchewan,Consolidated provincial-territorial and local governments,47,54.72
-2019,Alberta,Consolidated provincial-territorial and local governments,48,50.59
-2019,British Columbia,Consolidated provincial-territorial and local governments,59,60.33
-2019,Yukon,Consolidated provincial-territorial and local governments,60,12.8
-2019,Northwest Territories,Consolidated provincial-territorial and local governments,61,14.23
-2019,Nunavut,Consolidated provincial-territorial and local governments,62,6.68
-2020,Canada,Consolidated provincial-territorial and local governments,,58.26
-2020,Newfoundland and Labrador,Consolidated provincial-territorial and local governments,10,58.27
-2020,Prince Edward Island,Consolidated provincial-territorial and local governments,11,47.17
-2020,Nova Scotia,Consolidated provincial-territorial and local governments,12,49.95
-2020,New Brunswick,Consolidated provincial-territorial and local governments,13,48.52
-2020,Quebec,Consolidated provincial-territorial and local governments,24,59.03
-2020,Ontario,Consolidated provincial-territorial and local governments,35,64.48
-2020,Manitoba,Consolidated provincial-territorial and local governments,46,52.5
-2020,Saskatchewan,Consolidated provincial-territorial and local governments,47,51.31
-2020,Alberta,Consolidated provincial-territorial and local governments,48,49.84
-2020,British Columbia,Consolidated provincial-territorial and local governments,59,56.24
-2020,Yukon,Consolidated provincial-territorial and local governments,60,12.08
-2020,Northwest Territories,Consolidated provincial-territorial and local governments,61,13.09
-2020,Nunavut,Consolidated provincial-territorial and local governments,62,6.47
diff --git a/tests/assets/progress-calculation/data/temp/indicator_17-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_17-2-1.csv
deleted file mode 100644
index e72e7b1c..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_17-2-1.csv
+++ /dev/null
@@ -1,4 +0,0 @@
-Year,Unit,Value
-2018,"Net official development assistance, total, as a proportion of the OECD Development Assistance Committee donors' gross national income (GNI)",0.277
-2019,"Net official development assistance, total, as a proportion of the OECD Development Assistance Committee donors' gross national income (GNI)",0.275
-2020,"Net official development assistance, total, as a proportion of the OECD Development Assistance Committee donors' gross national income (GNI)",0.31
diff --git a/tests/assets/progress-calculation/data/temp/indicator_17-3-2.csv b/tests/assets/progress-calculation/data/temp/indicator_17-3-2.csv
deleted file mode 100644
index 65bf8e28..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_17-3-2.csv
+++ /dev/null
@@ -1,2 +0,0 @@
-Year,Value
-2017,5.2
diff --git a/tests/assets/progress-calculation/data/temp/indicator_17-8-1.csv b/tests/assets/progress-calculation/data/temp/indicator_17-8-1.csv
deleted file mode 100644
index c31e92dd..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_17-8-1.csv
+++ /dev/null
@@ -1,111 +0,0 @@
-Year,Geography,Age group,GeoCode,Value
-2018,,,NA,91.3
-2020,,,NA,92.3
-2018,Canada,15 to 24 years,NA,98.6
-2018,Canada,25 to 44 years,NA,98.2
-2018,Canada,45 to 64 years,NA,93.9
-2018,Canada,65 years and over,NA,71.2
-2018,Newfoundland and Labrador,"Total, 15 years and over",10,86
-2018,Newfoundland and Labrador,15 to 24 years,NA,92.5
-2018,Newfoundland and Labrador,25 to 44 years,NA,97
-2018,Newfoundland and Labrador,45 to 64 years,NA,89.4
-2018,Newfoundland and Labrador,65 years and over,NA,64.7
-2018,Prince Edward Island,"Total, 15 years and over",11,88.5
-2018,Prince Edward Island,15 to 24 years,NA,100
-2018,Prince Edward Island,25 to 44 years,NA,98.7
-2018,Prince Edward Island,45 to 64 years,NA,88.1
-2018,Prince Edward Island,65 years and over,NA,69
-2018,Nova Scotia,"Total, 15 years and over",12,88.5
-2018,Nova Scotia,15 to 24 years,NA,100
-2018,Nova Scotia,25 to 44 years,NA,98.3
-2018,Nova Scotia,45 to 64 years,NA,89.4
-2018,Nova Scotia,65 years and over,NA,68.2
-2018,New Brunswick,"Total, 15 years and over",13,89.2
-2018,New Brunswick,15 to 24 years,NA,100
-2018,New Brunswick,25 to 44 years,NA,98.1
-2018,New Brunswick,45 to 64 years,NA,91.7
-2018,New Brunswick,65 years and over,NA,69.3
-2018,Quebec,"Total, 15 years and over",24,88
-2018,Quebec,15 to 24 years,NA,100
-2018,Quebec,25 to 44 years,NA,97.9
-2018,Quebec,45 to 64 years,NA,91.3
-2018,Quebec,65 years and over,NA,62.1
-2018,Ontario,"Total, 15 years and over",35,92.2
-2018,Ontario,15 to 24 years,NA,97.9
-2018,Ontario,25 to 44 years,NA,98.4
-2018,Ontario,45 to 64 years,NA,95.2
-2018,Ontario,65 years and over,NA,72.8
-2018,Manitoba,"Total, 15 years and over",46,91.2
-2018,Manitoba,15 to 24 years,NA,99.5
-2018,Manitoba,25 to 44 years,NA,97.2
-2018,Manitoba,45 to 64 years,NA,92.8
-2018,Manitoba,65 years and over,NA,70.2
-2018,Saskatchewan,"Total, 15 years and over",47,89.9
-2018,Saskatchewan,15 to 24 years,NA,100
-2018,Saskatchewan,25 to 44 years,NA,97.5
-2018,Saskatchewan,45 to 64 years,NA,91.5
-2018,Saskatchewan,65 years and over,NA,64.3
-2018,Alberta,"Total, 15 years and over",48,94.1
-2018,Alberta,15 to 24 years,NA,100
-2018,Alberta,25 to 44 years,NA,97.3
-2018,Alberta,45 to 64 years,NA,94.8
-2018,Alberta,65 years and over,NA,79.5
-2018,British Columbia,"Total, 15 years and over",59,94
-2018,British Columbia,15 to 24 years,NA,96.7
-2018,British Columbia,25 to 44 years,NA,99.3
-2018,British Columbia,45 to 64 years,NA,96.5
-2018,British Columbia,65 years and over,NA,81.1
-2020,Canada,15 to 24 years,NA,98
-2020,Canada,25 to 44 years,NA,98.2
-2020,Canada,45 to 64 years,NA,94.2
-2020,Canada,65 years and over,NA,76.3
-2020,Newfoundland and Labrador,"Total, 15 years and over",10,89.8
-2020,Newfoundland and Labrador,15 to 24 years,NA,100
-2020,Newfoundland and Labrador,25 to 44 years,NA,99.7
-2020,Newfoundland and Labrador,45 to 64 years,NA,92.9
-2020,Newfoundland and Labrador,65 years and over,NA,70.9
-2020,Prince Edward Island,"Total, 15 years and over",11,91.3
-2020,Prince Edward Island,15 to 24 years,NA,96.3
-2020,Prince Edward Island,25 to 44 years,NA,98.5
-2020,Prince Edward Island,45 to 64 years,NA,94.7
-2020,Prince Edward Island,65 years and over,NA,74.5
-2020,Nova Scotia,"Total, 15 years and over",12,90.8
-2020,Nova Scotia,15 to 24 years,NA,95.1
-2020,Nova Scotia,25 to 44 years,NA,97.4
-2020,Nova Scotia,45 to 64 years,NA,93.6
-2020,Nova Scotia,65 years and over,NA,76.9
-2020,New Brunswick,"Total, 15 years and over",13,90.7
-2020,New Brunswick,15 to 24 years,NA,100
-2020,New Brunswick,25 to 44 years,NA,99
-2020,New Brunswick,45 to 64 years,NA,93.1
-2020,New Brunswick,65 years and over,NA,73.8
-2020,Quebec,"Total, 15 years and over",24,87.1
-2020,Quebec,15 to 24 years,NA,94.6
-2020,Quebec,25 to 44 years,NA,98.5
-2020,Quebec,45 to 64 years,NA,89.3
-2020,Quebec,65 years and over,NA,64.4
-2020,Ontario,"Total, 15 years and over",35,94.1
-2020,Ontario,15 to 24 years,NA,98.8
-2020,Ontario,25 to 44 years,NA,98.2
-2020,Ontario,45 to 64 years,NA,96.1
-2020,Ontario,65 years and over,NA,81
-2020,Manitoba,"Total, 15 years and over",46,91.3
-2020,Manitoba,15 to 24 years,NA,95.3
-2020,Manitoba,25 to 44 years,NA,97.4
-2020,Manitoba,45 to 64 years,NA,91.7
-2020,Manitoba,65 years and over,NA,76.5
-2020,Saskatchewan,"Total, 15 years and over",47,91.4
-2020,Saskatchewan,15 to 24 years,NA,99
-2020,Saskatchewan,25 to 44 years,NA,97.2
-2020,Saskatchewan,45 to 64 years,NA,93.2
-2020,Saskatchewan,65 years and over,NA,72.6
-2020,Alberta,"Total, 15 years and over",48,95.2
-2020,Alberta,15 to 24 years,NA,100
-2020,Alberta,25 to 44 years,NA,97.6
-2020,Alberta,45 to 64 years,NA,96.8
-2020,Alberta,65 years and over,NA,83
-2020,British Columbia,"Total, 15 years and over",59,94.2
-2020,British Columbia,15 to 24 years,NA,99.5
-2020,British Columbia,25 to 44 years,NA,98.9
-2020,British Columbia,45 to 64 years,NA,95.9
-2020,British Columbia,65 years and over,NA,81.8
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-1-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-1-1.csv
deleted file mode 100644
index 85452eec..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-1-1.csv
+++ /dev/null
@@ -1,6 +0,0 @@
-Year,Value
-2015,7.060817171907362
-2016,6.264650145392089
-2017,6.625886543619536
-2018,8.555028886589724
-2019,7.526112923948628
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-2-1.csv
deleted file mode 100644
index fc2097f6..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-2-1.csv
+++ /dev/null
@@ -1,68 +0,0 @@
-Year,Geography,GeoCode,Value
-2015,,,5.3
-2015,Newfoundland and Labrador,10,4.91
-2015,Prince Edward Island,11,3.03
-2015,Nova Scotia,12,4.46
-2015,New Brunswick,13,4.82
-2015,Quebec,24,5.62
-2015,Ontario,35,5.03
-2015,Manitoba,46,7.47
-2015,Saskatchewan,47,6.58
-2015,Alberta,48,5.55
-2015,British Columbia,59,3.97
-2015,Yukon,60,9.62
-2015,Northwest Territories,61,5.32
-2015,Nunavut,62,27.46
-2016,,,5.29
-2016,Newfoundland and Labrador,10,4.7
-2016,Prince Edward Island,11,7.28
-2016,Nova Scotia,12,5.7
-2016,New Brunswick,13,5.69
-2016,Quebec,24,5
-2016,Ontario,35,5.32
-2016,Manitoba,46,6.61
-2016,Saskatchewan,47,7.13
-2016,Alberta,48,5.26
-2016,British Columbia,59,4.1
-2016,Yukon,60,7.19
-2016,Northwest Territories,61,7.08
-2016,Nunavut,62,39.56
-2017,,,5.16
-2017,Newfoundland and Labrador,10,4.88
-2017,Prince Edward Island,11,3.05
-2017,Nova Scotia,12,4.43
-2017,New Brunswick,13,3.21
-2017,Quebec,24,4.44
-2017,Ontario,35,5.3
-2017,Manitoba,46,8.17
-2017,Saskatchewan,47,7.37
-2017,Alberta,48,5.71
-2017,British Columbia,59,3.75
-2017,Northwest Territories,61,4.21
-2017,Nunavut,62,22.78
-2018,,,5.36
-2018,Newfoundland and Labrador,10,5.72
-2018,Prince Edward Island,11,5.46
-2018,Nova Scotia,12,4.23
-2018,New Brunswick,13,3.76
-2018,Quebec,24,4.56
-2018,Ontario,35,5.21
-2018,Manitoba,46,7.53
-2018,Saskatchewan,47,6.75
-2018,Alberta,48,6.34
-2018,British Columbia,59,4.62
-2018,Northwest Territories,61,8.16
-2018,Nunavut,62,63.41
-2019,,,5.07
-2019,Newfoundland and Labrador,10,5.04
-2019,Prince Edward Island,11,3.84
-2019,Nova Scotia,12,6
-2019,New Brunswick,13,4.59
-2019,Quebec,24,4.66
-2019,Ontario,35,5.09
-2019,Manitoba,46,6.64
-2019,Saskatchewan,47,7.16
-2019,Alberta,48,5.19
-2019,British Columbia,59,3.92
-2019,Northwest Territories,61,1.59
-2019,Nunavut,62,44.74
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-2-2.csv b/tests/assets/progress-calculation/data/temp/indicator_3-2-2.csv
deleted file mode 100644
index 72f3ea8f..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-2-2.csv
+++ /dev/null
@@ -1,361 +0,0 @@
-Year,Age,Sex,Value
-2015,,,4.5
-2016,,,4.5
-2017,,,4.5
-2018,,,4.7
-2019,,,4.4
-2015,Total infant deaths under 1 year,Males,4.8
-2015,Total infant deaths under 1 year,Females,4.3
-2015,Neonatal 0 to 27 days,Both sexes,3.5
-2015,Neonatal 0 to 27 days,Males,3.7
-2015,Neonatal 0 to 27 days,Females,3.4
-2015,Neonatal under 1 day,Both sexes,2.5
-2015,Neonatal under 1 day,Males,2.5
-2015,Neonatal under 1 day,Females,2.4
-2015,Neonatal 1 day,Both sexes,0.1
-2015,Neonatal 1 day,Males,0.1
-2015,Neonatal 1 day,Females,0.1
-2015,Neonatal 2 days,Both sexes,0.1
-2015,Neonatal 2 days,Males,0.1
-2015,Neonatal 2 days,Females,0.1
-2015,Neonatal 3 days,Both sexes,0.1
-2015,Neonatal 3 days,Males,0.1
-2015,Neonatal 3 days,Females,0.1
-2015,Neonatal 4 days,Both sexes,0.1
-2015,Neonatal 4 days,Males,0.1
-2015,Neonatal 4 days,Females,0.1
-2015,Neonatal 5 days,Both sexes,0
-2015,Neonatal 5 days,Males,0.1
-2015,Neonatal 5 days,Females,0
-2015,Neonatal 6 days,Both sexes,0.1
-2015,Neonatal 6 days,Males,0.1
-2015,Neonatal 6 days,Females,0.1
-2015,Neonatal 7 to 13 days,Both sexes,0.2
-2015,Neonatal 7 to 13 days,Males,0.3
-2015,Neonatal 7 to 13 days,Females,0.2
-2015,Neonatal 14 to 20 days,Both sexes,0.1
-2015,Neonatal 14 to 20 days,Males,0.1
-2015,Neonatal 14 to 20 days,Females,0.1
-2015,Neonatal 21 to 27 days,Both sexes,0.1
-2015,Neonatal 21 to 27 days,Males,0.1
-2015,Neonatal 21 to 27 days,Females,0.2
-2015,Post-neonatal 1 to 11 months,Both sexes,1
-2015,Post-neonatal 1 to 11 months,Males,1.1
-2015,Post-neonatal 1 to 11 months,Females,0.9
-2015,Post-neonatal 1 month,Both sexes,0.3
-2015,Post-neonatal 1 month,Males,0.3
-2015,Post-neonatal 1 month,Females,0.3
-2015,Post-neonatal 2 months,Both sexes,0.2
-2015,Post-neonatal 2 months,Males,0.2
-2015,Post-neonatal 2 months,Females,0.1
-2015,Post-neonatal 3 months,Both sexes,0.2
-2015,Post-neonatal 3 months,Males,0.2
-2015,Post-neonatal 3 months,Females,0.1
-2015,Post-neonatal 4 months,Both sexes,0.1
-2015,Post-neonatal 4 months,Males,0.1
-2015,Post-neonatal 4 months,Females,0.1
-2015,Post-neonatal 5 months,Both sexes,0.1
-2015,Post-neonatal 5 months,Males,0.1
-2015,Post-neonatal 5 months,Females,0.1
-2015,Post-neonatal 6 months,Both sexes,0.1
-2015,Post-neonatal 6 months,Males,0.1
-2015,Post-neonatal 6 months,Females,0.1
-2015,Post-neonatal 7 months,Both sexes,0
-2015,Post-neonatal 7 months,Males,0
-2015,Post-neonatal 7 months,Females,0
-2015,Post-neonatal 8 months,Both sexes,0
-2015,Post-neonatal 8 months,Males,0
-2015,Post-neonatal 8 months,Females,0
-2015,Post-neonatal 9 months,Both sexes,0
-2015,Post-neonatal 9 months,Males,0
-2015,Post-neonatal 9 months,Females,0
-2015,Post-neonatal 10 months,Both sexes,0
-2015,Post-neonatal 10 months,Males,0
-2015,Post-neonatal 10 months,Females,0
-2015,Post-neonatal 11 months,Both sexes,0
-2015,Post-neonatal 11 months,Males,0
-2015,Post-neonatal 11 months,Females,0
-2016,Total infant deaths under 1 year,Males,4.6
-2016,Total infant deaths under 1 year,Females,4.4
-2016,Neonatal 0 to 27 days,Both sexes,3.4
-2016,Neonatal 0 to 27 days,Males,3.4
-2016,Neonatal 0 to 27 days,Females,3.3
-2016,Neonatal under 1 day,Both sexes,2.3
-2016,Neonatal under 1 day,Males,2.4
-2016,Neonatal under 1 day,Females,2.3
-2016,Neonatal 1 day,Both sexes,0.1
-2016,Neonatal 1 day,Males,0.1
-2016,Neonatal 1 day,Females,0.1
-2016,Neonatal 2 days,Both sexes,0.1
-2016,Neonatal 2 days,Males,0.1
-2016,Neonatal 2 days,Females,0.1
-2016,Neonatal 3 days,Both sexes,0.1
-2016,Neonatal 3 days,Males,0.1
-2016,Neonatal 3 days,Females,0.1
-2016,Neonatal 4 days,Both sexes,0.1
-2016,Neonatal 4 days,Males,0.1
-2016,Neonatal 4 days,Females,0.1
-2016,Neonatal 5 days,Both sexes,0.1
-2016,Neonatal 5 days,Males,0.1
-2016,Neonatal 5 days,Females,0.1
-2016,Neonatal 6 days,Both sexes,0.1
-2016,Neonatal 6 days,Males,0
-2016,Neonatal 6 days,Females,0.1
-2016,Neonatal 7 to 13 days,Both sexes,0.2
-2016,Neonatal 7 to 13 days,Males,0.2
-2016,Neonatal 7 to 13 days,Females,0.3
-2016,Neonatal 14 to 20 days,Both sexes,0.1
-2016,Neonatal 14 to 20 days,Males,0.1
-2016,Neonatal 14 to 20 days,Females,0.1
-2016,Neonatal 21 to 27 days,Both sexes,0.1
-2016,Neonatal 21 to 27 days,Males,0.1
-2016,Neonatal 21 to 27 days,Females,0.1
-2016,Post-neonatal 1 to 11 months,Both sexes,1.2
-2016,Post-neonatal 1 to 11 months,Males,1.2
-2016,Post-neonatal 1 to 11 months,Females,1.1
-2016,Post-neonatal 1 month,Both sexes,0.4
-2016,Post-neonatal 1 month,Males,0.4
-2016,Post-neonatal 1 month,Females,0.3
-2016,Post-neonatal 2 months,Both sexes,0.2
-2016,Post-neonatal 2 months,Males,0.2
-2016,Post-neonatal 2 months,Females,0.2
-2016,Post-neonatal 3 months,Both sexes,0.2
-2016,Post-neonatal 3 months,Males,0.2
-2016,Post-neonatal 3 months,Females,0.2
-2016,Post-neonatal 4 months,Both sexes,0.1
-2016,Post-neonatal 4 months,Males,0.2
-2016,Post-neonatal 4 months,Females,0.1
-2016,Post-neonatal 5 months,Both sexes,0.1
-2016,Post-neonatal 5 months,Males,0.1
-2016,Post-neonatal 5 months,Females,0.1
-2016,Post-neonatal 6 months,Both sexes,0.1
-2016,Post-neonatal 6 months,Males,0.1
-2016,Post-neonatal 6 months,Females,0
-2016,Post-neonatal 7 months,Both sexes,0
-2016,Post-neonatal 7 months,Males,0
-2016,Post-neonatal 7 months,Females,0
-2016,Post-neonatal 8 months,Both sexes,0.1
-2016,Post-neonatal 8 months,Males,0.1
-2016,Post-neonatal 8 months,Females,0
-2016,Post-neonatal 9 months,Both sexes,0
-2016,Post-neonatal 9 months,Males,0
-2016,Post-neonatal 9 months,Females,0.1
-2016,Post-neonatal 10 months,Both sexes,0
-2016,Post-neonatal 10 months,Males,0
-2016,Post-neonatal 10 months,Females,0
-2016,Post-neonatal 11 months,Both sexes,0
-2016,Post-neonatal 11 months,Males,0
-2016,Post-neonatal 11 months,Females,0
-2017,Total infant deaths under 1 year,Males,4.8
-2017,Total infant deaths under 1 year,Females,4.2
-2017,Neonatal 0 to 27 days,Both sexes,3.5
-2017,Neonatal 0 to 27 days,Males,3.7
-2017,Neonatal 0 to 27 days,Females,3.2
-2017,Neonatal under 1 day,Both sexes,2.4
-2017,Neonatal under 1 day,Males,2.5
-2017,Neonatal under 1 day,Females,2.2
-2017,Neonatal 1 day,Both sexes,0.2
-2017,Neonatal 1 day,Males,0.3
-2017,Neonatal 1 day,Females,0.2
-2017,Neonatal 2 days,Both sexes,0.1
-2017,Neonatal 2 days,Males,0.1
-2017,Neonatal 2 days,Females,0.2
-2017,Neonatal 3 days,Both sexes,0.1
-2017,Neonatal 3 days,Males,0.1
-2017,Neonatal 3 days,Females,0.1
-2017,Neonatal 4 days,Both sexes,0.1
-2017,Neonatal 4 days,Males,0.1
-2017,Neonatal 4 days,Females,0.1
-2017,Neonatal 5 days,Both sexes,0.1
-2017,Neonatal 5 days,Males,0.1
-2017,Neonatal 5 days,Females,0
-2017,Neonatal 6 days,Both sexes,0.1
-2017,Neonatal 6 days,Males,0
-2017,Neonatal 6 days,Females,0.1
-2017,Neonatal 7 to 13 days,Both sexes,0.3
-2017,Neonatal 7 to 13 days,Males,0.3
-2017,Neonatal 7 to 13 days,Females,0.3
-2017,Neonatal 14 to 20 days,Both sexes,0.1
-2017,Neonatal 14 to 20 days,Males,0.1
-2017,Neonatal 14 to 20 days,Females,0.1
-2017,Neonatal 21 to 27 days,Both sexes,0.1
-2017,Neonatal 21 to 27 days,Males,0.1
-2017,Neonatal 21 to 27 days,Females,0.1
-2017,Post-neonatal 1 to 11 months,Both sexes,1
-2017,Post-neonatal 1 to 11 months,Males,1.1
-2017,Post-neonatal 1 to 11 months,Females,0.9
-2017,Post-neonatal 1 month,Both sexes,0.3
-2017,Post-neonatal 1 month,Males,0.3
-2017,Post-neonatal 1 month,Females,0.3
-2017,Post-neonatal 2 months,Both sexes,0.2
-2017,Post-neonatal 2 months,Males,0.2
-2017,Post-neonatal 2 months,Females,0.2
-2017,Post-neonatal 3 months,Both sexes,0.1
-2017,Post-neonatal 3 months,Males,0.1
-2017,Post-neonatal 3 months,Females,0.1
-2017,Post-neonatal 4 months,Both sexes,0.1
-2017,Post-neonatal 4 months,Males,0.1
-2017,Post-neonatal 4 months,Females,0.1
-2017,Post-neonatal 5 months,Both sexes,0.1
-2017,Post-neonatal 5 months,Males,0.1
-2017,Post-neonatal 5 months,Females,0.1
-2017,Post-neonatal 6 months,Both sexes,0.1
-2017,Post-neonatal 6 months,Males,0.1
-2017,Post-neonatal 6 months,Females,0
-2017,Post-neonatal 7 months,Both sexes,0
-2017,Post-neonatal 7 months,Males,0
-2017,Post-neonatal 7 months,Females,0
-2017,Post-neonatal 8 months,Both sexes,0.1
-2017,Post-neonatal 8 months,Males,0.1
-2017,Post-neonatal 8 months,Females,0
-2017,Post-neonatal 9 months,Both sexes,0
-2017,Post-neonatal 9 months,Males,0
-2017,Post-neonatal 9 months,Females,0
-2017,Post-neonatal 10 months,Both sexes,0
-2017,Post-neonatal 10 months,Males,0
-2017,Post-neonatal 10 months,Females,0
-2017,Post-neonatal 11 months,Both sexes,0
-2017,Post-neonatal 11 months,Males,0
-2017,Post-neonatal 11 months,Females,0
-2018,Total infant deaths under 1 year,Males,5
-2018,Total infant deaths under 1 year,Females,4.4
-2018,Neonatal 0 to 27 days,Both sexes,3.5
-2018,Neonatal 0 to 27 days,Males,3.8
-2018,Neonatal 0 to 27 days,Females,3.2
-2018,Neonatal under 1 day,Both sexes,2.4
-2018,Neonatal under 1 day,Males,2.6
-2018,Neonatal under 1 day,Females,2.1
-2018,Neonatal 1 day,Both sexes,0.2
-2018,Neonatal 1 day,Males,0.2
-2018,Neonatal 1 day,Females,0.1
-2018,Neonatal 2 days,Both sexes,0.1
-2018,Neonatal 2 days,Males,0.1
-2018,Neonatal 2 days,Females,0.1
-2018,Neonatal 3 days,Both sexes,0.1
-2018,Neonatal 3 days,Males,0.1
-2018,Neonatal 3 days,Females,0.1
-2018,Neonatal 4 days,Both sexes,0.1
-2018,Neonatal 4 days,Males,0.1
-2018,Neonatal 4 days,Females,0.1
-2018,Neonatal 5 days,Both sexes,0.1
-2018,Neonatal 5 days,Males,0.1
-2018,Neonatal 5 days,Females,0.1
-2018,Neonatal 6 days,Both sexes,0.1
-2018,Neonatal 6 days,Males,0.1
-2018,Neonatal 6 days,Females,0.1
-2018,Neonatal 7 to 13 days,Both sexes,0.2
-2018,Neonatal 7 to 13 days,Males,0.2
-2018,Neonatal 7 to 13 days,Females,0.2
-2018,Neonatal 14 to 20 days,Both sexes,0.2
-2018,Neonatal 14 to 20 days,Males,0.2
-2018,Neonatal 14 to 20 days,Females,0.2
-2018,Neonatal 21 to 27 days,Both sexes,0.1
-2018,Neonatal 21 to 27 days,Males,0.1
-2018,Neonatal 21 to 27 days,Females,0.1
-2018,Post-neonatal 1 to 11 months,Both sexes,1.2
-2018,Post-neonatal 1 to 11 months,Males,1.2
-2018,Post-neonatal 1 to 11 months,Females,1.1
-2018,Post-neonatal 1 month,Both sexes,0.4
-2018,Post-neonatal 1 month,Males,0.4
-2018,Post-neonatal 1 month,Females,0.4
-2018,Post-neonatal 2 months,Both sexes,0.2
-2018,Post-neonatal 2 months,Males,0.2
-2018,Post-neonatal 2 months,Females,0.2
-2018,Post-neonatal 3 months,Both sexes,0.1
-2018,Post-neonatal 3 months,Males,0.2
-2018,Post-neonatal 3 months,Females,0.1
-2018,Post-neonatal 4 months,Both sexes,0.1
-2018,Post-neonatal 4 months,Males,0.1
-2018,Post-neonatal 4 months,Females,0.1
-2018,Post-neonatal 5 months,Both sexes,0.1
-2018,Post-neonatal 5 months,Males,0.1
-2018,Post-neonatal 5 months,Females,0.1
-2018,Post-neonatal 6 months,Both sexes,0.1
-2018,Post-neonatal 6 months,Males,0
-2018,Post-neonatal 6 months,Females,0.1
-2018,Post-neonatal 7 months,Both sexes,0.1
-2018,Post-neonatal 7 months,Males,0.1
-2018,Post-neonatal 7 months,Females,0
-2018,Post-neonatal 8 months,Both sexes,0
-2018,Post-neonatal 8 months,Males,0
-2018,Post-neonatal 8 months,Females,0
-2018,Post-neonatal 9 months,Both sexes,0
-2018,Post-neonatal 9 months,Males,0
-2018,Post-neonatal 9 months,Females,0.1
-2018,Post-neonatal 10 months,Both sexes,0
-2018,Post-neonatal 10 months,Males,0
-2018,Post-neonatal 10 months,Females,0
-2018,Post-neonatal 11 months,Both sexes,0
-2018,Post-neonatal 11 months,Males,0
-2018,Post-neonatal 11 months,Females,0
-2019,Total infant deaths under 1 year,Males,4.9
-2019,Total infant deaths under 1 year,Females,3.9
-2019,Neonatal 0 to 27 days,Both sexes,3.3
-2019,Neonatal 0 to 27 days,Males,3.7
-2019,Neonatal 0 to 27 days,Females,2.9
-2019,Neonatal under 1 day,Both sexes,2.2
-2019,Neonatal under 1 day,Males,2.5
-2019,Neonatal under 1 day,Females,2
-2019,Neonatal 1 day,Both sexes,0.2
-2019,Neonatal 1 day,Males,0.2
-2019,Neonatal 1 day,Females,0.1
-2019,Neonatal 2 days,Both sexes,0.1
-2019,Neonatal 2 days,Males,0.1
-2019,Neonatal 2 days,Females,0.1
-2019,Neonatal 3 days,Both sexes,0.1
-2019,Neonatal 3 days,Males,0.1
-2019,Neonatal 3 days,Females,0.1
-2019,Neonatal 4 days,Both sexes,0.1
-2019,Neonatal 4 days,Males,0.1
-2019,Neonatal 4 days,Females,0
-2019,Neonatal 5 days,Both sexes,0.1
-2019,Neonatal 5 days,Males,0.1
-2019,Neonatal 5 days,Females,0.1
-2019,Neonatal 6 days,Both sexes,0.1
-2019,Neonatal 6 days,Males,0.1
-2019,Neonatal 6 days,Females,0
-2019,Neonatal 7 to 13 days,Both sexes,0.2
-2019,Neonatal 7 to 13 days,Males,0.3
-2019,Neonatal 7 to 13 days,Females,0.2
-2019,Neonatal 14 to 20 days,Both sexes,0.2
-2019,Neonatal 14 to 20 days,Males,0.2
-2019,Neonatal 14 to 20 days,Females,0.1
-2019,Neonatal 21 to 27 days,Both sexes,0.1
-2019,Neonatal 21 to 27 days,Males,0.1
-2019,Neonatal 21 to 27 days,Females,0.1
-2019,Post-neonatal 1 to 11 months,Both sexes,1.1
-2019,Post-neonatal 1 to 11 months,Males,1.1
-2019,Post-neonatal 1 to 11 months,Females,1
-2019,Post-neonatal 1 month,Both sexes,0.3
-2019,Post-neonatal 1 month,Males,0.4
-2019,Post-neonatal 1 month,Females,0.3
-2019,Post-neonatal 2 months,Both sexes,0.2
-2019,Post-neonatal 2 months,Males,0.2
-2019,Post-neonatal 2 months,Females,0.2
-2019,Post-neonatal 3 months,Both sexes,0.1
-2019,Post-neonatal 3 months,Males,0.1
-2019,Post-neonatal 3 months,Females,0.1
-2019,Post-neonatal 4 months,Both sexes,0.1
-2019,Post-neonatal 4 months,Males,0.1
-2019,Post-neonatal 4 months,Females,0.1
-2019,Post-neonatal 5 months,Both sexes,0.1
-2019,Post-neonatal 5 months,Males,0.1
-2019,Post-neonatal 5 months,Females,0
-2019,Post-neonatal 6 months,Both sexes,0.1
-2019,Post-neonatal 6 months,Males,0.1
-2019,Post-neonatal 6 months,Females,0.1
-2019,Post-neonatal 7 months,Both sexes,0
-2019,Post-neonatal 7 months,Males,0.1
-2019,Post-neonatal 7 months,Females,0
-2019,Post-neonatal 8 months,Both sexes,0
-2019,Post-neonatal 8 months,Males,0.1
-2019,Post-neonatal 8 months,Females,0
-2019,Post-neonatal 9 months,Both sexes,0
-2019,Post-neonatal 9 months,Males,0
-2019,Post-neonatal 9 months,Females,0
-2019,Post-neonatal 10 months,Both sexes,0
-2019,Post-neonatal 10 months,Males,0
-2019,Post-neonatal 10 months,Females,0
-2019,Post-neonatal 11 months,Both sexes,0
-2019,Post-neonatal 11 months,Males,0
-2019,Post-neonatal 11 months,Females,0
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-3-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-3-1.csv
deleted file mode 100644
index 11313b67..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-3-1.csv
+++ /dev/null
@@ -1,76 +0,0 @@
-Year,Sex,Value
-1995,,9.96
-1996,,9.16
-1997,,8.06
-1998,,7.3
-1999,,6.89
-2000,,6.4
-2001,,6.75
-2002,,7.37
-2003,,7.34
-2004,,7.29
-2005,,7.13
-2006,,7.19
-2007,,6.88
-2008,,7.39
-2009,,6.57
-2010,,6.32
-2011,,6.18
-2012,,5.53
-2013,,5.5
-2014,,5.41
-2015,,5.44
-2016,,5.98
-2017,,5.88
-2018,,6.19
-2019,,5.64
-1995,Male,15.89
-1996,Male,14.19
-1997,Male,12.54
-1998,Male,11.19
-1999,Male,10.39
-2000,Male,9.71
-2001,Male,10.02
-2002,Male,11.03
-2003,Male,10.98
-2004,Male,10.78
-2005,Male,10.68
-2006,Male,10.52
-2007,Male,10.34
-2008,Male,11.08
-2009,Male,9.83
-2010,Male,9.69
-2011,Male,9.47
-2012,Male,8.56
-2013,Male,8.61
-2014,Male,8.24
-2015,Male,8.3
-2016,Male,9.17
-2017,Male,9.01
-2018,Male,8.94
-2019,Male,7.91
-1995,Female,3.61
-1996,Female,3.74
-1997,Female,3.21
-1998,Female,3.14
-1999,Female,3.3
-2000,Female,3.02
-2001,Female,3.4
-2002,Female,3.68
-2003,Female,3.66
-2004,Female,3.82
-2005,Female,3.57
-2006,Female,3.87
-2007,Female,3.41
-2008,Female,3.71
-2009,Female,3.32
-2010,Female,2.93
-2011,Female,2.85
-2012,Female,2.51
-2013,Female,2.37
-2014,Female,2.57
-2015,Female,2.6
-2016,Female,2.79
-2017,Female,2.77
-2018,Female,3.46
-2019,Female,3.38
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-3-2.csv b/tests/assets/progress-calculation/data/temp/indicator_3-3-2.csv
deleted file mode 100644
index a971fa32..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-3-2.csv
+++ /dev/null
@@ -1,31 +0,0 @@
-Year,Sex,Value
-2010,,4.66
-2011,,4.72
-2012,,4.9
-2013,,4.71
-2014,,4.56
-2015,,4.6
-2016,,4.88
-2017,,5.01
-2018,,4.85
-2019,,5.09
-2010,Female,4.2
-2011,Female,4.27
-2012,Female,4.03
-2013,Female,4.23
-2014,Female,3.95
-2015,Female,4.3
-2016,Female,4.44
-2017,Female,4.41
-2018,Female,4.45
-2019,Female,4.46
-2010,Male,5.13
-2011,Male,5.18
-2012,Male,5.78
-2013,Male,5.19
-2014,Male,5.17
-2015,Male,4.91
-2016,Male,5.33
-2017,Male,5.62
-2018,Male,5.24
-2019,Male,5.71
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-3-4.csv b/tests/assets/progress-calculation/data/temp/indicator_3-3-4.csv
deleted file mode 100644
index cef2b697..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-3-4.csv
+++ /dev/null
@@ -1,31 +0,0 @@
-Year,Sex,Value
-2010,,9.73
-2011,,16.37
-2012,,16.35
-2013,,16.26
-2014,,15.16
-2015,,14.03
-2016,,14.41
-2017,,13.98
-2018,,13.47
-2019,,12.73
-2010,Female,8.32
-2011,Female,14.24
-2012,Female,14.12
-2013,Female,14.25
-2014,Female,13.84
-2015,Female,11.83
-2016,Female,12.19
-2017,Female,11.82
-2018,Female,11.78
-2019,Female,11
-2010,Male,11.12
-2011,Male,18.47
-2012,Male,18.59
-2013,Male,18.29
-2014,Male,16.44
-2015,Male,16.17
-2016,Male,16.62
-2017,Male,16.12
-2018,Male,15.07
-2019,Male,14.22
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-3-5.csv b/tests/assets/progress-calculation/data/temp/indicator_3-3-5.csv
deleted file mode 100644
index f4d70fc1..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-3-5.csv
+++ /dev/null
@@ -1,21 +0,0 @@
-Year,Disease,Value
-2010,Leprosy,0.01
-2011,Leprosy,0.03
-2012,Leprosy,0.03
-2013,Leprosy,0.01
-2014,Leprosy,0.02
-2015,Leprosy,0.03
-2016,Leprosy,0.02
-2017,Leprosy,0.003
-2018,Leprosy,0.03
-2019,Leprosy,0.003
-2010,Rabies,0
-2011,Rabies,0
-2012,Rabies,0.003
-2013,Rabies,0
-2014,Rabies,0
-2015,Rabies,0
-2016,Rabies,0
-2017,Rabies,0
-2018,Rabies,0
-2019,Rabies,0.003
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-4-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-4-1.csv
deleted file mode 100644
index 9b114785..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-4-1.csv
+++ /dev/null
@@ -1,736 +0,0 @@
-Year,Geography,Age at time of death,Sex,Causes of death,Value
-2015,Canada,30 to 34 years,Both sexes,Malignant neoplasms,16
-2015,Canada,30 to 34 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.1
-2015,Canada,30 to 34 years,Both sexes,Diabetes mellitus,1.2
-2015,Canada,30 to 34 years,Both sexes,Diseases of heart,5.1
-2015,Canada,30 to 34 years,Both sexes,Influenza and pneumonia,0.8
-2015,Canada,30 to 34 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2015,Canada,30 to 34 years,Both sexes,Chronic lower respiratory diseases,0.1
-2015,Canada,30 to 34 years,Males,Malignant neoplasms,11.1
-2015,Canada,30 to 34 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.1
-2015,Canada,30 to 34 years,Males,Diabetes mellitus,1.1
-2015,Canada,30 to 34 years,Males,Diseases of heart,5.2
-2015,Canada,30 to 34 years,Males,Influenza and pneumonia,0.6
-2015,Canada,30 to 34 years,Males,Acute bronchitis and bronchiolitis,0
-2015,Canada,30 to 34 years,Males,Chronic lower respiratory diseases,0
-2015,Canada,30 to 34 years,Females,Malignant neoplasms,25.6
-2015,Canada,30 to 34 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.2
-2015,Canada,30 to 34 years,Females,Diabetes mellitus,1.4
-2015,Canada,30 to 34 years,Females,Diseases of heart,4.9
-2015,Canada,30 to 34 years,Females,Influenza and pneumonia,1.2
-2015,Canada,30 to 34 years,Females,Acute bronchitis and bronchiolitis,0
-2015,Canada,30 to 34 years,Females,Chronic lower respiratory diseases,0.3
-2015,Canada,35 to 44 years,Both sexes,Malignant neoplasms,23.5
-2015,Canada,35 to 44 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2015,Canada,35 to 44 years,Both sexes,Diabetes mellitus,2.2
-2015,Canada,35 to 44 years,Both sexes,Diseases of heart,9.7
-2015,Canada,35 to 44 years,Both sexes,Influenza and pneumonia,1.2
-2015,Canada,35 to 44 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2015,Canada,35 to 44 years,Both sexes,Chronic lower respiratory diseases,0.6
-2015,Canada,35 to 44 years,Males,Malignant neoplasms,15.7
-2015,Canada,35 to 44 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2015,Canada,35 to 44 years,Males,Diabetes mellitus,2.5
-2015,Canada,35 to 44 years,Males,Diseases of heart,11.3
-2015,Canada,35 to 44 years,Males,Influenza and pneumonia,1.1
-2015,Canada,35 to 44 years,Males,Acute bronchitis and bronchiolitis,0
-2015,Canada,35 to 44 years,Males,Chronic lower respiratory diseases,0.3
-2015,Canada,35 to 44 years,Females,Malignant neoplasms,36.4
-2015,Canada,35 to 44 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2015,Canada,35 to 44 years,Females,Diabetes mellitus,1.7
-2015,Canada,35 to 44 years,Females,Diseases of heart,7
-2015,Canada,35 to 44 years,Females,Influenza and pneumonia,1.3
-2015,Canada,35 to 44 years,Females,Acute bronchitis and bronchiolitis,0
-2015,Canada,35 to 44 years,Females,Chronic lower respiratory diseases,1.1
-2015,Canada,45 to 54 years,Both sexes,Malignant neoplasms,35.8
-2015,Canada,45 to 54 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2015,Canada,45 to 54 years,Both sexes,Diabetes mellitus,2.6
-2015,Canada,45 to 54 years,Both sexes,Diseases of heart,14.8
-2015,Canada,45 to 54 years,Both sexes,Influenza and pneumonia,1.2
-2015,Canada,45 to 54 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2015,Canada,45 to 54 years,Both sexes,Chronic lower respiratory diseases,1.6
-2015,Canada,45 to 54 years,Males,Malignant neoplasms,27.4
-2015,Canada,45 to 54 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2015,Canada,45 to 54 years,Males,Diabetes mellitus,2.9
-2015,Canada,45 to 54 years,Males,Diseases of heart,18.8
-2015,Canada,45 to 54 years,Males,Influenza and pneumonia,1
-2015,Canada,45 to 54 years,Males,Acute bronchitis and bronchiolitis,0
-2015,Canada,45 to 54 years,Males,Chronic lower respiratory diseases,1.4
-2015,Canada,45 to 54 years,Females,Malignant neoplasms,48.5
-2015,Canada,45 to 54 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2015,Canada,45 to 54 years,Females,Diabetes mellitus,2.1
-2015,Canada,45 to 54 years,Females,Diseases of heart,8.7
-2015,Canada,45 to 54 years,Females,Influenza and pneumonia,1.4
-2015,Canada,45 to 54 years,Females,Acute bronchitis and bronchiolitis,0
-2015,Canada,45 to 54 years,Females,Chronic lower respiratory diseases,2
-2015,Canada,55 to 64 years,Both sexes,Malignant neoplasms,45.4
-2015,Canada,55 to 64 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2015,Canada,55 to 64 years,Both sexes,Diabetes mellitus,2.8
-2015,Canada,55 to 64 years,Both sexes,Diseases of heart,16.8
-2015,Canada,55 to 64 years,Both sexes,Influenza and pneumonia,1.2
-2015,Canada,55 to 64 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2015,Canada,55 to 64 years,Both sexes,Chronic lower respiratory diseases,3.3
-2015,Canada,55 to 64 years,Males,Malignant neoplasms,39.6
-2015,Canada,55 to 64 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2015,Canada,55 to 64 years,Males,Diabetes mellitus,3.1
-2015,Canada,55 to 64 years,Males,Diseases of heart,20.6
-2015,Canada,55 to 64 years,Males,Influenza and pneumonia,1
-2015,Canada,55 to 64 years,Males,Acute bronchitis and bronchiolitis,0
-2015,Canada,55 to 64 years,Males,Chronic lower respiratory diseases,3.1
-2015,Canada,55 to 64 years,Females,Malignant neoplasms,54.3
-2015,Canada,55 to 64 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2015,Canada,55 to 64 years,Females,Diabetes mellitus,2.4
-2015,Canada,55 to 64 years,Females,Diseases of heart,11
-2015,Canada,55 to 64 years,Females,Influenza and pneumonia,1.4
-2015,Canada,55 to 64 years,Females,Acute bronchitis and bronchiolitis,0
-2015,Canada,55 to 64 years,Females,Chronic lower respiratory diseases,3.6
-2015,Canada,65 to 74 years,Both sexes,Malignant neoplasms,44.3
-2015,Canada,65 to 74 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2015,Canada,65 to 74 years,Both sexes,Diabetes mellitus,3.4
-2015,Canada,65 to 74 years,Both sexes,Diseases of heart,17.4
-2015,Canada,65 to 74 years,Both sexes,Influenza and pneumonia,1.5
-2015,Canada,65 to 74 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2015,Canada,65 to 74 years,Both sexes,Chronic lower respiratory diseases,5.6
-2015,Canada,65 to 74 years,Males,Malignant neoplasms,41.8
-2015,Canada,65 to 74 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2015,Canada,65 to 74 years,Males,Diabetes mellitus,3.7
-2015,Canada,65 to 74 years,Males,Diseases of heart,20.1
-2015,Canada,65 to 74 years,Males,Influenza and pneumonia,1.5
-2015,Canada,65 to 74 years,Males,Acute bronchitis and bronchiolitis,0
-2015,Canada,65 to 74 years,Males,Chronic lower respiratory diseases,5
-2015,Canada,65 to 74 years,Females,Malignant neoplasms,47.8
-2015,Canada,65 to 74 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2015,Canada,65 to 74 years,Females,Diabetes mellitus,2.8
-2015,Canada,65 to 74 years,Females,Diseases of heart,13.6
-2015,Canada,65 to 74 years,Females,Influenza and pneumonia,1.5
-2015,Canada,65 to 74 years,Females,Acute bronchitis and bronchiolitis,0
-2015,Canada,65 to 74 years,Females,Chronic lower respiratory diseases,6.5
-2015,Canada,75 to 84 years,Both sexes,Malignant neoplasms,32.1
-2015,Canada,75 to 84 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
-2015,Canada,75 to 84 years,Both sexes,Diabetes mellitus,3.1
-2015,Canada,75 to 84 years,Both sexes,Diseases of heart,19.2
-2015,Canada,75 to 84 years,Both sexes,Influenza and pneumonia,2.6
-2015,Canada,75 to 84 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2015,Canada,75 to 84 years,Both sexes,Chronic lower respiratory diseases,6.2
-2015,Canada,75 to 84 years,Males,Malignant neoplasms,32.9
-2015,Canada,75 to 84 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.9
-2015,Canada,75 to 84 years,Males,Diabetes mellitus,3.1
-2015,Canada,75 to 84 years,Males,Diseases of heart,20.5
-2015,Canada,75 to 84 years,Males,Influenza and pneumonia,2.5
-2015,Canada,75 to 84 years,Males,Acute bronchitis and bronchiolitis,0
-2015,Canada,75 to 84 years,Males,Chronic lower respiratory diseases,5.8
-2015,Canada,75 to 84 years,Females,Malignant neoplasms,31.2
-2015,Canada,75 to 84 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
-2015,Canada,75 to 84 years,Females,Diabetes mellitus,2.9
-2015,Canada,75 to 84 years,Females,Diseases of heart,17.8
-2015,Canada,75 to 84 years,Females,Influenza and pneumonia,2.6
-2015,Canada,75 to 84 years,Females,Acute bronchitis and bronchiolitis,0
-2015,Canada,75 to 84 years,Females,Chronic lower respiratory diseases,6.6
-2015,Canada,85 and over,Both sexes,Malignant neoplasms,15.8
-2015,Canada,85 and over,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2015,Canada,85 and over,Both sexes,Diabetes mellitus,2.3
-2015,Canada,85 and over,Both sexes,Diseases of heart,23.9
-2015,Canada,85 and over,Both sexes,Influenza and pneumonia,4.8
-2015,Canada,85 and over,Both sexes,Acute bronchitis and bronchiolitis,0
-2015,Canada,85 and over,Both sexes,Chronic lower respiratory diseases,4.8
-2015,Canada,85 and over,Males,Malignant neoplasms,19.7
-2015,Canada,85 and over,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2015,Canada,85 and over,Males,Diabetes mellitus,2.5
-2015,Canada,85 and over,Males,Diseases of heart,24
-2015,Canada,85 and over,Males,Influenza and pneumonia,4.7
-2015,Canada,85 and over,Males,Acute bronchitis and bronchiolitis,0
-2015,Canada,85 and over,Males,Chronic lower respiratory diseases,5.7
-2015,Canada,85 and over,Females,Malignant neoplasms,13.4
-2015,Canada,85 and over,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2015,Canada,85 and over,Females,Diabetes mellitus,2.2
-2015,Canada,85 and over,Females,Diseases of heart,23.9
-2015,Canada,85 and over,Females,Influenza and pneumonia,4.8
-2015,Canada,85 and over,Females,Acute bronchitis and bronchiolitis,0
-2015,Canada,85 and over,Females,Chronic lower respiratory diseases,4.2
-2016,Canada,30 to 34 years,Both sexes,Malignant neoplasms,11.9
-2016,Canada,30 to 34 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2016,Canada,30 to 34 years,Both sexes,Diabetes mellitus,1.4
-2016,Canada,30 to 34 years,Both sexes,Diseases of heart,5
-2016,Canada,30 to 34 years,Both sexes,Influenza and pneumonia,0.7
-2016,Canada,30 to 34 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2016,Canada,30 to 34 years,Both sexes,Chronic lower respiratory diseases,0.5
-2016,Canada,30 to 34 years,Males,Malignant neoplasms,7.4
-2016,Canada,30 to 34 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2016,Canada,30 to 34 years,Males,Diabetes mellitus,1.6
-2016,Canada,30 to 34 years,Males,Diseases of heart,5.3
-2016,Canada,30 to 34 years,Males,Influenza and pneumonia,0.5
-2016,Canada,30 to 34 years,Males,Acute bronchitis and bronchiolitis,0
-2016,Canada,30 to 34 years,Males,Chronic lower respiratory diseases,0.4
-2016,Canada,30 to 34 years,Females,Malignant neoplasms,21.4
-2016,Canada,30 to 34 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.2
-2016,Canada,30 to 34 years,Females,Diabetes mellitus,1.2
-2016,Canada,30 to 34 years,Females,Diseases of heart,4.5
-2016,Canada,30 to 34 years,Females,Influenza and pneumonia,1.2
-2016,Canada,30 to 34 years,Females,Acute bronchitis and bronchiolitis,0
-2016,Canada,30 to 34 years,Females,Chronic lower respiratory diseases,0.7
-2016,Canada,35 to 44 years,Both sexes,Malignant neoplasms,23.1
-2016,Canada,35 to 44 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2016,Canada,35 to 44 years,Both sexes,Diabetes mellitus,1.8
-2016,Canada,35 to 44 years,Both sexes,Diseases of heart,9.1
-2016,Canada,35 to 44 years,Both sexes,Influenza and pneumonia,1.4
-2016,Canada,35 to 44 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2016,Canada,35 to 44 years,Both sexes,Chronic lower respiratory diseases,0.4
-2016,Canada,35 to 44 years,Males,Malignant neoplasms,15.5
-2016,Canada,35 to 44 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2016,Canada,35 to 44 years,Males,Diabetes mellitus,1.8
-2016,Canada,35 to 44 years,Males,Diseases of heart,10.4
-2016,Canada,35 to 44 years,Males,Influenza and pneumonia,1.1
-2016,Canada,35 to 44 years,Males,Acute bronchitis and bronchiolitis,0
-2016,Canada,35 to 44 years,Males,Chronic lower respiratory diseases,0.2
-2016,Canada,35 to 44 years,Females,Malignant neoplasms,35.5
-2016,Canada,35 to 44 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2016,Canada,35 to 44 years,Females,Diabetes mellitus,1.9
-2016,Canada,35 to 44 years,Females,Diseases of heart,6.9
-2016,Canada,35 to 44 years,Females,Influenza and pneumonia,1.9
-2016,Canada,35 to 44 years,Females,Acute bronchitis and bronchiolitis,0
-2016,Canada,35 to 44 years,Females,Chronic lower respiratory diseases,0.7
-2016,Canada,45 to 54 years,Both sexes,Malignant neoplasms,34.5
-2016,Canada,45 to 54 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2016,Canada,45 to 54 years,Both sexes,Diabetes mellitus,2.5
-2016,Canada,45 to 54 years,Both sexes,Diseases of heart,14.7
-2016,Canada,45 to 54 years,Both sexes,Influenza and pneumonia,1.4
-2016,Canada,45 to 54 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2016,Canada,45 to 54 years,Both sexes,Chronic lower respiratory diseases,1.3
-2016,Canada,45 to 54 years,Males,Malignant neoplasms,26
-2016,Canada,45 to 54 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2016,Canada,45 to 54 years,Males,Diabetes mellitus,2.8
-2016,Canada,45 to 54 years,Males,Diseases of heart,18.6
-2016,Canada,45 to 54 years,Males,Influenza and pneumonia,1.4
-2016,Canada,45 to 54 years,Males,Acute bronchitis and bronchiolitis,0
-2016,Canada,45 to 54 years,Males,Chronic lower respiratory diseases,1
-2016,Canada,45 to 54 years,Females,Malignant neoplasms,47.1
-2016,Canada,45 to 54 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2016,Canada,45 to 54 years,Females,Diabetes mellitus,2
-2016,Canada,45 to 54 years,Females,Diseases of heart,8.9
-2016,Canada,45 to 54 years,Females,Influenza and pneumonia,1.5
-2016,Canada,45 to 54 years,Females,Acute bronchitis and bronchiolitis,0
-2016,Canada,45 to 54 years,Females,Chronic lower respiratory diseases,1.6
-2016,Canada,55 to 64 years,Both sexes,Malignant neoplasms,44.1
-2016,Canada,55 to 64 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2016,Canada,55 to 64 years,Both sexes,Diabetes mellitus,2.6
-2016,Canada,55 to 64 years,Both sexes,Diseases of heart,16.8
-2016,Canada,55 to 64 years,Both sexes,Influenza and pneumonia,1.4
-2016,Canada,55 to 64 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2016,Canada,55 to 64 years,Both sexes,Chronic lower respiratory diseases,3.2
-2016,Canada,55 to 64 years,Males,Malignant neoplasms,38.5
-2016,Canada,55 to 64 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2016,Canada,55 to 64 years,Males,Diabetes mellitus,2.9
-2016,Canada,55 to 64 years,Males,Diseases of heart,20.8
-2016,Canada,55 to 64 years,Males,Influenza and pneumonia,1.4
-2016,Canada,55 to 64 years,Males,Acute bronchitis and bronchiolitis,0
-2016,Canada,55 to 64 years,Males,Chronic lower respiratory diseases,3
-2016,Canada,55 to 64 years,Females,Malignant neoplasms,52.8
-2016,Canada,55 to 64 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2016,Canada,55 to 64 years,Females,Diabetes mellitus,2.3
-2016,Canada,55 to 64 years,Females,Diseases of heart,10.7
-2016,Canada,55 to 64 years,Females,Influenza and pneumonia,1.4
-2016,Canada,55 to 64 years,Females,Acute bronchitis and bronchiolitis,0
-2016,Canada,55 to 64 years,Females,Chronic lower respiratory diseases,3.7
-2016,Canada,65 to 74 years,Both sexes,Malignant neoplasms,44.5
-2016,Canada,65 to 74 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2016,Canada,65 to 74 years,Both sexes,Diabetes mellitus,3.1
-2016,Canada,65 to 74 years,Both sexes,Diseases of heart,17.2
-2016,Canada,65 to 74 years,Both sexes,Influenza and pneumonia,1.4
-2016,Canada,65 to 74 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2016,Canada,65 to 74 years,Both sexes,Chronic lower respiratory diseases,5.5
-2016,Canada,65 to 74 years,Males,Malignant neoplasms,41.7
-2016,Canada,65 to 74 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2016,Canada,65 to 74 years,Males,Diabetes mellitus,3.3
-2016,Canada,65 to 74 years,Males,Diseases of heart,19.7
-2016,Canada,65 to 74 years,Males,Influenza and pneumonia,1.4
-2016,Canada,65 to 74 years,Males,Acute bronchitis and bronchiolitis,0
-2016,Canada,65 to 74 years,Males,Chronic lower respiratory diseases,5
-2016,Canada,65 to 74 years,Females,Malignant neoplasms,48.3
-2016,Canada,65 to 74 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2016,Canada,65 to 74 years,Females,Diabetes mellitus,2.7
-2016,Canada,65 to 74 years,Females,Diseases of heart,13.6
-2016,Canada,65 to 74 years,Females,Influenza and pneumonia,1.4
-2016,Canada,65 to 74 years,Females,Acute bronchitis and bronchiolitis,0
-2016,Canada,65 to 74 years,Females,Chronic lower respiratory diseases,6.2
-2016,Canada,75 to 84 years,Both sexes,Malignant neoplasms,33.3
-2016,Canada,75 to 84 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
-2016,Canada,75 to 84 years,Both sexes,Diabetes mellitus,2.9
-2016,Canada,75 to 84 years,Both sexes,Diseases of heart,19.2
-2016,Canada,75 to 84 years,Both sexes,Influenza and pneumonia,2
-2016,Canada,75 to 84 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2016,Canada,75 to 84 years,Both sexes,Chronic lower respiratory diseases,6.1
-2016,Canada,75 to 84 years,Males,Malignant neoplasms,34
-2016,Canada,75 to 84 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
-2016,Canada,75 to 84 years,Males,Diabetes mellitus,2.9
-2016,Canada,75 to 84 years,Males,Diseases of heart,20.6
-2016,Canada,75 to 84 years,Males,Influenza and pneumonia,2
-2016,Canada,75 to 84 years,Males,Acute bronchitis and bronchiolitis,0
-2016,Canada,75 to 84 years,Males,Chronic lower respiratory diseases,5.7
-2016,Canada,75 to 84 years,Females,Malignant neoplasms,32.4
-2016,Canada,75 to 84 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
-2016,Canada,75 to 84 years,Females,Diabetes mellitus,2.8
-2016,Canada,75 to 84 years,Females,Diseases of heart,17.6
-2016,Canada,75 to 84 years,Females,Influenza and pneumonia,2
-2016,Canada,75 to 84 years,Females,Acute bronchitis and bronchiolitis,0
-2016,Canada,75 to 84 years,Females,Chronic lower respiratory diseases,6.5
-2016,Canada,85 and over,Both sexes,Malignant neoplasms,16.8
-2016,Canada,85 and over,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2016,Canada,85 and over,Both sexes,Diabetes mellitus,2.3
-2016,Canada,85 and over,Both sexes,Diseases of heart,23.5
-2016,Canada,85 and over,Both sexes,Influenza and pneumonia,3.6
-2016,Canada,85 and over,Both sexes,Acute bronchitis and bronchiolitis,0
-2016,Canada,85 and over,Both sexes,Chronic lower respiratory diseases,4.5
-2016,Canada,85 and over,Males,Malignant neoplasms,20.6
-2016,Canada,85 and over,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
-2016,Canada,85 and over,Males,Diabetes mellitus,2.3
-2016,Canada,85 and over,Males,Diseases of heart,23.5
-2016,Canada,85 and over,Males,Influenza and pneumonia,3.7
-2016,Canada,85 and over,Males,Acute bronchitis and bronchiolitis,0
-2016,Canada,85 and over,Males,Chronic lower respiratory diseases,5.4
-2016,Canada,85 and over,Females,Malignant neoplasms,14.3
-2016,Canada,85 and over,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2016,Canada,85 and over,Females,Diabetes mellitus,2.2
-2016,Canada,85 and over,Females,Diseases of heart,23.4
-2016,Canada,85 and over,Females,Influenza and pneumonia,3.5
-2016,Canada,85 and over,Females,Acute bronchitis and bronchiolitis,0
-2016,Canada,85 and over,Females,Chronic lower respiratory diseases,4
-2017,Canada,30 to 34 years,Both sexes,Malignant neoplasms,10.7
-2017,Canada,30 to 34 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.2
-2017,Canada,30 to 34 years,Both sexes,Diabetes mellitus,1.6
-2017,Canada,30 to 34 years,Both sexes,Diseases of heart,4.8
-2017,Canada,30 to 34 years,Both sexes,Influenza and pneumonia,0.6
-2017,Canada,30 to 34 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2017,Canada,30 to 34 years,Both sexes,Chronic lower respiratory diseases,0.4
-2017,Canada,30 to 34 years,Males,Malignant neoplasms,7.4
-2017,Canada,30 to 34 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.1
-2017,Canada,30 to 34 years,Males,Diabetes mellitus,1.3
-2017,Canada,30 to 34 years,Males,Diseases of heart,4.6
-2017,Canada,30 to 34 years,Males,Influenza and pneumonia,0.5
-2017,Canada,30 to 34 years,Males,Acute bronchitis and bronchiolitis,0
-2017,Canada,30 to 34 years,Males,Chronic lower respiratory diseases,0.3
-2017,Canada,30 to 34 years,Females,Malignant neoplasms,18.2
-2017,Canada,30 to 34 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2017,Canada,30 to 34 years,Females,Diabetes mellitus,2.4
-2017,Canada,30 to 34 years,Females,Diseases of heart,5.2
-2017,Canada,30 to 34 years,Females,Influenza and pneumonia,0.9
-2017,Canada,30 to 34 years,Females,Acute bronchitis and bronchiolitis,0
-2017,Canada,30 to 34 years,Females,Chronic lower respiratory diseases,0.8
-2017,Canada,35 to 44 years,Both sexes,Malignant neoplasms,21.5
-2017,Canada,35 to 44 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2017,Canada,35 to 44 years,Both sexes,Diabetes mellitus,1.8
-2017,Canada,35 to 44 years,Both sexes,Diseases of heart,8.9
-2017,Canada,35 to 44 years,Both sexes,Influenza and pneumonia,0.8
-2017,Canada,35 to 44 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2017,Canada,35 to 44 years,Both sexes,Chronic lower respiratory diseases,0.3
-2017,Canada,35 to 44 years,Males,Malignant neoplasms,13.9
-2017,Canada,35 to 44 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2017,Canada,35 to 44 years,Males,Diabetes mellitus,1.8
-2017,Canada,35 to 44 years,Males,Diseases of heart,10.1
-2017,Canada,35 to 44 years,Males,Influenza and pneumonia,0.7
-2017,Canada,35 to 44 years,Males,Acute bronchitis and bronchiolitis,0
-2017,Canada,35 to 44 years,Males,Chronic lower respiratory diseases,0.3
-2017,Canada,35 to 44 years,Females,Malignant neoplasms,35.4
-2017,Canada,35 to 44 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2017,Canada,35 to 44 years,Females,Diabetes mellitus,1.9
-2017,Canada,35 to 44 years,Females,Diseases of heart,6.6
-2017,Canada,35 to 44 years,Females,Influenza and pneumonia,1
-2017,Canada,35 to 44 years,Females,Acute bronchitis and bronchiolitis,0
-2017,Canada,35 to 44 years,Females,Chronic lower respiratory diseases,0.3
-2017,Canada,45 to 54 years,Both sexes,Malignant neoplasms,34.7
-2017,Canada,45 to 54 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2017,Canada,45 to 54 years,Both sexes,Diabetes mellitus,2.5
-2017,Canada,45 to 54 years,Both sexes,Diseases of heart,14
-2017,Canada,45 to 54 years,Both sexes,Influenza and pneumonia,1.2
-2017,Canada,45 to 54 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2017,Canada,45 to 54 years,Both sexes,Chronic lower respiratory diseases,1.6
-2017,Canada,45 to 54 years,Males,Malignant neoplasms,27.1
-2017,Canada,45 to 54 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2017,Canada,45 to 54 years,Males,Diabetes mellitus,2.7
-2017,Canada,45 to 54 years,Males,Diseases of heart,17.9
-2017,Canada,45 to 54 years,Males,Influenza and pneumonia,1.1
-2017,Canada,45 to 54 years,Males,Acute bronchitis and bronchiolitis,0
-2017,Canada,45 to 54 years,Males,Chronic lower respiratory diseases,1.4
-2017,Canada,45 to 54 years,Females,Malignant neoplasms,46.5
-2017,Canada,45 to 54 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2017,Canada,45 to 54 years,Females,Diabetes mellitus,2.2
-2017,Canada,45 to 54 years,Females,Diseases of heart,8.1
-2017,Canada,45 to 54 years,Females,Influenza and pneumonia,1.3
-2017,Canada,45 to 54 years,Females,Acute bronchitis and bronchiolitis,0
-2017,Canada,45 to 54 years,Females,Chronic lower respiratory diseases,1.8
-2017,Canada,55 to 64 years,Both sexes,Malignant neoplasms,44.3
-2017,Canada,55 to 64 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2017,Canada,55 to 64 years,Both sexes,Diabetes mellitus,2.8
-2017,Canada,55 to 64 years,Both sexes,Diseases of heart,16.8
-2017,Canada,55 to 64 years,Both sexes,Influenza and pneumonia,1.2
-2017,Canada,55 to 64 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2017,Canada,55 to 64 years,Both sexes,Chronic lower respiratory diseases,3.3
-2017,Canada,55 to 64 years,Males,Malignant neoplasms,38.9
-2017,Canada,55 to 64 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2017,Canada,55 to 64 years,Males,Diabetes mellitus,3.1
-2017,Canada,55 to 64 years,Males,Diseases of heart,20.8
-2017,Canada,55 to 64 years,Males,Influenza and pneumonia,1.1
-2017,Canada,55 to 64 years,Males,Acute bronchitis and bronchiolitis,0
-2017,Canada,55 to 64 years,Males,Chronic lower respiratory diseases,2.9
-2017,Canada,55 to 64 years,Females,Malignant neoplasms,52.4
-2017,Canada,55 to 64 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2017,Canada,55 to 64 years,Females,Diabetes mellitus,2.2
-2017,Canada,55 to 64 years,Females,Diseases of heart,10.9
-2017,Canada,55 to 64 years,Females,Influenza and pneumonia,1.4
-2017,Canada,55 to 64 years,Females,Acute bronchitis and bronchiolitis,0
-2017,Canada,55 to 64 years,Females,Chronic lower respiratory diseases,4
-2017,Canada,65 to 74 years,Both sexes,Malignant neoplasms,43.6
-2017,Canada,65 to 74 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2017,Canada,65 to 74 years,Both sexes,Diabetes mellitus,3.1
-2017,Canada,65 to 74 years,Both sexes,Diseases of heart,17.4
-2017,Canada,65 to 74 years,Both sexes,Influenza and pneumonia,1.4
-2017,Canada,65 to 74 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2017,Canada,65 to 74 years,Both sexes,Chronic lower respiratory diseases,5.7
-2017,Canada,65 to 74 years,Males,Malignant neoplasms,41
-2017,Canada,65 to 74 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2017,Canada,65 to 74 years,Males,Diabetes mellitus,3.3
-2017,Canada,65 to 74 years,Males,Diseases of heart,20.2
-2017,Canada,65 to 74 years,Males,Influenza and pneumonia,1.4
-2017,Canada,65 to 74 years,Males,Acute bronchitis and bronchiolitis,0
-2017,Canada,65 to 74 years,Males,Chronic lower respiratory diseases,5.1
-2017,Canada,65 to 74 years,Females,Malignant neoplasms,47.3
-2017,Canada,65 to 74 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2017,Canada,65 to 74 years,Females,Diabetes mellitus,2.7
-2017,Canada,65 to 74 years,Females,Diseases of heart,13.4
-2017,Canada,65 to 74 years,Females,Influenza and pneumonia,1.4
-2017,Canada,65 to 74 years,Females,Acute bronchitis and bronchiolitis,0
-2017,Canada,65 to 74 years,Females,Chronic lower respiratory diseases,6.6
-2017,Canada,75 to 84 years,Both sexes,Malignant neoplasms,32.7
-2017,Canada,75 to 84 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
-2017,Canada,75 to 84 years,Both sexes,Diabetes mellitus,2.8
-2017,Canada,75 to 84 years,Both sexes,Diseases of heart,18.9
-2017,Canada,75 to 84 years,Both sexes,Influenza and pneumonia,2.3
-2017,Canada,75 to 84 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2017,Canada,75 to 84 years,Both sexes,Chronic lower respiratory diseases,6
-2017,Canada,75 to 84 years,Males,Malignant neoplasms,33.4
-2017,Canada,75 to 84 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
-2017,Canada,75 to 84 years,Males,Diabetes mellitus,3.1
-2017,Canada,75 to 84 years,Males,Diseases of heart,20.4
-2017,Canada,75 to 84 years,Males,Influenza and pneumonia,2.1
-2017,Canada,75 to 84 years,Males,Acute bronchitis and bronchiolitis,0
-2017,Canada,75 to 84 years,Males,Chronic lower respiratory diseases,5.5
-2017,Canada,75 to 84 years,Females,Malignant neoplasms,31.9
-2017,Canada,75 to 84 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2017,Canada,75 to 84 years,Females,Diabetes mellitus,2.5
-2017,Canada,75 to 84 years,Females,Diseases of heart,17.2
-2017,Canada,75 to 84 years,Females,Influenza and pneumonia,2.6
-2017,Canada,75 to 84 years,Females,Acute bronchitis and bronchiolitis,0
-2017,Canada,75 to 84 years,Females,Chronic lower respiratory diseases,6.6
-2017,Canada,85 and over,Both sexes,Malignant neoplasms,16.1
-2017,Canada,85 and over,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2017,Canada,85 and over,Both sexes,Diabetes mellitus,2.1
-2017,Canada,85 and over,Both sexes,Diseases of heart,23.3
-2017,Canada,85 and over,Both sexes,Influenza and pneumonia,4.3
-2017,Canada,85 and over,Both sexes,Acute bronchitis and bronchiolitis,0
-2017,Canada,85 and over,Both sexes,Chronic lower respiratory diseases,4.5
-2017,Canada,85 and over,Males,Malignant neoplasms,19.7
-2017,Canada,85 and over,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
-2017,Canada,85 and over,Males,Diabetes mellitus,2.3
-2017,Canada,85 and over,Males,Diseases of heart,23.6
-2017,Canada,85 and over,Males,Influenza and pneumonia,4.3
-2017,Canada,85 and over,Males,Acute bronchitis and bronchiolitis,0
-2017,Canada,85 and over,Males,Chronic lower respiratory diseases,5.2
-2017,Canada,85 and over,Females,Malignant neoplasms,13.8
-2017,Canada,85 and over,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2017,Canada,85 and over,Females,Diabetes mellitus,1.9
-2017,Canada,85 and over,Females,Diseases of heart,23.1
-2017,Canada,85 and over,Females,Influenza and pneumonia,4.3
-2017,Canada,85 and over,Females,Acute bronchitis and bronchiolitis,0
-2017,Canada,85 and over,Females,Chronic lower respiratory diseases,4.1
-2018,Canada,30 to 34 years,Both sexes,Malignant neoplasms,10.4
-2018,Canada,30 to 34 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2018,Canada,30 to 34 years,Both sexes,Diabetes mellitus,1.2
-2018,Canada,30 to 34 years,Both sexes,Diseases of heart,4.1
-2018,Canada,30 to 34 years,Both sexes,Influenza and pneumonia,0.9
-2018,Canada,30 to 34 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2018,Canada,30 to 34 years,Both sexes,Chronic lower respiratory diseases,0.3
-2018,Canada,30 to 34 years,Males,Malignant neoplasms,6.2
-2018,Canada,30 to 34 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2018,Canada,30 to 34 years,Males,Diabetes mellitus,0.9
-2018,Canada,30 to 34 years,Males,Diseases of heart,4.3
-2018,Canada,30 to 34 years,Males,Influenza and pneumonia,0.5
-2018,Canada,30 to 34 years,Males,Acute bronchitis and bronchiolitis,0
-2018,Canada,30 to 34 years,Males,Chronic lower respiratory diseases,0.4
-2018,Canada,30 to 34 years,Females,Malignant neoplasms,19.2
-2018,Canada,30 to 34 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2018,Canada,30 to 34 years,Females,Diabetes mellitus,1.7
-2018,Canada,30 to 34 years,Females,Diseases of heart,3.6
-2018,Canada,30 to 34 years,Females,Influenza and pneumonia,1.7
-2018,Canada,30 to 34 years,Females,Acute bronchitis and bronchiolitis,0
-2018,Canada,30 to 34 years,Females,Chronic lower respiratory diseases,0.3
-2018,Canada,35 to 44 years,Both sexes,Malignant neoplasms,19.5
-2018,Canada,35 to 44 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2018,Canada,35 to 44 years,Both sexes,Diabetes mellitus,1.9
-2018,Canada,35 to 44 years,Both sexes,Diseases of heart,7.7
-2018,Canada,35 to 44 years,Both sexes,Influenza and pneumonia,1.1
-2018,Canada,35 to 44 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2018,Canada,35 to 44 years,Both sexes,Chronic lower respiratory diseases,0.4
-2018,Canada,35 to 44 years,Males,Malignant neoplasms,13
-2018,Canada,35 to 44 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2018,Canada,35 to 44 years,Males,Diabetes mellitus,1.7
-2018,Canada,35 to 44 years,Males,Diseases of heart,8.5
-2018,Canada,35 to 44 years,Males,Influenza and pneumonia,1
-2018,Canada,35 to 44 years,Males,Acute bronchitis and bronchiolitis,0
-2018,Canada,35 to 44 years,Males,Chronic lower respiratory diseases,0.4
-2018,Canada,35 to 44 years,Females,Malignant neoplasms,31.2
-2018,Canada,35 to 44 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2018,Canada,35 to 44 years,Females,Diabetes mellitus,2.2
-2018,Canada,35 to 44 years,Females,Diseases of heart,6.4
-2018,Canada,35 to 44 years,Females,Influenza and pneumonia,1.4
-2018,Canada,35 to 44 years,Females,Acute bronchitis and bronchiolitis,0
-2018,Canada,35 to 44 years,Females,Chronic lower respiratory diseases,0.4
-2018,Canada,45 to 54 years,Both sexes,Malignant neoplasms,31.8
-2018,Canada,45 to 54 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2018,Canada,45 to 54 years,Both sexes,Diabetes mellitus,2.7
-2018,Canada,45 to 54 years,Both sexes,Diseases of heart,13.2
-2018,Canada,45 to 54 years,Both sexes,Influenza and pneumonia,1.5
-2018,Canada,45 to 54 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2018,Canada,45 to 54 years,Both sexes,Chronic lower respiratory diseases,1.4
-2018,Canada,45 to 54 years,Males,Malignant neoplasms,24.2
-2018,Canada,45 to 54 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2018,Canada,45 to 54 years,Males,Diabetes mellitus,3
-2018,Canada,45 to 54 years,Males,Diseases of heart,16.6
-2018,Canada,45 to 54 years,Males,Influenza and pneumonia,1.3
-2018,Canada,45 to 54 years,Males,Acute bronchitis and bronchiolitis,0
-2018,Canada,45 to 54 years,Males,Chronic lower respiratory diseases,1
-2018,Canada,45 to 54 years,Females,Malignant neoplasms,44.2
-2018,Canada,45 to 54 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2018,Canada,45 to 54 years,Females,Diabetes mellitus,2.3
-2018,Canada,45 to 54 years,Females,Diseases of heart,7.7
-2018,Canada,45 to 54 years,Females,Influenza and pneumonia,1.7
-2018,Canada,45 to 54 years,Females,Acute bronchitis and bronchiolitis,0
-2018,Canada,45 to 54 years,Females,Chronic lower respiratory diseases,2
-2018,Canada,55 to 64 years,Both sexes,Malignant neoplasms,42.8
-2018,Canada,55 to 64 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2018,Canada,55 to 64 years,Both sexes,Diabetes mellitus,2.6
-2018,Canada,55 to 64 years,Both sexes,Diseases of heart,15.9
-2018,Canada,55 to 64 years,Both sexes,Influenza and pneumonia,1.5
-2018,Canada,55 to 64 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2018,Canada,55 to 64 years,Both sexes,Chronic lower respiratory diseases,3.5
-2018,Canada,55 to 64 years,Males,Malignant neoplasms,37.3
-2018,Canada,55 to 64 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2018,Canada,55 to 64 years,Males,Diabetes mellitus,2.8
-2018,Canada,55 to 64 years,Males,Diseases of heart,19.5
-2018,Canada,55 to 64 years,Males,Influenza and pneumonia,1.5
-2018,Canada,55 to 64 years,Males,Acute bronchitis and bronchiolitis,0
-2018,Canada,55 to 64 years,Males,Chronic lower respiratory diseases,3.1
-2018,Canada,55 to 64 years,Females,Malignant neoplasms,51.3
-2018,Canada,55 to 64 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2018,Canada,55 to 64 years,Females,Diabetes mellitus,2.4
-2018,Canada,55 to 64 years,Females,Diseases of heart,10.5
-2018,Canada,55 to 64 years,Females,Influenza and pneumonia,1.5
-2018,Canada,55 to 64 years,Females,Acute bronchitis and bronchiolitis,0
-2018,Canada,55 to 64 years,Females,Chronic lower respiratory diseases,4.1
-2018,Canada,65 to 74 years,Both sexes,Malignant neoplasms,42.7
-2018,Canada,65 to 74 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2018,Canada,65 to 74 years,Both sexes,Diabetes mellitus,3.1
-2018,Canada,65 to 74 years,Both sexes,Diseases of heart,17.1
-2018,Canada,65 to 74 years,Both sexes,Influenza and pneumonia,1.7
-2018,Canada,65 to 74 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2018,Canada,65 to 74 years,Both sexes,Chronic lower respiratory diseases,5.7
-2018,Canada,65 to 74 years,Males,Malignant neoplasms,40.4
-2018,Canada,65 to 74 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
-2018,Canada,65 to 74 years,Males,Diabetes mellitus,3.4
-2018,Canada,65 to 74 years,Males,Diseases of heart,19.8
-2018,Canada,65 to 74 years,Males,Influenza and pneumonia,1.7
-2018,Canada,65 to 74 years,Males,Acute bronchitis and bronchiolitis,0
-2018,Canada,65 to 74 years,Males,Chronic lower respiratory diseases,5.1
-2018,Canada,65 to 74 years,Females,Malignant neoplasms,46
-2018,Canada,65 to 74 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2018,Canada,65 to 74 years,Females,Diabetes mellitus,2.7
-2018,Canada,65 to 74 years,Females,Diseases of heart,13.3
-2018,Canada,65 to 74 years,Females,Influenza and pneumonia,1.6
-2018,Canada,65 to 74 years,Females,Acute bronchitis and bronchiolitis,0
-2018,Canada,65 to 74 years,Females,Chronic lower respiratory diseases,6.6
-2018,Canada,75 to 84 years,Both sexes,Malignant neoplasms,32.2
-2018,Canada,75 to 84 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
-2018,Canada,75 to 84 years,Both sexes,Diabetes mellitus,2.6
-2018,Canada,75 to 84 years,Both sexes,Diseases of heart,18.3
-2018,Canada,75 to 84 years,Both sexes,Influenza and pneumonia,2.6
-2018,Canada,75 to 84 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2018,Canada,75 to 84 years,Both sexes,Chronic lower respiratory diseases,6.1
-2018,Canada,75 to 84 years,Males,Malignant neoplasms,32.8
-2018,Canada,75 to 84 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
-2018,Canada,75 to 84 years,Males,Diabetes mellitus,2.7
-2018,Canada,75 to 84 years,Males,Diseases of heart,19.8
-2018,Canada,75 to 84 years,Males,Influenza and pneumonia,2.6
-2018,Canada,75 to 84 years,Males,Acute bronchitis and bronchiolitis,0
-2018,Canada,75 to 84 years,Males,Chronic lower respiratory diseases,5.7
-2018,Canada,75 to 84 years,Females,Malignant neoplasms,31.6
-2018,Canada,75 to 84 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
-2018,Canada,75 to 84 years,Females,Diabetes mellitus,2.5
-2018,Canada,75 to 84 years,Females,Diseases of heart,16.5
-2018,Canada,75 to 84 years,Females,Influenza and pneumonia,2.6
-2018,Canada,75 to 84 years,Females,Acute bronchitis and bronchiolitis,0
-2018,Canada,75 to 84 years,Females,Chronic lower respiratory diseases,6.6
-2018,Canada,85 and over,Both sexes,Malignant neoplasms,15.8
-2018,Canada,85 and over,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2018,Canada,85 and over,Both sexes,Diabetes mellitus,2
-2018,Canada,85 and over,Both sexes,Diseases of heart,23
-2018,Canada,85 and over,Both sexes,Influenza and pneumonia,4.7
-2018,Canada,85 and over,Both sexes,Acute bronchitis and bronchiolitis,0
-2018,Canada,85 and over,Both sexes,Chronic lower respiratory diseases,4.3
-2018,Canada,85 and over,Males,Malignant neoplasms,19.5
-2018,Canada,85 and over,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
-2018,Canada,85 and over,Males,Diabetes mellitus,2.1
-2018,Canada,85 and over,Males,Diseases of heart,23.7
-2018,Canada,85 and over,Males,Influenza and pneumonia,4.7
-2018,Canada,85 and over,Males,Acute bronchitis and bronchiolitis,0
-2018,Canada,85 and over,Males,Chronic lower respiratory diseases,5
-2018,Canada,85 and over,Females,Malignant neoplasms,13.3
-2018,Canada,85 and over,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2018,Canada,85 and over,Females,Diabetes mellitus,1.9
-2018,Canada,85 and over,Females,Diseases of heart,22.5
-2018,Canada,85 and over,Females,Influenza and pneumonia,4.8
-2018,Canada,85 and over,Females,Acute bronchitis and bronchiolitis,0
-2018,Canada,85 and over,Females,Chronic lower respiratory diseases,3.8
-2019,Canada,30 to 34 years,Both sexes,Malignant neoplasms,12.5
-2019,Canada,30 to 34 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.2
-2019,Canada,30 to 34 years,Both sexes,Diabetes mellitus,1.6
-2019,Canada,30 to 34 years,Both sexes,Diseases of heart,3.8
-2019,Canada,30 to 34 years,Both sexes,Influenza and pneumonia,0.9
-2019,Canada,30 to 34 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2019,Canada,30 to 34 years,Both sexes,Chronic lower respiratory diseases,0.3
-2019,Canada,30 to 34 years,Males,Malignant neoplasms,9.2
-2019,Canada,30 to 34 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.1
-2019,Canada,30 to 34 years,Males,Diabetes mellitus,1.7
-2019,Canada,30 to 34 years,Males,Diseases of heart,3.5
-2019,Canada,30 to 34 years,Males,Influenza and pneumonia,0.7
-2019,Canada,30 to 34 years,Males,Acute bronchitis and bronchiolitis,0
-2019,Canada,30 to 34 years,Males,Chronic lower respiratory diseases,0.3
-2019,Canada,30 to 34 years,Females,Malignant neoplasms,19.4
-2019,Canada,30 to 34 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2019,Canada,30 to 34 years,Females,Diabetes mellitus,1.5
-2019,Canada,30 to 34 years,Females,Diseases of heart,4.4
-2019,Canada,30 to 34 years,Females,Influenza and pneumonia,1.4
-2019,Canada,30 to 34 years,Females,Acute bronchitis and bronchiolitis,0
-2019,Canada,30 to 34 years,Females,Chronic lower respiratory diseases,0.5
-2019,Canada,35 to 44 years,Both sexes,Malignant neoplasms,20.4
-2019,Canada,35 to 44 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2019,Canada,35 to 44 years,Both sexes,Diabetes mellitus,2.2
-2019,Canada,35 to 44 years,Both sexes,Diseases of heart,8.2
-2019,Canada,35 to 44 years,Both sexes,Influenza and pneumonia,1.3
-2019,Canada,35 to 44 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2019,Canada,35 to 44 years,Both sexes,Chronic lower respiratory diseases,0.3
-2019,Canada,35 to 44 years,Males,Malignant neoplasms,13.7
-2019,Canada,35 to 44 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2019,Canada,35 to 44 years,Males,Diabetes mellitus,2.1
-2019,Canada,35 to 44 years,Males,Diseases of heart,9.5
-2019,Canada,35 to 44 years,Males,Influenza and pneumonia,1.3
-2019,Canada,35 to 44 years,Males,Acute bronchitis and bronchiolitis,0
-2019,Canada,35 to 44 years,Males,Chronic lower respiratory diseases,0.1
-2019,Canada,35 to 44 years,Females,Malignant neoplasms,32.1
-2019,Canada,35 to 44 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2019,Canada,35 to 44 years,Females,Diabetes mellitus,2.2
-2019,Canada,35 to 44 years,Females,Diseases of heart,5.9
-2019,Canada,35 to 44 years,Females,Influenza and pneumonia,1.3
-2019,Canada,35 to 44 years,Females,Acute bronchitis and bronchiolitis,0
-2019,Canada,35 to 44 years,Females,Chronic lower respiratory diseases,0.6
-2019,Canada,45 to 54 years,Both sexes,Malignant neoplasms,32.5
-2019,Canada,45 to 54 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2019,Canada,45 to 54 years,Both sexes,Diabetes mellitus,2.6
-2019,Canada,45 to 54 years,Both sexes,Diseases of heart,13.7
-2019,Canada,45 to 54 years,Both sexes,Influenza and pneumonia,1.4
-2019,Canada,45 to 54 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2019,Canada,45 to 54 years,Both sexes,Chronic lower respiratory diseases,1.3
-2019,Canada,45 to 54 years,Males,Malignant neoplasms,25.4
-2019,Canada,45 to 54 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2019,Canada,45 to 54 years,Males,Diabetes mellitus,2.9
-2019,Canada,45 to 54 years,Males,Diseases of heart,17
-2019,Canada,45 to 54 years,Males,Influenza and pneumonia,1.4
-2019,Canada,45 to 54 years,Males,Acute bronchitis and bronchiolitis,0
-2019,Canada,45 to 54 years,Males,Chronic lower respiratory diseases,1.1
-2019,Canada,45 to 54 years,Females,Malignant neoplasms,43.5
-2019,Canada,45 to 54 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.5
-2019,Canada,45 to 54 years,Females,Diabetes mellitus,2.2
-2019,Canada,45 to 54 years,Females,Diseases of heart,8.4
-2019,Canada,45 to 54 years,Females,Influenza and pneumonia,1.4
-2019,Canada,45 to 54 years,Females,Acute bronchitis and bronchiolitis,0
-2019,Canada,45 to 54 years,Females,Chronic lower respiratory diseases,1.5
-2019,Canada,55 to 64 years,Both sexes,Malignant neoplasms,42.5
-2019,Canada,55 to 64 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2019,Canada,55 to 64 years,Both sexes,Diabetes mellitus,2.9
-2019,Canada,55 to 64 years,Both sexes,Diseases of heart,16
-2019,Canada,55 to 64 years,Both sexes,Influenza and pneumonia,1.5
-2019,Canada,55 to 64 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2019,Canada,55 to 64 years,Both sexes,Chronic lower respiratory diseases,3.6
-2019,Canada,55 to 64 years,Males,Malignant neoplasms,37.1
-2019,Canada,55 to 64 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.4
-2019,Canada,55 to 64 years,Males,Diabetes mellitus,3.1
-2019,Canada,55 to 64 years,Males,Diseases of heart,19.5
-2019,Canada,55 to 64 years,Males,Influenza and pneumonia,1.4
-2019,Canada,55 to 64 years,Males,Acute bronchitis and bronchiolitis,0
-2019,Canada,55 to 64 years,Males,Chronic lower respiratory diseases,3.2
-2019,Canada,55 to 64 years,Females,Malignant neoplasms,50.7
-2019,Canada,55 to 64 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.3
-2019,Canada,55 to 64 years,Females,Diabetes mellitus,2.5
-2019,Canada,55 to 64 years,Females,Diseases of heart,10.5
-2019,Canada,55 to 64 years,Females,Influenza and pneumonia,1.6
-2019,Canada,55 to 64 years,Females,Acute bronchitis and bronchiolitis,0
-2019,Canada,55 to 64 years,Females,Chronic lower respiratory diseases,4.2
-2019,Canada,65 to 74 years,Both sexes,Malignant neoplasms,42.2
-2019,Canada,65 to 74 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2019,Canada,65 to 74 years,Both sexes,Diabetes mellitus,3
-2019,Canada,65 to 74 years,Both sexes,Diseases of heart,16.8
-2019,Canada,65 to 74 years,Both sexes,Influenza and pneumonia,1.6
-2019,Canada,65 to 74 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2019,Canada,65 to 74 years,Both sexes,Chronic lower respiratory diseases,5.5
-2019,Canada,65 to 74 years,Males,Malignant neoplasms,40.2
-2019,Canada,65 to 74 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
-2019,Canada,65 to 74 years,Males,Diabetes mellitus,3.2
-2019,Canada,65 to 74 years,Males,Diseases of heart,19.2
-2019,Canada,65 to 74 years,Males,Influenza and pneumonia,1.5
-2019,Canada,65 to 74 years,Males,Acute bronchitis and bronchiolitis,0
-2019,Canada,65 to 74 years,Males,Chronic lower respiratory diseases,4.9
-2019,Canada,65 to 74 years,Females,Malignant neoplasms,45.1
-2019,Canada,65 to 74 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2019,Canada,65 to 74 years,Females,Diabetes mellitus,2.8
-2019,Canada,65 to 74 years,Females,Diseases of heart,13.3
-2019,Canada,65 to 74 years,Females,Influenza and pneumonia,1.6
-2019,Canada,65 to 74 years,Females,Acute bronchitis and bronchiolitis,0
-2019,Canada,65 to 74 years,Females,Chronic lower respiratory diseases,6.2
-2019,Canada,75 to 84 years,Both sexes,Malignant neoplasms,32.2
-2019,Canada,75 to 84 years,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
-2019,Canada,75 to 84 years,Both sexes,Diabetes mellitus,2.7
-2019,Canada,75 to 84 years,Both sexes,Diseases of heart,18.2
-2019,Canada,75 to 84 years,Both sexes,Influenza and pneumonia,2.1
-2019,Canada,75 to 84 years,Both sexes,Acute bronchitis and bronchiolitis,0
-2019,Canada,75 to 84 years,Both sexes,Chronic lower respiratory diseases,6
-2019,Canada,75 to 84 years,Males,Malignant neoplasms,32.8
-2019,Canada,75 to 84 years,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.9
-2019,Canada,75 to 84 years,Males,Diabetes mellitus,2.8
-2019,Canada,75 to 84 years,Males,Diseases of heart,19.7
-2019,Canada,75 to 84 years,Males,Influenza and pneumonia,2.1
-2019,Canada,75 to 84 years,Males,Acute bronchitis and bronchiolitis,0
-2019,Canada,75 to 84 years,Males,Chronic lower respiratory diseases,5.5
-2019,Canada,75 to 84 years,Females,Malignant neoplasms,31.6
-2019,Canada,75 to 84 years,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2019,Canada,75 to 84 years,Females,Diabetes mellitus,2.5
-2019,Canada,75 to 84 years,Females,Diseases of heart,16.4
-2019,Canada,75 to 84 years,Females,Influenza and pneumonia,2.1
-2019,Canada,75 to 84 years,Females,Acute bronchitis and bronchiolitis,0
-2019,Canada,75 to 84 years,Females,Chronic lower respiratory diseases,6.7
-2019,Canada,85 and over,Both sexes,Malignant neoplasms,16.2
-2019,Canada,85 and over,Both sexes,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.7
-2019,Canada,85 and over,Both sexes,Diabetes mellitus,2
-2019,Canada,85 and over,Both sexes,Diseases of heart,22.5
-2019,Canada,85 and over,Both sexes,Influenza and pneumonia,3.6
-2019,Canada,85 and over,Both sexes,Acute bronchitis and bronchiolitis,0
-2019,Canada,85 and over,Both sexes,Chronic lower respiratory diseases,4.2
-2019,Canada,85 and over,Males,Malignant neoplasms,20.1
-2019,Canada,85 and over,Males,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.8
-2019,Canada,85 and over,Males,Diabetes mellitus,2.2
-2019,Canada,85 and over,Males,Diseases of heart,22.7
-2019,Canada,85 and over,Males,Influenza and pneumonia,3.6
-2019,Canada,85 and over,Males,Acute bronchitis and bronchiolitis,0
-2019,Canada,85 and over,Males,Chronic lower respiratory diseases,4.8
-2019,Canada,85 and over,Females,Malignant neoplasms,13.6
-2019,Canada,85 and over,Females,"In situ neoplasms, benign neoplasms and neoplasms of uncertain or unknown behaviour",0.6
-2019,Canada,85 and over,Females,Diabetes mellitus,1.9
-2019,Canada,85 and over,Females,Diseases of heart,22.4
-2019,Canada,85 and over,Females,Influenza and pneumonia,3.6
-2019,Canada,85 and over,Females,Acute bronchitis and bronchiolitis,0
-2019,Canada,85 and over,Females,Chronic lower respiratory diseases,3.8
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-4-2.csv b/tests/assets/progress-calculation/data/temp/indicator_3-4-2.csv
deleted file mode 100644
index 4ed66702..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-4-2.csv
+++ /dev/null
@@ -1,202 +0,0 @@
-Year,Geography,Sex,GeoCode,Value
-2015,,,,12.3
-2016,,,,11
-2017,,,,11.3
-2018,,,,10.3
-2019,,,,10.7
-2015,Canada,Males,,18.4
-2015,Canada,Females,,6.3
-2015,Alberta,Both sexes,48,15.8
-2015,Newfoundland and Labrador,Males,,19.2
-2015,Newfoundland and Labrador,Females,,4.8
-2016,Alberta,Both sexes,48,13.9
-2015,Prince Edward Island,Males,,7
-2015,Prince Edward Island,Females,,4
-2017,Alberta,Both sexes,48,14.7
-2015,Nova Scotia,Males,,22.5
-2015,Nova Scotia,Females,,4.6
-2018,Alberta,Both sexes,48,13.2
-2015,New Brunswick,Males,,26.6
-2015,New Brunswick,Females,,7.1
-2019,Alberta,Both sexes,48,13
-2015,Quebec,Males,,20.7
-2015,Quebec,Females,,7.2
-2015,British Columbia,Both sexes,59,11.6
-2015,Ontario,Males,,14.3
-2015,Ontario,Females,,5.4
-2016,British Columbia,Both sexes,59,10.1
-2015,Manitoba,Males,,18.5
-2015,Manitoba,Females,,9.2
-2017,British Columbia,Both sexes,59,9.9
-2015,Saskatchewan,Males,,22.6
-2015,Saskatchewan,Females,,5.3
-2018,British Columbia,Both sexes,59,8.2
-2015,Alberta,Males,,22.9
-2015,Alberta,Females,,8.4
-2019,British Columbia,Both sexes,59,8.9
-2015,British Columbia,Males,,18.1
-2015,British Columbia,Females,,5.2
-2015,Manitoba,Both sexes,46,13.8
-2015,Yukon,Males,,26.4
-2015,Yukon,Females,,0
-2016,Manitoba,Both sexes,46,15.2
-2015,Northwest Territories,Males,,39.9
-2015,Northwest Territories,Females,,0
-2017,Manitoba,Both sexes,46,15.5
-2015,Nunavut,Males,,132
-2015,Nunavut,Females,,22.6
-2016,Canada,Males,,16.3
-2016,Canada,Females,,5.7
-2018,Manitoba,Both sexes,46,13.8
-2016,Newfoundland and Labrador,Males,,21
-2016,Newfoundland and Labrador,Females,,6.7
-2019,Manitoba,Both sexes,46,15.1
-2016,Prince Edward Island,Males,,12.3
-2016,Prince Edward Island,Females,,1.3
-2015,New Brunswick,Both sexes,13,16.7
-2016,Nova Scotia,Males,,20.9
-2016,Nova Scotia,Females,,5.8
-2016,New Brunswick,Both sexes,13,15.8
-2016,New Brunswick,Males,,25.4
-2016,New Brunswick,Females,,6.5
-2017,New Brunswick,Both sexes,13,12.6
-2016,Quebec,Males,,14.4
-2016,Quebec,Females,,4.4
-2018,New Brunswick,Both sexes,13,14.7
-2016,Ontario,Males,,14.4
-2016,Ontario,Females,,5.3
-2019,New Brunswick,Both sexes,13,10
-2016,Manitoba,Males,,21.5
-2016,Manitoba,Females,,8.9
-2015,Newfoundland and Labrador,Both sexes,10,11.9
-2016,Saskatchewan,Males,,21.9
-2016,Saskatchewan,Females,,9.3
-2016,Newfoundland and Labrador,Both sexes,10,13.8
-2016,Alberta,Males,,20.3
-2016,Alberta,Females,,7.4
-2017,Newfoundland and Labrador,Both sexes,10,17.4
-2016,British Columbia,Males,,15.2
-2016,British Columbia,Females,,5.1
-2018,Newfoundland and Labrador,Both sexes,10,13.7
-2016,Yukon,Males,,25.8
-2016,Yukon,Females,,10.7
-2019,Newfoundland and Labrador,Both sexes,10,11.5
-2016,Northwest Territories,Males,,35
-2016,Northwest Territories,Females,,18.4
-2015,Northwest Territories,Both sexes,61,20.4
-2016,Nunavut,Males,,93.5
-2016,Nunavut,Females,,39.1
-2017,Canada,Males,,17.1
-2017,Canada,Females,,5.7
-2016,Northwest Territories,Both sexes,61,26.9
-2017,Newfoundland and Labrador,Males,,26.9
-2017,Newfoundland and Labrador,Females,,8.2
-2017,Northwest Territories,Both sexes,61,13.5
-2017,Prince Edward Island,Males,,14.8
-2017,Prince Edward Island,Females,,6.4
-2018,Northwest Territories,Both sexes,61,24.7
-2017,Nova Scotia,Males,,22
-2017,Nova Scotia,Females,,7.2
-2019,Northwest Territories,Both sexes,61,15.5
-2017,New Brunswick,Males,,20.5
-2017,New Brunswick,Females,,4.9
-2015,Nova Scotia,Both sexes,12,13.4
-2017,Quebec,Males,,15.9
-2017,Quebec,Females,,5.1
-2016,Nova Scotia,Both sexes,12,13.2
-2017,Ontario,Males,,14.8
-2017,Ontario,Females,,5.3
-2017,Nova Scotia,Both sexes,12,14.5
-2017,Manitoba,Males,,20.5
-2017,Manitoba,Females,,10.4
-2018,Nova Scotia,Both sexes,12,12.8
-2017,Saskatchewan,Males,,22.2
-2017,Saskatchewan,Females,,8
-2019,Nova Scotia,Both sexes,12,12.7
-2017,Alberta,Males,,23
-2017,Alberta,Females,,6.3
-2015,Nunavut,Both sexes,62,79.2
-2017,British Columbia,Males,,15.1
-2017,British Columbia,Females,,4.7
-2016,Nunavut,Both sexes,62,67.2
-2017,Northwest Territories,Males,,26.3
-2017,Northwest Territories,Females,,0
-2017,Nunavut,Both sexes,62,50
-2017,Nunavut,Males,,81.3
-2017,Nunavut,Females,,16.4
-2018,Canada,Males,,15.7
-2018,Canada,Females,,5
-2018,Nunavut,Both sexes,62,54.7
-2018,Newfoundland and Labrador,Males,,23.1
-2018,Newfoundland and Labrador,Females,,4.5
-2019,Nunavut,Both sexes,62,82.9
-2018,Prince Edward Island,Males,,8
-2018,Prince Edward Island,Females,,1.3
-2015,Ontario,Both sexes,35,9.8
-2018,Nova Scotia,Males,,20.9
-2018,Nova Scotia,Females,,5.1
-2016,Ontario,Both sexes,35,9.8
-2018,New Brunswick,Males,,24.1
-2018,New Brunswick,Females,,5.4
-2017,Ontario,Both sexes,35,10
-2018,Quebec,Males,,14.3
-2018,Quebec,Females,,4.9
-2018,Ontario,Both sexes,35,8.9
-2018,Ontario,Males,,13.5
-2018,Ontario,Females,,4.4
-2019,Ontario,Both sexes,35,9.1
-2018,Manitoba,Males,,20.1
-2018,Manitoba,Females,,7.4
-2015,Prince Edward Island,Both sexes,11,5.4
-2018,Saskatchewan,Males,,29.2
-2018,Saskatchewan,Females,,9.2
-2016,Prince Edward Island,Both sexes,11,6.7
-2018,Alberta,Males,,19.5
-2018,Alberta,Females,,6.7
-2017,Prince Edward Island,Both sexes,11,10.5
-2018,British Columbia,Males,,12.6
-2018,British Columbia,Females,,3.8
-2018,Prince Edward Island,Both sexes,11,4.6
-2018,Northwest Territories,Males,,39.3
-2018,Northwest Territories,Females,,9.2
-2019,Prince Edward Island,Both sexes,11,10.8
-2018,Nunavut,Males,,101.3
-2018,Nunavut,Females,,5.4
-2019,Canada,Males,,16.4
-2019,Canada,Females,,5
-2015,Quebec,Both sexes,24,13.9
-2019,Newfoundland and Labrador,Males,,17
-2019,Newfoundland and Labrador,Females,,6
-2016,Quebec,Both sexes,24,9.4
-2019,Prince Edward Island,Males,,18.1
-2019,Prince Edward Island,Females,,3.8
-2017,Quebec,Both sexes,24,10.5
-2019,Nova Scotia,Males,,21.1
-2019,Nova Scotia,Females,,4.6
-2018,Quebec,Both sexes,24,9.6
-2019,New Brunswick,Males,,14.8
-2019,New Brunswick,Females,,5.4
-2019,Quebec,Both sexes,24,11.5
-2019,Quebec,Males,,17.7
-2019,Quebec,Females,,5.3
-2015,Saskatchewan,Both sexes,47,14.1
-2019,Ontario,Males,,13.8
-2019,Ontario,Females,,4.5
-2016,Saskatchewan,Both sexes,47,15.7
-2019,Manitoba,Males,,22.5
-2019,Manitoba,Females,,7.7
-2017,Saskatchewan,Both sexes,47,15.1
-2019,Saskatchewan,Males,,22.7
-2019,Saskatchewan,Females,,5.5
-2018,Saskatchewan,Both sexes,47,19.3
-2019,Alberta,Males,,19.6
-2019,Alberta,Females,,6.3
-2019,Saskatchewan,Both sexes,47,14.2
-2019,British Columbia,Males,,13.9
-2019,British Columbia,Females,,4
-2015,Yukon,Both sexes,60,13.4
-2019,Northwest Territories,Males,,17.3
-2019,Northwest Territories,Females,,13.7
-2016,Yukon,Both sexes,60,18.4
-2019,Nunavut,Males,,121.2
-2019,Nunavut,Females,,42.5
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-5-2.csv b/tests/assets/progress-calculation/data/temp/indicator_3-5-2.csv
deleted file mode 100644
index 1ec175cd..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-5-2.csv
+++ /dev/null
@@ -1,91 +0,0 @@
-Year,Geography,Value
-2014/2015,,8
-2015/2016,,8.1
-2016/2017,,8.2
-2017/2018,,8.2
-2018/2019,,8
-2019/2020,,8.1
-2014/2015,Canada,8
-2014/2015,Newfoundland and Labrador,9.4
-2014/2015,Prince Edward Island,7.9
-2014/2015,Nova Scotia,7.7
-2014/2015,New Brunswick,6.6
-2014/2015,Quebec,8.3
-2014/2015,Ontario,7.3
-2014/2015,Manitoba,7.7
-2014/2015,Saskatchewan,8.3
-2014/2015,Alberta,9.4
-2014/2015,British Columbia,8.7
-2014/2015,Yukon,12.8
-2014/2015,Northwest Territories,11.9
-2014/2015,Nunavut,1.9
-2015/2016,Canada,8.1
-2015/2016,Newfoundland and Labrador,9.3
-2015/2016,Prince Edward Island,8.1
-2015/2016,Nova Scotia,7.8
-2015/2016,New Brunswick,6.8
-2015/2016,Quebec,8.3
-2015/2016,Ontario,7.5
-2015/2016,Manitoba,7.8
-2015/2016,Saskatchewan,8.5
-2015/2016,Alberta,9.3
-2015/2016,British Columbia,8.9
-2015/2016,Yukon,13.2
-2015/2016,Northwest Territories,11.8
-2015/2016,Nunavut,1.8
-2016/2017,Canada,8.2
-2016/2017,Newfoundland and Labrador,9.2
-2016/2017,Prince Edward Island,8.2
-2016/2017,Nova Scotia,7.7
-2016/2017,New Brunswick,7
-2016/2017,Quebec,8.4
-2016/2017,Ontario,7.7
-2016/2017,Manitoba,7.8
-2016/2017,Saskatchewan,8.3
-2016/2017,Alberta,8.9
-2016/2017,British Columbia,8.8
-2016/2017,Yukon,13.3
-2016/2017,Northwest Territories,11.5
-2016/2017,Nunavut,1.7
-2017/2018,Canada,8.2
-2017/2018,Newfoundland and Labrador,9.1
-2017/2018,Prince Edward Island,8.1
-2017/2018,Nova Scotia,7.8
-2017/2018,New Brunswick,6.9
-2017/2018,Quebec,8.5
-2017/2018,Ontario,7.7
-2017/2018,Manitoba,7.7
-2017/2018,Saskatchewan,8
-2017/2018,Alberta,8.8
-2017/2018,British Columbia,8.9
-2017/2018,Yukon,13.1
-2017/2018,Northwest Territories,12.1
-2017/2018,Nunavut,2.8
-2018/2019,Canada,8
-2018/2019,Newfoundland and Labrador,8.8
-2018/2019,Prince Edward Island,8
-2018/2019,Nova Scotia,7.7
-2018/2019,New Brunswick,6.8
-2018/2019,Quebec,8.4
-2018/2019,Ontario,7.5
-2018/2019,Manitoba,7.5
-2018/2019,Saskatchewan,7.8
-2018/2019,Alberta,8.6
-2018/2019,British Columbia,8.8
-2018/2019,Yukon,13
-2018/2019,Northwest Territories,11.9
-2018/2019,Nunavut,3.6
-2019/2020,Canada,8.1
-2019/2020,Newfoundland and Labrador,8.8
-2019/2020,Prince Edward Island,8
-2019/2020,Nova Scotia,7.8
-2019/2020,New Brunswick,6.9
-2019/2020,Quebec,8.5
-2019/2020,Ontario,7.6
-2019/2020,Manitoba,7.5
-2019/2020,Saskatchewan,7.4
-2019/2020,Alberta,8.6
-2019/2020,British Columbia,8.8
-2019/2020,Yukon,13
-2019/2020,Northwest Territories,11.7
-2019/2020,Nunavut,3.8
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-6-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-6-1.csv
deleted file mode 100644
index 05742df3..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-6-1.csv
+++ /dev/null
@@ -1,991 +0,0 @@
-Year,Age,Sex,Cause of death,Value
-2015,,,,6.4
-2016,,,,5.9
-2017,,,,5.4
-2018,,,,5
-2019,,,,4.8
-2015,All ages,Both sexes,Motor vehicle accidents,5.8
-2015,All ages,Both sexes,Other land transport accidents,0.2
-2015,All ages,Males,Transport accidents,9.5
-2015,All ages,Males,Motor vehicle accidents,8.4
-2015,All ages,Males,Other land transport accidents,0.3
-2015,All ages,Females,Transport accidents,3.4
-2015,All ages,Females,Motor vehicle accidents,3.2
-2015,All ages,Females,Other land transport accidents,0.1
-2015,Under 1 year,Both sexes,Transport accidents,1.6
-2015,Under 1 year,Both sexes,Motor vehicle accidents,1.6
-2015,Under 1 year,Both sexes,Other land transport accidents,0
-2015,Under 1 year,Males,Transport accidents,1
-2015,Under 1 year,Males,Motor vehicle accidents,1
-2015,Under 1 year,Males,Other land transport accidents,0
-2015,Under 1 year,Females,Transport accidents,2.1
-2015,Under 1 year,Females,Motor vehicle accidents,2.1
-2015,Under 1 year,Females,Other land transport accidents,0
-2015,1 to 4 years,Both sexes,Transport accidents,1.6
-2015,1 to 4 years,Both sexes,Motor vehicle accidents,1.6
-2015,1 to 4 years,Both sexes,Other land transport accidents,0.1
-2015,1 to 4 years,Males,Transport accidents,1.8
-2015,1 to 4 years,Males,Motor vehicle accidents,1.8
-2015,1 to 4 years,Males,Other land transport accidents,0
-2015,1 to 4 years,Females,Transport accidents,1.5
-2015,1 to 4 years,Females,Motor vehicle accidents,1.3
-2015,1 to 4 years,Females,Other land transport accidents,0.1
-2015,5 to 9 years,Both sexes,Transport accidents,0.9
-2015,5 to 9 years,Both sexes,Motor vehicle accidents,0.8
-2015,5 to 9 years,Both sexes,Other land transport accidents,0.1
-2015,5 to 9 years,Males,Transport accidents,1.5
-2015,5 to 9 years,Males,Motor vehicle accidents,1.3
-2015,5 to 9 years,Males,Other land transport accidents,0.2
-2015,5 to 9 years,Females,Transport accidents,0.3
-2015,5 to 9 years,Females,Motor vehicle accidents,0.3
-2015,5 to 9 years,Females,Other land transport accidents,0
-2015,10 to 14 years,Both sexes,Transport accidents,1.1
-2015,10 to 14 years,Both sexes,Motor vehicle accidents,1.1
-2015,10 to 14 years,Both sexes,Other land transport accidents,0.1
-2015,10 to 14 years,Males,Transport accidents,1
-2015,10 to 14 years,Males,Motor vehicle accidents,1
-2015,10 to 14 years,Males,Other land transport accidents,0
-2015,10 to 14 years,Females,Transport accidents,1.2
-2015,10 to 14 years,Females,Motor vehicle accidents,1.1
-2015,10 to 14 years,Females,Other land transport accidents,0.1
-2015,15 to 19 years,Both sexes,Transport accidents,7.3
-2015,15 to 19 years,Both sexes,Motor vehicle accidents,7.2
-2015,15 to 19 years,Both sexes,Other land transport accidents,0.1
-2015,15 to 19 years,Males,Transport accidents,9.8
-2015,15 to 19 years,Males,Motor vehicle accidents,9.8
-2015,15 to 19 years,Males,Other land transport accidents,0
-2015,15 to 19 years,Females,Transport accidents,4.6
-2015,15 to 19 years,Females,Motor vehicle accidents,4.4
-2015,15 to 19 years,Females,Other land transport accidents,0.2
-2015,20 to 24 years,Both sexes,Transport accidents,9.7
-2015,20 to 24 years,Both sexes,Motor vehicle accidents,8.9
-2015,20 to 24 years,Both sexes,Other land transport accidents,0.4
-2015,20 to 24 years,Males,Transport accidents,14.3
-2015,20 to 24 years,Males,Motor vehicle accidents,13.2
-2015,20 to 24 years,Males,Other land transport accidents,0.4
-2015,20 to 24 years,Females,Transport accidents,4.8
-2015,20 to 24 years,Females,Motor vehicle accidents,4.4
-2015,20 to 24 years,Females,Other land transport accidents,0.3
-2015,25 to 29 years,Both sexes,Transport accidents,7.7
-2015,25 to 29 years,Both sexes,Motor vehicle accidents,7.1
-2015,25 to 29 years,Both sexes,Other land transport accidents,0.1
-2015,25 to 29 years,Males,Transport accidents,12.4
-2015,25 to 29 years,Males,Motor vehicle accidents,11.4
-2015,25 to 29 years,Males,Other land transport accidents,0.2
-2015,25 to 29 years,Females,Transport accidents,2.9
-2015,25 to 29 years,Females,Motor vehicle accidents,2.9
-2015,25 to 29 years,Females,Other land transport accidents,0
-2015,30 to 34 years,Both sexes,Transport accidents,6
-2015,30 to 34 years,Both sexes,Motor vehicle accidents,5.4
-2015,30 to 34 years,Both sexes,Other land transport accidents,0.3
-2015,30 to 34 years,Males,Transport accidents,9.6
-2015,30 to 34 years,Males,Motor vehicle accidents,8.3
-2015,30 to 34 years,Males,Other land transport accidents,0.6
-2015,30 to 34 years,Females,Transport accidents,2.6
-2015,30 to 34 years,Females,Motor vehicle accidents,2.5
-2015,30 to 34 years,Females,Other land transport accidents,0.1
-2015,35 to 39 years,Both sexes,Transport accidents,4.4
-2015,35 to 39 years,Both sexes,Motor vehicle accidents,4.1
-2015,35 to 39 years,Both sexes,Other land transport accidents,0.2
-2015,35 to 39 years,Males,Transport accidents,6.5
-2015,35 to 39 years,Males,Motor vehicle accidents,5.8
-2015,35 to 39 years,Males,Other land transport accidents,0.3
-2015,35 to 39 years,Females,Transport accidents,2.3
-2015,35 to 39 years,Females,Motor vehicle accidents,2.3
-2015,35 to 39 years,Females,Other land transport accidents,0
-2015,40 to 44 years,Both sexes,Transport accidents,5.9
-2015,40 to 44 years,Both sexes,Motor vehicle accidents,5.2
-2015,40 to 44 years,Both sexes,Other land transport accidents,0.2
-2015,40 to 44 years,Males,Transport accidents,9.2
-2015,40 to 44 years,Males,Motor vehicle accidents,8
-2015,40 to 44 years,Males,Other land transport accidents,0.3
-2015,40 to 44 years,Females,Transport accidents,2.6
-2015,40 to 44 years,Females,Motor vehicle accidents,2.5
-2015,40 to 44 years,Females,Other land transport accidents,0.1
-2015,45 to 49 years,Both sexes,Transport accidents,6.4
-2015,45 to 49 years,Both sexes,Motor vehicle accidents,5.7
-2015,45 to 49 years,Both sexes,Other land transport accidents,0.1
-2015,45 to 49 years,Males,Transport accidents,9.2
-2015,45 to 49 years,Males,Motor vehicle accidents,7.9
-2015,45 to 49 years,Males,Other land transport accidents,0.2
-2015,45 to 49 years,Females,Transport accidents,3.6
-2015,45 to 49 years,Females,Motor vehicle accidents,3.5
-2015,45 to 49 years,Females,Other land transport accidents,0
-2015,50 to 54 years,Both sexes,Transport accidents,6.7
-2015,50 to 54 years,Both sexes,Motor vehicle accidents,5.7
-2015,50 to 54 years,Both sexes,Other land transport accidents,0.1
-2015,50 to 54 years,Males,Transport accidents,10.8
-2015,50 to 54 years,Males,Motor vehicle accidents,9.1
-2015,50 to 54 years,Males,Other land transport accidents,0.1
-2015,50 to 54 years,Females,Transport accidents,2.5
-2015,50 to 54 years,Females,Motor vehicle accidents,2.3
-2015,50 to 54 years,Females,Other land transport accidents,0.1
-2015,55 to 59 years,Both sexes,Transport accidents,8.1
-2015,55 to 59 years,Both sexes,Motor vehicle accidents,6.7
-2015,55 to 59 years,Both sexes,Other land transport accidents,0.2
-2015,55 to 59 years,Males,Transport accidents,13.4
-2015,55 to 59 years,Males,Motor vehicle accidents,11
-2015,55 to 59 years,Males,Other land transport accidents,0.4
-2015,55 to 59 years,Females,Transport accidents,2.8
-2015,55 to 59 years,Females,Motor vehicle accidents,2.5
-2015,55 to 59 years,Females,Other land transport accidents,0.1
-2015,60 to 64 years,Both sexes,Transport accidents,6.8
-2015,60 to 64 years,Both sexes,Motor vehicle accidents,5.7
-2015,60 to 64 years,Both sexes,Other land transport accidents,0.4
-2015,60 to 64 years,Males,Transport accidents,10.7
-2015,60 to 64 years,Males,Motor vehicle accidents,8.7
-2015,60 to 64 years,Males,Other land transport accidents,0.5
-2015,60 to 64 years,Females,Transport accidents,3.1
-2015,60 to 64 years,Females,Motor vehicle accidents,2.7
-2015,60 to 64 years,Females,Other land transport accidents,0.2
-2015,65 to 69 years,Both sexes,Transport accidents,6.6
-2015,65 to 69 years,Both sexes,Motor vehicle accidents,5.4
-2015,65 to 69 years,Both sexes,Other land transport accidents,0.2
-2015,65 to 69 years,Males,Transport accidents,8.6
-2015,65 to 69 years,Males,Motor vehicle accidents,7
-2015,65 to 69 years,Males,Other land transport accidents,0.1
-2015,65 to 69 years,Females,Transport accidents,4.7
-2015,65 to 69 years,Females,Motor vehicle accidents,4
-2015,65 to 69 years,Females,Other land transport accidents,0.2
-2015,70 to 74 years,Both sexes,Transport accidents,8.1
-2015,70 to 74 years,Both sexes,Motor vehicle accidents,7.1
-2015,70 to 74 years,Both sexes,Other land transport accidents,0.2
-2015,70 to 74 years,Males,Transport accidents,11.5
-2015,70 to 74 years,Males,Motor vehicle accidents,9.7
-2015,70 to 74 years,Males,Other land transport accidents,0.5
-2015,70 to 74 years,Females,Transport accidents,5
-2015,70 to 74 years,Females,Motor vehicle accidents,4.7
-2015,70 to 74 years,Females,Other land transport accidents,0
-2015,75 to 79 years,Both sexes,Transport accidents,10.5
-2015,75 to 79 years,Both sexes,Motor vehicle accidents,9.9
-2015,75 to 79 years,Both sexes,Other land transport accidents,0.2
-2015,75 to 79 years,Males,Transport accidents,15.3
-2015,75 to 79 years,Males,Motor vehicle accidents,14.2
-2015,75 to 79 years,Males,Other land transport accidents,0.2
-2015,75 to 79 years,Females,Transport accidents,6.4
-2015,75 to 79 years,Females,Motor vehicle accidents,6.3
-2015,75 to 79 years,Females,Other land transport accidents,0.2
-2015,80 to 84 years,Both sexes,Transport accidents,14.5
-2015,80 to 84 years,Both sexes,Motor vehicle accidents,13.3
-2015,80 to 84 years,Both sexes,Other land transport accidents,0.4
-2015,80 to 84 years,Males,Transport accidents,20
-2015,80 to 84 years,Males,Motor vehicle accidents,18.1
-2015,80 to 84 years,Males,Other land transport accidents,0.6
-2015,80 to 84 years,Females,Transport accidents,10.3
-2015,80 to 84 years,Females,Motor vehicle accidents,9.6
-2015,80 to 84 years,Females,Other land transport accidents,0.2
-2015,85 to 89 years,Both sexes,Transport accidents,14.4
-2015,85 to 89 years,Both sexes,Motor vehicle accidents,13.4
-2015,85 to 89 years,Both sexes,Other land transport accidents,0.4
-2015,85 to 89 years,Males,Transport accidents,23.3
-2015,85 to 89 years,Males,Motor vehicle accidents,20.5
-2015,85 to 89 years,Males,Other land transport accidents,1.1
-2015,85 to 89 years,Females,Transport accidents,9.1
-2015,85 to 89 years,Females,Motor vehicle accidents,9.1
-2015,85 to 89 years,Females,Other land transport accidents,0
-2015,90 years and over,Both sexes,Transport accidents,14
-2015,90 years and over,Both sexes,Motor vehicle accidents,13.6
-2015,90 years and over,Both sexes,Other land transport accidents,0
-2015,90 years and over,Males,Transport accidents,24
-2015,90 years and over,Males,Motor vehicle accidents,24
-2015,90 years and over,Males,Other land transport accidents,0
-2015,90 years and over,Females,Transport accidents,10
-2015,90 years and over,Females,Motor vehicle accidents,9.5
-2015,90 years and over,Females,Other land transport accidents,0
-2015,Not stated,Both sexes,Transport accidents,0
-2015,Not stated,Both sexes,Motor vehicle accidents,0
-2015,Not stated,Both sexes,Other land transport accidents,0
-2015,Not stated,Males,Transport accidents,0
-2015,Not stated,Males,Motor vehicle accidents,0
-2015,Not stated,Males,Other land transport accidents,0
-2015,Not stated,Females,Transport accidents,0
-2015,Not stated,Females,Motor vehicle accidents,0
-2015,Not stated,Females,Other land transport accidents,0
-2016,All ages,Both sexes,Motor vehicle accidents,5.4
-2016,All ages,Both sexes,Other land transport accidents,0.1
-2016,All ages,Males,Transport accidents,8.4
-2016,All ages,Males,Motor vehicle accidents,7.6
-2016,All ages,Males,Other land transport accidents,0.2
-2016,All ages,Females,Transport accidents,3.5
-2016,All ages,Females,Motor vehicle accidents,3.2
-2016,All ages,Females,Other land transport accidents,0.1
-2016,Under 1 year,Both sexes,Transport accidents,0.5
-2016,Under 1 year,Both sexes,Motor vehicle accidents,0.5
-2016,Under 1 year,Both sexes,Other land transport accidents,0
-2016,Under 1 year,Males,Transport accidents,0.5
-2016,Under 1 year,Males,Motor vehicle accidents,0.5
-2016,Under 1 year,Males,Other land transport accidents,0
-2016,Under 1 year,Females,Transport accidents,0.5
-2016,Under 1 year,Females,Motor vehicle accidents,0.5
-2016,Under 1 year,Females,Other land transport accidents,0
-2016,1 to 4 years,Both sexes,Transport accidents,1.3
-2016,1 to 4 years,Both sexes,Motor vehicle accidents,1.2
-2016,1 to 4 years,Both sexes,Other land transport accidents,0.1
-2016,1 to 4 years,Males,Transport accidents,1.6
-2016,1 to 4 years,Males,Motor vehicle accidents,1.5
-2016,1 to 4 years,Males,Other land transport accidents,0.1
-2016,1 to 4 years,Females,Transport accidents,0.9
-2016,1 to 4 years,Females,Motor vehicle accidents,0.9
-2016,1 to 4 years,Females,Other land transport accidents,0
-2016,5 to 9 years,Both sexes,Transport accidents,1
-2016,5 to 9 years,Both sexes,Motor vehicle accidents,0.9
-2016,5 to 9 years,Both sexes,Other land transport accidents,0
-2016,5 to 9 years,Males,Transport accidents,1
-2016,5 to 9 years,Males,Motor vehicle accidents,1
-2016,5 to 9 years,Males,Other land transport accidents,0
-2016,5 to 9 years,Females,Transport accidents,0.9
-2016,5 to 9 years,Females,Motor vehicle accidents,0.8
-2016,5 to 9 years,Females,Other land transport accidents,0
-2016,10 to 14 years,Both sexes,Transport accidents,1.4
-2016,10 to 14 years,Both sexes,Motor vehicle accidents,1.4
-2016,10 to 14 years,Both sexes,Other land transport accidents,0.1
-2016,10 to 14 years,Males,Transport accidents,1.8
-2016,10 to 14 years,Males,Motor vehicle accidents,1.7
-2016,10 to 14 years,Males,Other land transport accidents,0.1
-2016,10 to 14 years,Females,Transport accidents,1.1
-2016,10 to 14 years,Females,Motor vehicle accidents,1.1
-2016,10 to 14 years,Females,Other land transport accidents,0
-2016,15 to 19 years,Both sexes,Transport accidents,6.5
-2016,15 to 19 years,Both sexes,Motor vehicle accidents,6
-2016,15 to 19 years,Both sexes,Other land transport accidents,0.3
-2016,15 to 19 years,Males,Transport accidents,8.1
-2016,15 to 19 years,Males,Motor vehicle accidents,7.3
-2016,15 to 19 years,Males,Other land transport accidents,0.5
-2016,15 to 19 years,Females,Transport accidents,4.8
-2016,15 to 19 years,Females,Motor vehicle accidents,4.7
-2016,15 to 19 years,Females,Other land transport accidents,0.1
-2016,20 to 24 years,Both sexes,Transport accidents,8.3
-2016,20 to 24 years,Both sexes,Motor vehicle accidents,7.7
-2016,20 to 24 years,Both sexes,Other land transport accidents,0.1
-2016,20 to 24 years,Males,Transport accidents,12.5
-2016,20 to 24 years,Males,Motor vehicle accidents,11.5
-2016,20 to 24 years,Males,Other land transport accidents,0.2
-2016,20 to 24 years,Females,Transport accidents,3.9
-2016,20 to 24 years,Females,Motor vehicle accidents,3.7
-2016,20 to 24 years,Females,Other land transport accidents,0.1
-2016,25 to 29 years,Both sexes,Transport accidents,7.9
-2016,25 to 29 years,Both sexes,Motor vehicle accidents,7.5
-2016,25 to 29 years,Both sexes,Other land transport accidents,0.2
-2016,25 to 29 years,Males,Transport accidents,11.5
-2016,25 to 29 years,Males,Motor vehicle accidents,11
-2016,25 to 29 years,Males,Other land transport accidents,0.3
-2016,25 to 29 years,Females,Transport accidents,4.2
-2016,25 to 29 years,Females,Motor vehicle accidents,4
-2016,25 to 29 years,Females,Other land transport accidents,0
-2016,30 to 34 years,Both sexes,Transport accidents,5.8
-2016,30 to 34 years,Both sexes,Motor vehicle accidents,5.5
-2016,30 to 34 years,Both sexes,Other land transport accidents,0
-2016,30 to 34 years,Males,Transport accidents,8.5
-2016,30 to 34 years,Males,Motor vehicle accidents,8.1
-2016,30 to 34 years,Males,Other land transport accidents,0
-2016,30 to 34 years,Females,Transport accidents,3.2
-2016,30 to 34 years,Females,Motor vehicle accidents,3
-2016,30 to 34 years,Females,Other land transport accidents,0.1
-2016,35 to 39 years,Both sexes,Transport accidents,5
-2016,35 to 39 years,Both sexes,Motor vehicle accidents,4.6
-2016,35 to 39 years,Both sexes,Other land transport accidents,0.1
-2016,35 to 39 years,Males,Transport accidents,7.2
-2016,35 to 39 years,Males,Motor vehicle accidents,6.6
-2016,35 to 39 years,Males,Other land transport accidents,0.2
-2016,35 to 39 years,Females,Transport accidents,2.8
-2016,35 to 39 years,Females,Motor vehicle accidents,2.7
-2016,35 to 39 years,Females,Other land transport accidents,0.1
-2016,40 to 44 years,Both sexes,Transport accidents,5.5
-2016,40 to 44 years,Both sexes,Motor vehicle accidents,5
-2016,40 to 44 years,Both sexes,Other land transport accidents,0.1
-2016,40 to 44 years,Males,Transport accidents,8.7
-2016,40 to 44 years,Males,Motor vehicle accidents,8
-2016,40 to 44 years,Males,Other land transport accidents,0.2
-2016,40 to 44 years,Females,Transport accidents,2.2
-2016,40 to 44 years,Females,Motor vehicle accidents,2
-2016,40 to 44 years,Females,Other land transport accidents,0.1
-2016,45 to 49 years,Both sexes,Transport accidents,5.1
-2016,45 to 49 years,Both sexes,Motor vehicle accidents,4.5
-2016,45 to 49 years,Both sexes,Other land transport accidents,0.1
-2016,45 to 49 years,Males,Transport accidents,8.1
-2016,45 to 49 years,Males,Motor vehicle accidents,7.1
-2016,45 to 49 years,Males,Other land transport accidents,0.2
-2016,45 to 49 years,Females,Transport accidents,2.1
-2016,45 to 49 years,Females,Motor vehicle accidents,1.9
-2016,45 to 49 years,Females,Other land transport accidents,0
-2016,50 to 54 years,Both sexes,Transport accidents,5.7
-2016,50 to 54 years,Both sexes,Motor vehicle accidents,5.2
-2016,50 to 54 years,Both sexes,Other land transport accidents,0.1
-2016,50 to 54 years,Males,Transport accidents,8.4
-2016,50 to 54 years,Males,Motor vehicle accidents,7.4
-2016,50 to 54 years,Males,Other land transport accidents,0.3
-2016,50 to 54 years,Females,Transport accidents,3
-2016,50 to 54 years,Females,Motor vehicle accidents,2.9
-2016,50 to 54 years,Females,Other land transport accidents,0
-2016,55 to 59 years,Both sexes,Transport accidents,6.6
-2016,55 to 59 years,Both sexes,Motor vehicle accidents,5.5
-2016,55 to 59 years,Both sexes,Other land transport accidents,0.2
-2016,55 to 59 years,Males,Transport accidents,10
-2016,55 to 59 years,Males,Motor vehicle accidents,8.2
-2016,55 to 59 years,Males,Other land transport accidents,0.3
-2016,55 to 59 years,Females,Transport accidents,3.2
-2016,55 to 59 years,Females,Motor vehicle accidents,2.8
-2016,55 to 59 years,Females,Other land transport accidents,0
-2016,60 to 64 years,Both sexes,Transport accidents,6.7
-2016,60 to 64 years,Both sexes,Motor vehicle accidents,5.8
-2016,60 to 64 years,Both sexes,Other land transport accidents,0.1
-2016,60 to 64 years,Males,Transport accidents,10.7
-2016,60 to 64 years,Males,Motor vehicle accidents,9.1
-2016,60 to 64 years,Males,Other land transport accidents,0.1
-2016,60 to 64 years,Females,Transport accidents,2.8
-2016,60 to 64 years,Females,Motor vehicle accidents,2.6
-2016,60 to 64 years,Females,Other land transport accidents,0.1
-2016,65 to 69 years,Both sexes,Transport accidents,6.6
-2016,65 to 69 years,Both sexes,Motor vehicle accidents,5.7
-2016,65 to 69 years,Both sexes,Other land transport accidents,0.3
-2016,65 to 69 years,Males,Transport accidents,8.5
-2016,65 to 69 years,Males,Motor vehicle accidents,7.3
-2016,65 to 69 years,Males,Other land transport accidents,0.4
-2016,65 to 69 years,Females,Transport accidents,4.7
-2016,65 to 69 years,Females,Motor vehicle accidents,4.2
-2016,65 to 69 years,Females,Other land transport accidents,0.1
-2016,70 to 74 years,Both sexes,Transport accidents,7.6
-2016,70 to 74 years,Both sexes,Motor vehicle accidents,6.9
-2016,70 to 74 years,Both sexes,Other land transport accidents,0.1
-2016,70 to 74 years,Males,Transport accidents,10.2
-2016,70 to 74 years,Males,Motor vehicle accidents,9.2
-2016,70 to 74 years,Males,Other land transport accidents,0
-2016,70 to 74 years,Females,Transport accidents,5.2
-2016,70 to 74 years,Females,Motor vehicle accidents,4.8
-2016,70 to 74 years,Females,Other land transport accidents,0.3
-2016,75 to 79 years,Both sexes,Transport accidents,8.9
-2016,75 to 79 years,Both sexes,Motor vehicle accidents,7.5
-2016,75 to 79 years,Both sexes,Other land transport accidents,0.6
-2016,75 to 79 years,Males,Transport accidents,11.4
-2016,75 to 79 years,Males,Motor vehicle accidents,9.7
-2016,75 to 79 years,Males,Other land transport accidents,0.8
-2016,75 to 79 years,Females,Transport accidents,6.8
-2016,75 to 79 years,Females,Motor vehicle accidents,5.7
-2016,75 to 79 years,Females,Other land transport accidents,0.4
-2016,80 to 84 years,Both sexes,Transport accidents,12.9
-2016,80 to 84 years,Both sexes,Motor vehicle accidents,12.1
-2016,80 to 84 years,Both sexes,Other land transport accidents,0.1
-2016,80 to 84 years,Males,Transport accidents,15.4
-2016,80 to 84 years,Males,Motor vehicle accidents,14.1
-2016,80 to 84 years,Males,Other land transport accidents,0
-2016,80 to 84 years,Females,Transport accidents,11
-2016,80 to 84 years,Females,Motor vehicle accidents,10.5
-2016,80 to 84 years,Females,Other land transport accidents,0.2
-2016,85 to 89 years,Both sexes,Transport accidents,13.4
-2016,85 to 89 years,Both sexes,Motor vehicle accidents,13.2
-2016,85 to 89 years,Both sexes,Other land transport accidents,0
-2016,85 to 89 years,Males,Transport accidents,19.1
-2016,85 to 89 years,Males,Motor vehicle accidents,18.6
-2016,85 to 89 years,Males,Other land transport accidents,0
-2016,85 to 89 years,Females,Transport accidents,9.9
-2016,85 to 89 years,Females,Motor vehicle accidents,9.9
-2016,85 to 89 years,Females,Other land transport accidents,0
-2016,90 years and over,Both sexes,Transport accidents,13.3
-2016,90 years and over,Both sexes,Motor vehicle accidents,13
-2016,90 years and over,Both sexes,Other land transport accidents,0
-2016,90 years and over,Males,Transport accidents,27.2
-2016,90 years and over,Males,Motor vehicle accidents,27.2
-2016,90 years and over,Males,Other land transport accidents,0
-2016,90 years and over,Females,Transport accidents,7.7
-2016,90 years and over,Females,Motor vehicle accidents,7.2
-2016,90 years and over,Females,Other land transport accidents,0
-2016,Not stated,Both sexes,Transport accidents,0
-2016,Not stated,Both sexes,Motor vehicle accidents,0
-2016,Not stated,Both sexes,Other land transport accidents,0
-2016,Not stated,Males,Transport accidents,0
-2016,Not stated,Males,Motor vehicle accidents,0
-2016,Not stated,Males,Other land transport accidents,0
-2016,Not stated,Females,Transport accidents,0
-2016,Not stated,Females,Motor vehicle accidents,0
-2016,Not stated,Females,Other land transport accidents,0
-2017,All ages,Both sexes,Motor vehicle accidents,4.8
-2017,All ages,Both sexes,Other land transport accidents,0.2
-2017,All ages,Males,Transport accidents,7.8
-2017,All ages,Males,Motor vehicle accidents,6.8
-2017,All ages,Males,Other land transport accidents,0.3
-2017,All ages,Females,Transport accidents,3
-2017,All ages,Females,Motor vehicle accidents,2.8
-2017,All ages,Females,Other land transport accidents,0.1
-2017,Under 1 year,Both sexes,Transport accidents,0.3
-2017,Under 1 year,Both sexes,Motor vehicle accidents,0.3
-2017,Under 1 year,Both sexes,Other land transport accidents,0
-2017,Under 1 year,Males,Transport accidents,0.5
-2017,Under 1 year,Males,Motor vehicle accidents,0.5
-2017,Under 1 year,Males,Other land transport accidents,0
-2017,Under 1 year,Females,Transport accidents,0
-2017,Under 1 year,Females,Motor vehicle accidents,0
-2017,Under 1 year,Females,Other land transport accidents,0
-2017,1 to 4 years,Both sexes,Transport accidents,1.8
-2017,1 to 4 years,Both sexes,Motor vehicle accidents,1.8
-2017,1 to 4 years,Both sexes,Other land transport accidents,0
-2017,1 to 4 years,Males,Transport accidents,2
-2017,1 to 4 years,Males,Motor vehicle accidents,2
-2017,1 to 4 years,Males,Other land transport accidents,0
-2017,1 to 4 years,Females,Transport accidents,1.6
-2017,1 to 4 years,Females,Motor vehicle accidents,1.6
-2017,1 to 4 years,Females,Other land transport accidents,0
-2017,5 to 9 years,Both sexes,Transport accidents,1.3
-2017,5 to 9 years,Both sexes,Motor vehicle accidents,1.2
-2017,5 to 9 years,Both sexes,Other land transport accidents,0
-2017,5 to 9 years,Males,Transport accidents,1.4
-2017,5 to 9 years,Males,Motor vehicle accidents,1.2
-2017,5 to 9 years,Males,Other land transport accidents,0.1
-2017,5 to 9 years,Females,Transport accidents,1.2
-2017,5 to 9 years,Females,Motor vehicle accidents,1.2
-2017,5 to 9 years,Females,Other land transport accidents,0
-2017,10 to 14 years,Both sexes,Transport accidents,1.1
-2017,10 to 14 years,Both sexes,Motor vehicle accidents,1
-2017,10 to 14 years,Both sexes,Other land transport accidents,0.1
-2017,10 to 14 years,Males,Transport accidents,1.3
-2017,10 to 14 years,Males,Motor vehicle accidents,1.1
-2017,10 to 14 years,Males,Other land transport accidents,0
-2017,10 to 14 years,Females,Transport accidents,1
-2017,10 to 14 years,Females,Motor vehicle accidents,0.9
-2017,10 to 14 years,Females,Other land transport accidents,0.1
-2017,15 to 19 years,Both sexes,Transport accidents,5.7
-2017,15 to 19 years,Both sexes,Motor vehicle accidents,5.4
-2017,15 to 19 years,Both sexes,Other land transport accidents,0.1
-2017,15 to 19 years,Males,Transport accidents,7.6
-2017,15 to 19 years,Males,Motor vehicle accidents,6.8
-2017,15 to 19 years,Males,Other land transport accidents,0.3
-2017,15 to 19 years,Females,Transport accidents,3.8
-2017,15 to 19 years,Females,Motor vehicle accidents,3.8
-2017,15 to 19 years,Females,Other land transport accidents,0
-2017,20 to 24 years,Both sexes,Transport accidents,7
-2017,20 to 24 years,Both sexes,Motor vehicle accidents,6.6
-2017,20 to 24 years,Both sexes,Other land transport accidents,0.2
-2017,20 to 24 years,Males,Transport accidents,10
-2017,20 to 24 years,Males,Motor vehicle accidents,9.3
-2017,20 to 24 years,Males,Other land transport accidents,0.4
-2017,20 to 24 years,Females,Transport accidents,3.8
-2017,20 to 24 years,Females,Motor vehicle accidents,3.8
-2017,20 to 24 years,Females,Other land transport accidents,0.1
-2017,25 to 29 years,Both sexes,Transport accidents,6.6
-2017,25 to 29 years,Both sexes,Motor vehicle accidents,5.8
-2017,25 to 29 years,Both sexes,Other land transport accidents,0.2
-2017,25 to 29 years,Males,Transport accidents,10.1
-2017,25 to 29 years,Males,Motor vehicle accidents,8.7
-2017,25 to 29 years,Males,Other land transport accidents,0.3
-2017,25 to 29 years,Females,Transport accidents,3.1
-2017,25 to 29 years,Females,Motor vehicle accidents,2.9
-2017,25 to 29 years,Females,Other land transport accidents,0.1
-2017,30 to 34 years,Both sexes,Transport accidents,6.1
-2017,30 to 34 years,Both sexes,Motor vehicle accidents,5.8
-2017,30 to 34 years,Both sexes,Other land transport accidents,0.1
-2017,30 to 34 years,Males,Transport accidents,10
-2017,30 to 34 years,Males,Motor vehicle accidents,9.5
-2017,30 to 34 years,Males,Other land transport accidents,0.2
-2017,30 to 34 years,Females,Transport accidents,2.2
-2017,30 to 34 years,Females,Motor vehicle accidents,2.1
-2017,30 to 34 years,Females,Other land transport accidents,0.1
-2017,35 to 39 years,Both sexes,Transport accidents,6.3
-2017,35 to 39 years,Both sexes,Motor vehicle accidents,5.7
-2017,35 to 39 years,Both sexes,Other land transport accidents,0.2
-2017,35 to 39 years,Males,Transport accidents,9.5
-2017,35 to 39 years,Males,Motor vehicle accidents,8.5
-2017,35 to 39 years,Males,Other land transport accidents,0.2
-2017,35 to 39 years,Females,Transport accidents,3
-2017,35 to 39 years,Females,Motor vehicle accidents,2.9
-2017,35 to 39 years,Females,Other land transport accidents,0.1
-2017,40 to 44 years,Both sexes,Transport accidents,5.2
-2017,40 to 44 years,Both sexes,Motor vehicle accidents,4.6
-2017,40 to 44 years,Both sexes,Other land transport accidents,0.2
-2017,40 to 44 years,Males,Transport accidents,8.1
-2017,40 to 44 years,Males,Motor vehicle accidents,7
-2017,40 to 44 years,Males,Other land transport accidents,0.3
-2017,40 to 44 years,Females,Transport accidents,2.4
-2017,40 to 44 years,Females,Motor vehicle accidents,2.3
-2017,40 to 44 years,Females,Other land transport accidents,0.1
-2017,45 to 49 years,Both sexes,Transport accidents,4.7
-2017,45 to 49 years,Both sexes,Motor vehicle accidents,4.1
-2017,45 to 49 years,Both sexes,Other land transport accidents,0.2
-2017,45 to 49 years,Males,Transport accidents,6.7
-2017,45 to 49 years,Males,Motor vehicle accidents,6
-2017,45 to 49 years,Males,Other land transport accidents,0.1
-2017,45 to 49 years,Females,Transport accidents,2.7
-2017,45 to 49 years,Females,Motor vehicle accidents,2.2
-2017,45 to 49 years,Females,Other land transport accidents,0.3
-2017,50 to 54 years,Both sexes,Transport accidents,5.5
-2017,50 to 54 years,Both sexes,Motor vehicle accidents,4.9
-2017,50 to 54 years,Both sexes,Other land transport accidents,0.1
-2017,50 to 54 years,Males,Transport accidents,8.2
-2017,50 to 54 years,Males,Motor vehicle accidents,7
-2017,50 to 54 years,Males,Other land transport accidents,0.2
-2017,50 to 54 years,Females,Transport accidents,2.8
-2017,50 to 54 years,Females,Motor vehicle accidents,2.7
-2017,50 to 54 years,Females,Other land transport accidents,0
-2017,55 to 59 years,Both sexes,Transport accidents,5.7
-2017,55 to 59 years,Both sexes,Motor vehicle accidents,5.1
-2017,55 to 59 years,Both sexes,Other land transport accidents,0.2
-2017,55 to 59 years,Males,Transport accidents,8.1
-2017,55 to 59 years,Males,Motor vehicle accidents,7.3
-2017,55 to 59 years,Males,Other land transport accidents,0.1
-2017,55 to 59 years,Females,Transport accidents,3.4
-2017,55 to 59 years,Females,Motor vehicle accidents,2.9
-2017,55 to 59 years,Females,Other land transport accidents,0.2
-2017,60 to 64 years,Both sexes,Transport accidents,6.6
-2017,60 to 64 years,Both sexes,Motor vehicle accidents,5.4
-2017,60 to 64 years,Both sexes,Other land transport accidents,0.2
-2017,60 to 64 years,Males,Transport accidents,9.4
-2017,60 to 64 years,Males,Motor vehicle accidents,7.3
-2017,60 to 64 years,Males,Other land transport accidents,0.3
-2017,60 to 64 years,Females,Transport accidents,3.9
-2017,60 to 64 years,Females,Motor vehicle accidents,3.6
-2017,60 to 64 years,Females,Other land transport accidents,0.1
-2017,65 to 69 years,Both sexes,Transport accidents,5.3
-2017,65 to 69 years,Both sexes,Motor vehicle accidents,4.5
-2017,65 to 69 years,Both sexes,Other land transport accidents,0.3
-2017,65 to 69 years,Males,Transport accidents,8.1
-2017,65 to 69 years,Males,Motor vehicle accidents,6.6
-2017,65 to 69 years,Males,Other land transport accidents,0.5
-2017,65 to 69 years,Females,Transport accidents,2.5
-2017,65 to 69 years,Females,Motor vehicle accidents,2.4
-2017,65 to 69 years,Females,Other land transport accidents,0.1
-2017,70 to 74 years,Both sexes,Transport accidents,5.8
-2017,70 to 74 years,Both sexes,Motor vehicle accidents,5
-2017,70 to 74 years,Both sexes,Other land transport accidents,0.4
-2017,70 to 74 years,Males,Transport accidents,8.5
-2017,70 to 74 years,Males,Motor vehicle accidents,7.3
-2017,70 to 74 years,Males,Other land transport accidents,0.5
-2017,70 to 74 years,Females,Transport accidents,3.2
-2017,70 to 74 years,Females,Motor vehicle accidents,2.9
-2017,70 to 74 years,Females,Other land transport accidents,0.2
-2017,75 to 79 years,Both sexes,Transport accidents,7.3
-2017,75 to 79 years,Both sexes,Motor vehicle accidents,7
-2017,75 to 79 years,Both sexes,Other land transport accidents,0.2
-2017,75 to 79 years,Males,Transport accidents,10.5
-2017,75 to 79 years,Males,Motor vehicle accidents,9.7
-2017,75 to 79 years,Males,Other land transport accidents,0.4
-2017,75 to 79 years,Females,Transport accidents,4.6
-2017,75 to 79 years,Females,Motor vehicle accidents,4.6
-2017,75 to 79 years,Females,Other land transport accidents,0
-2017,80 to 84 years,Both sexes,Transport accidents,9.4
-2017,80 to 84 years,Both sexes,Motor vehicle accidents,8.3
-2017,80 to 84 years,Both sexes,Other land transport accidents,0.7
-2017,80 to 84 years,Males,Transport accidents,12.1
-2017,80 to 84 years,Males,Motor vehicle accidents,10.6
-2017,80 to 84 years,Males,Other land transport accidents,0.9
-2017,80 to 84 years,Females,Transport accidents,7.4
-2017,80 to 84 years,Females,Motor vehicle accidents,6.5
-2017,80 to 84 years,Females,Other land transport accidents,0.5
-2017,85 to 89 years,Both sexes,Transport accidents,10.5
-2017,85 to 89 years,Both sexes,Motor vehicle accidents,9.7
-2017,85 to 89 years,Both sexes,Other land transport accidents,0.4
-2017,85 to 89 years,Males,Transport accidents,14.8
-2017,85 to 89 years,Males,Motor vehicle accidents,12.8
-2017,85 to 89 years,Males,Other land transport accidents,1
-2017,85 to 89 years,Females,Transport accidents,7.8
-2017,85 to 89 years,Females,Motor vehicle accidents,7.8
-2017,85 to 89 years,Females,Other land transport accidents,0
-2017,90 years and over,Both sexes,Transport accidents,8.8
-2017,90 years and over,Both sexes,Motor vehicle accidents,8.2
-2017,90 years and over,Both sexes,Other land transport accidents,0.3
-2017,90 years and over,Males,Transport accidents,19
-2017,90 years and over,Males,Motor vehicle accidents,16.7
-2017,90 years and over,Males,Other land transport accidents,1.1
-2017,90 years and over,Females,Transport accidents,4.6
-2017,90 years and over,Females,Motor vehicle accidents,4.6
-2017,90 years and over,Females,Other land transport accidents,0
-2017,Not stated,Both sexes,Transport accidents,0
-2017,Not stated,Both sexes,Motor vehicle accidents,0
-2017,Not stated,Both sexes,Other land transport accidents,0
-2017,Not stated,Males,Transport accidents,0
-2017,Not stated,Males,Motor vehicle accidents,0
-2017,Not stated,Males,Other land transport accidents,0
-2017,Not stated,Females,Transport accidents,0
-2017,Not stated,Females,Motor vehicle accidents,0
-2017,Not stated,Females,Other land transport accidents,0
-2018,All ages,Both sexes,Motor vehicle accidents,4.5
-2018,All ages,Both sexes,Other land transport accidents,0.2
-2018,All ages,Males,Transport accidents,7.1
-2018,All ages,Males,Motor vehicle accidents,6.4
-2018,All ages,Males,Other land transport accidents,0.3
-2018,All ages,Females,Transport accidents,2.9
-2018,All ages,Females,Motor vehicle accidents,2.7
-2018,All ages,Females,Other land transport accidents,0.1
-2018,Under 1 year,Both sexes,Transport accidents,0.3
-2018,Under 1 year,Both sexes,Motor vehicle accidents,0.3
-2018,Under 1 year,Both sexes,Other land transport accidents,0
-2018,Under 1 year,Males,Transport accidents,0
-2018,Under 1 year,Males,Motor vehicle accidents,0
-2018,Under 1 year,Males,Other land transport accidents,0
-2018,Under 1 year,Females,Transport accidents,0.5
-2018,Under 1 year,Females,Motor vehicle accidents,0.5
-2018,Under 1 year,Females,Other land transport accidents,0
-2018,1 to 4 years,Both sexes,Transport accidents,1.2
-2018,1 to 4 years,Both sexes,Motor vehicle accidents,1.1
-2018,1 to 4 years,Both sexes,Other land transport accidents,0.1
-2018,1 to 4 years,Males,Transport accidents,1.2
-2018,1 to 4 years,Males,Motor vehicle accidents,1.1
-2018,1 to 4 years,Males,Other land transport accidents,0.1
-2018,1 to 4 years,Females,Transport accidents,1
-2018,1 to 4 years,Females,Motor vehicle accidents,1
-2018,1 to 4 years,Females,Other land transport accidents,0
-2018,5 to 9 years,Both sexes,Transport accidents,1
-2018,5 to 9 years,Both sexes,Motor vehicle accidents,0.9
-2018,5 to 9 years,Both sexes,Other land transport accidents,0
-2018,5 to 9 years,Males,Transport accidents,1.1
-2018,5 to 9 years,Males,Motor vehicle accidents,0.9
-2018,5 to 9 years,Males,Other land transport accidents,0.1
-2018,5 to 9 years,Females,Transport accidents,1
-2018,5 to 9 years,Females,Motor vehicle accidents,1
-2018,5 to 9 years,Females,Other land transport accidents,0
-2018,10 to 14 years,Both sexes,Transport accidents,1.1
-2018,10 to 14 years,Both sexes,Motor vehicle accidents,1
-2018,10 to 14 years,Both sexes,Other land transport accidents,0.1
-2018,10 to 14 years,Males,Transport accidents,1.4
-2018,10 to 14 years,Males,Motor vehicle accidents,1.2
-2018,10 to 14 years,Males,Other land transport accidents,0.1
-2018,10 to 14 years,Females,Transport accidents,0.8
-2018,10 to 14 years,Females,Motor vehicle accidents,0.8
-2018,10 to 14 years,Females,Other land transport accidents,0
-2018,15 to 19 years,Both sexes,Transport accidents,5.4
-2018,15 to 19 years,Both sexes,Motor vehicle accidents,5.2
-2018,15 to 19 years,Both sexes,Other land transport accidents,0.2
-2018,15 to 19 years,Males,Transport accidents,6.7
-2018,15 to 19 years,Males,Motor vehicle accidents,6.3
-2018,15 to 19 years,Males,Other land transport accidents,0.3
-2018,15 to 19 years,Females,Transport accidents,4.1
-2018,15 to 19 years,Females,Motor vehicle accidents,4
-2018,15 to 19 years,Females,Other land transport accidents,0.1
-2018,20 to 24 years,Both sexes,Transport accidents,6.8
-2018,20 to 24 years,Both sexes,Motor vehicle accidents,6.3
-2018,20 to 24 years,Both sexes,Other land transport accidents,0.2
-2018,20 to 24 years,Males,Transport accidents,9.7
-2018,20 to 24 years,Males,Motor vehicle accidents,8.8
-2018,20 to 24 years,Males,Other land transport accidents,0.4
-2018,20 to 24 years,Females,Transport accidents,3.6
-2018,20 to 24 years,Females,Motor vehicle accidents,3.5
-2018,20 to 24 years,Females,Other land transport accidents,0.1
-2018,25 to 29 years,Both sexes,Transport accidents,6
-2018,25 to 29 years,Both sexes,Motor vehicle accidents,5.7
-2018,25 to 29 years,Both sexes,Other land transport accidents,0.1
-2018,25 to 29 years,Males,Transport accidents,9
-2018,25 to 29 years,Males,Motor vehicle accidents,8.6
-2018,25 to 29 years,Males,Other land transport accidents,0.2
-2018,25 to 29 years,Females,Transport accidents,2.8
-2018,25 to 29 years,Females,Motor vehicle accidents,2.6
-2018,25 to 29 years,Females,Other land transport accidents,0
-2018,30 to 34 years,Both sexes,Transport accidents,4.7
-2018,30 to 34 years,Both sexes,Motor vehicle accidents,4.4
-2018,30 to 34 years,Both sexes,Other land transport accidents,0.2
-2018,30 to 34 years,Males,Transport accidents,7.2
-2018,30 to 34 years,Males,Motor vehicle accidents,6.8
-2018,30 to 34 years,Males,Other land transport accidents,0.3
-2018,30 to 34 years,Females,Transport accidents,2.1
-2018,30 to 34 years,Females,Motor vehicle accidents,2
-2018,30 to 34 years,Females,Other land transport accidents,0
-2018,35 to 39 years,Both sexes,Transport accidents,4.8
-2018,35 to 39 years,Both sexes,Motor vehicle accidents,4.5
-2018,35 to 39 years,Both sexes,Other land transport accidents,0.1
-2018,35 to 39 years,Males,Transport accidents,7.8
-2018,35 to 39 years,Males,Motor vehicle accidents,7.1
-2018,35 to 39 years,Males,Other land transport accidents,0.2
-2018,35 to 39 years,Females,Transport accidents,1.9
-2018,35 to 39 years,Females,Motor vehicle accidents,1.9
-2018,35 to 39 years,Females,Other land transport accidents,0
-2018,40 to 44 years,Both sexes,Transport accidents,4.7
-2018,40 to 44 years,Both sexes,Motor vehicle accidents,4.2
-2018,40 to 44 years,Both sexes,Other land transport accidents,0
-2018,40 to 44 years,Males,Transport accidents,7
-2018,40 to 44 years,Males,Motor vehicle accidents,6
-2018,40 to 44 years,Males,Other land transport accidents,0.1
-2018,40 to 44 years,Females,Transport accidents,2.4
-2018,40 to 44 years,Females,Motor vehicle accidents,2.3
-2018,40 to 44 years,Females,Other land transport accidents,0
-2018,45 to 49 years,Both sexes,Transport accidents,4.4
-2018,45 to 49 years,Both sexes,Motor vehicle accidents,4.2
-2018,45 to 49 years,Both sexes,Other land transport accidents,0.1
-2018,45 to 49 years,Males,Transport accidents,6.5
-2018,45 to 49 years,Males,Motor vehicle accidents,6.2
-2018,45 to 49 years,Males,Other land transport accidents,0.1
-2018,45 to 49 years,Females,Transport accidents,2.3
-2018,45 to 49 years,Females,Motor vehicle accidents,2.2
-2018,45 to 49 years,Females,Other land transport accidents,0.1
-2018,50 to 54 years,Both sexes,Transport accidents,5.6
-2018,50 to 54 years,Both sexes,Motor vehicle accidents,4.8
-2018,50 to 54 years,Both sexes,Other land transport accidents,0.2
-2018,50 to 54 years,Males,Transport accidents,8.1
-2018,50 to 54 years,Males,Motor vehicle accidents,7.1
-2018,50 to 54 years,Males,Other land transport accidents,0.3
-2018,50 to 54 years,Females,Transport accidents,3
-2018,50 to 54 years,Females,Motor vehicle accidents,2.6
-2018,50 to 54 years,Females,Other land transport accidents,0.1
-2018,55 to 59 years,Both sexes,Transport accidents,4.9
-2018,55 to 59 years,Both sexes,Motor vehicle accidents,4
-2018,55 to 59 years,Both sexes,Other land transport accidents,0.3
-2018,55 to 59 years,Males,Transport accidents,7.5
-2018,55 to 59 years,Males,Motor vehicle accidents,5.8
-2018,55 to 59 years,Males,Other land transport accidents,0.7
-2018,55 to 59 years,Females,Transport accidents,2.4
-2018,55 to 59 years,Females,Motor vehicle accidents,2.3
-2018,55 to 59 years,Females,Other land transport accidents,0
-2018,60 to 64 years,Both sexes,Transport accidents,6
-2018,60 to 64 years,Both sexes,Motor vehicle accidents,5.1
-2018,60 to 64 years,Both sexes,Other land transport accidents,0.3
-2018,60 to 64 years,Males,Transport accidents,8.9
-2018,60 to 64 years,Males,Motor vehicle accidents,7.8
-2018,60 to 64 years,Males,Other land transport accidents,0.5
-2018,60 to 64 years,Females,Transport accidents,3.2
-2018,60 to 64 years,Females,Motor vehicle accidents,2.6
-2018,60 to 64 years,Females,Other land transport accidents,0.2
-2018,65 to 69 years,Both sexes,Transport accidents,4.9
-2018,65 to 69 years,Both sexes,Motor vehicle accidents,4.2
-2018,65 to 69 years,Both sexes,Other land transport accidents,0.2
-2018,65 to 69 years,Males,Transport accidents,6.2
-2018,65 to 69 years,Males,Motor vehicle accidents,5.2
-2018,65 to 69 years,Males,Other land transport accidents,0.3
-2018,65 to 69 years,Females,Transport accidents,3.6
-2018,65 to 69 years,Females,Motor vehicle accidents,3.3
-2018,65 to 69 years,Females,Other land transport accidents,0.2
-2018,70 to 74 years,Both sexes,Transport accidents,5.8
-2018,70 to 74 years,Both sexes,Motor vehicle accidents,5
-2018,70 to 74 years,Both sexes,Other land transport accidents,0.3
-2018,70 to 74 years,Males,Transport accidents,8
-2018,70 to 74 years,Males,Motor vehicle accidents,6.7
-2018,70 to 74 years,Males,Other land transport accidents,0.6
-2018,70 to 74 years,Females,Transport accidents,3.8
-2018,70 to 74 years,Females,Motor vehicle accidents,3.5
-2018,70 to 74 years,Females,Other land transport accidents,0
-2018,75 to 79 years,Both sexes,Transport accidents,9.6
-2018,75 to 79 years,Both sexes,Motor vehicle accidents,8.1
-2018,75 to 79 years,Both sexes,Other land transport accidents,0.4
-2018,75 to 79 years,Males,Transport accidents,13.2
-2018,75 to 79 years,Males,Motor vehicle accidents,11.6
-2018,75 to 79 years,Males,Other land transport accidents,0.4
-2018,75 to 79 years,Females,Transport accidents,6.4
-2018,75 to 79 years,Females,Motor vehicle accidents,5.1
-2018,75 to 79 years,Females,Other land transport accidents,0.3
-2018,80 to 84 years,Both sexes,Transport accidents,9.8
-2018,80 to 84 years,Both sexes,Motor vehicle accidents,9.4
-2018,80 to 84 years,Both sexes,Other land transport accidents,0.3
-2018,80 to 84 years,Males,Transport accidents,14.5
-2018,80 to 84 years,Males,Motor vehicle accidents,14
-2018,80 to 84 years,Males,Other land transport accidents,0.6
-2018,80 to 84 years,Females,Transport accidents,6.1
-2018,80 to 84 years,Females,Motor vehicle accidents,5.8
-2018,80 to 84 years,Females,Other land transport accidents,0
-2018,85 to 89 years,Both sexes,Transport accidents,13.3
-2018,85 to 89 years,Both sexes,Motor vehicle accidents,12.3
-2018,85 to 89 years,Both sexes,Other land transport accidents,0.6
-2018,85 to 89 years,Males,Transport accidents,21
-2018,85 to 89 years,Males,Motor vehicle accidents,20.5
-2018,85 to 89 years,Males,Other land transport accidents,0
-2018,85 to 89 years,Females,Transport accidents,8.2
-2018,85 to 89 years,Females,Motor vehicle accidents,6.9
-2018,85 to 89 years,Females,Other land transport accidents,1
-2018,90 years and over,Both sexes,Transport accidents,10.4
-2018,90 years and over,Both sexes,Motor vehicle accidents,9.8
-2018,90 years and over,Both sexes,Other land transport accidents,0.6
-2018,90 years and over,Males,Transport accidents,20.9
-2018,90 years and over,Males,Motor vehicle accidents,18.8
-2018,90 years and over,Males,Other land transport accidents,2.1
-2018,90 years and over,Females,Transport accidents,5.9
-2018,90 years and over,Females,Motor vehicle accidents,5.9
-2018,90 years and over,Females,Other land transport accidents,0
-2018,Not stated,Both sexes,Transport accidents,0
-2018,Not stated,Both sexes,Motor vehicle accidents,0
-2018,Not stated,Both sexes,Other land transport accidents,0
-2018,Not stated,Males,Transport accidents,0
-2018,Not stated,Males,Motor vehicle accidents,0
-2018,Not stated,Males,Other land transport accidents,0
-2018,Not stated,Females,Transport accidents,0
-2018,Not stated,Females,Motor vehicle accidents,0
-2018,Not stated,Females,Other land transport accidents,0
-2019,All ages,Both sexes,Motor vehicle accidents,4.3
-2019,All ages,Both sexes,Other land transport accidents,0.2
-2019,All ages,Males,Transport accidents,6.8
-2019,All ages,Males,Motor vehicle accidents,5.9
-2019,All ages,Males,Other land transport accidents,0.3
-2019,All ages,Females,Transport accidents,2.9
-2019,All ages,Females,Motor vehicle accidents,2.7
-2019,All ages,Females,Other land transport accidents,0.1
-2019,Under 1 year,Both sexes,Transport accidents,0.5
-2019,Under 1 year,Both sexes,Motor vehicle accidents,0.5
-2019,Under 1 year,Both sexes,Other land transport accidents,0
-2019,Under 1 year,Males,Transport accidents,0
-2019,Under 1 year,Males,Motor vehicle accidents,0
-2019,Under 1 year,Males,Other land transport accidents,0
-2019,Under 1 year,Females,Transport accidents,1.1
-2019,Under 1 year,Females,Motor vehicle accidents,1.1
-2019,Under 1 year,Females,Other land transport accidents,0
-2019,1 to 4 years,Both sexes,Transport accidents,1.3
-2019,1 to 4 years,Both sexes,Motor vehicle accidents,1.3
-2019,1 to 4 years,Both sexes,Other land transport accidents,0
-2019,1 to 4 years,Males,Transport accidents,1.4
-2019,1 to 4 years,Males,Motor vehicle accidents,1.4
-2019,1 to 4 years,Males,Other land transport accidents,0
-2019,1 to 4 years,Females,Transport accidents,1.2
-2019,1 to 4 years,Females,Motor vehicle accidents,1.2
-2019,1 to 4 years,Females,Other land transport accidents,0
-2019,5 to 9 years,Both sexes,Transport accidents,0.4
-2019,5 to 9 years,Both sexes,Motor vehicle accidents,0.4
-2019,5 to 9 years,Both sexes,Other land transport accidents,0
-2019,5 to 9 years,Males,Transport accidents,0.3
-2019,5 to 9 years,Males,Motor vehicle accidents,0.3
-2019,5 to 9 years,Males,Other land transport accidents,0
-2019,5 to 9 years,Females,Transport accidents,0.5
-2019,5 to 9 years,Females,Motor vehicle accidents,0.5
-2019,5 to 9 years,Females,Other land transport accidents,0
-2019,10 to 14 years,Both sexes,Transport accidents,0.9
-2019,10 to 14 years,Both sexes,Motor vehicle accidents,0.7
-2019,10 to 14 years,Both sexes,Other land transport accidents,0
-2019,10 to 14 years,Males,Transport accidents,1.2
-2019,10 to 14 years,Males,Motor vehicle accidents,1
-2019,10 to 14 years,Males,Other land transport accidents,0.1
-2019,10 to 14 years,Females,Transport accidents,0.6
-2019,10 to 14 years,Females,Motor vehicle accidents,0.5
-2019,10 to 14 years,Females,Other land transport accidents,0
-2019,15 to 19 years,Both sexes,Transport accidents,5.4
-2019,15 to 19 years,Both sexes,Motor vehicle accidents,5.2
-2019,15 to 19 years,Both sexes,Other land transport accidents,0.1
-2019,15 to 19 years,Males,Transport accidents,7.1
-2019,15 to 19 years,Males,Motor vehicle accidents,6.7
-2019,15 to 19 years,Males,Other land transport accidents,0.3
-2019,15 to 19 years,Females,Transport accidents,3.7
-2019,15 to 19 years,Females,Motor vehicle accidents,3.6
-2019,15 to 19 years,Females,Other land transport accidents,0
-2019,20 to 24 years,Both sexes,Transport accidents,6.8
-2019,20 to 24 years,Both sexes,Motor vehicle accidents,6.2
-2019,20 to 24 years,Both sexes,Other land transport accidents,0.2
-2019,20 to 24 years,Males,Transport accidents,9.4
-2019,20 to 24 years,Males,Motor vehicle accidents,8.8
-2019,20 to 24 years,Males,Other land transport accidents,0.2
-2019,20 to 24 years,Females,Transport accidents,4
-2019,20 to 24 years,Females,Motor vehicle accidents,3.4
-2019,20 to 24 years,Females,Other land transport accidents,0.3
-2019,25 to 29 years,Both sexes,Transport accidents,4.8
-2019,25 to 29 years,Both sexes,Motor vehicle accidents,4.1
-2019,25 to 29 years,Both sexes,Other land transport accidents,0.3
-2019,25 to 29 years,Males,Transport accidents,6.9
-2019,25 to 29 years,Males,Motor vehicle accidents,5.7
-2019,25 to 29 years,Males,Other land transport accidents,0.7
-2019,25 to 29 years,Females,Transport accidents,2.5
-2019,25 to 29 years,Females,Motor vehicle accidents,2.4
-2019,25 to 29 years,Females,Other land transport accidents,0
-2019,30 to 34 years,Both sexes,Transport accidents,5
-2019,30 to 34 years,Both sexes,Motor vehicle accidents,4.6
-2019,30 to 34 years,Both sexes,Other land transport accidents,0.2
-2019,30 to 34 years,Males,Transport accidents,7.2
-2019,30 to 34 years,Males,Motor vehicle accidents,6.6
-2019,30 to 34 years,Males,Other land transport accidents,0.2
-2019,30 to 34 years,Females,Transport accidents,2.6
-2019,30 to 34 years,Females,Motor vehicle accidents,2.6
-2019,30 to 34 years,Females,Other land transport accidents,0.1
-2019,35 to 39 years,Both sexes,Transport accidents,3.6
-2019,35 to 39 years,Both sexes,Motor vehicle accidents,3.3
-2019,35 to 39 years,Both sexes,Other land transport accidents,0.2
-2019,35 to 39 years,Males,Transport accidents,5.4
-2019,35 to 39 years,Males,Motor vehicle accidents,4.9
-2019,35 to 39 years,Males,Other land transport accidents,0.3
-2019,35 to 39 years,Females,Transport accidents,1.9
-2019,35 to 39 years,Females,Motor vehicle accidents,1.8
-2019,35 to 39 years,Females,Other land transport accidents,0.1
-2019,40 to 44 years,Both sexes,Transport accidents,4.4
-2019,40 to 44 years,Both sexes,Motor vehicle accidents,3.8
-2019,40 to 44 years,Both sexes,Other land transport accidents,0.1
-2019,40 to 44 years,Males,Transport accidents,6.9
-2019,40 to 44 years,Males,Motor vehicle accidents,5.8
-2019,40 to 44 years,Males,Other land transport accidents,0.3
-2019,40 to 44 years,Females,Transport accidents,2
-2019,40 to 44 years,Females,Motor vehicle accidents,1.8
-2019,40 to 44 years,Females,Other land transport accidents,0
-2019,45 to 49 years,Both sexes,Transport accidents,4.6
-2019,45 to 49 years,Both sexes,Motor vehicle accidents,3.9
-2019,45 to 49 years,Both sexes,Other land transport accidents,0
-2019,45 to 49 years,Males,Transport accidents,6.9
-2019,45 to 49 years,Males,Motor vehicle accidents,5.8
-2019,45 to 49 years,Males,Other land transport accidents,0
-2019,45 to 49 years,Females,Transport accidents,2.4
-2019,45 to 49 years,Females,Motor vehicle accidents,2
-2019,45 to 49 years,Females,Other land transport accidents,0
-2019,50 to 54 years,Both sexes,Transport accidents,4.8
-2019,50 to 54 years,Both sexes,Motor vehicle accidents,4.2
-2019,50 to 54 years,Both sexes,Other land transport accidents,0.2
-2019,50 to 54 years,Males,Transport accidents,6.8
-2019,50 to 54 years,Males,Motor vehicle accidents,5.9
-2019,50 to 54 years,Males,Other land transport accidents,0.3
-2019,50 to 54 years,Females,Transport accidents,2.8
-2019,50 to 54 years,Females,Motor vehicle accidents,2.5
-2019,50 to 54 years,Females,Other land transport accidents,0.2
-2019,55 to 59 years,Both sexes,Transport accidents,5.3
-2019,55 to 59 years,Both sexes,Motor vehicle accidents,4.6
-2019,55 to 59 years,Both sexes,Other land transport accidents,0.1
-2019,55 to 59 years,Males,Transport accidents,8.6
-2019,55 to 59 years,Males,Motor vehicle accidents,7.3
-2019,55 to 59 years,Males,Other land transport accidents,0.3
-2019,55 to 59 years,Females,Transport accidents,2
-2019,55 to 59 years,Females,Motor vehicle accidents,2
-2019,55 to 59 years,Females,Other land transport accidents,0
-2019,60 to 64 years,Both sexes,Transport accidents,5.3
-2019,60 to 64 years,Both sexes,Motor vehicle accidents,4.5
-2019,60 to 64 years,Both sexes,Other land transport accidents,0.3
-2019,60 to 64 years,Males,Transport accidents,7.4
-2019,60 to 64 years,Males,Motor vehicle accidents,6.2
-2019,60 to 64 years,Males,Other land transport accidents,0.3
-2019,60 to 64 years,Females,Transport accidents,3.2
-2019,60 to 64 years,Females,Motor vehicle accidents,2.9
-2019,60 to 64 years,Females,Other land transport accidents,0.2
-2019,65 to 69 years,Both sexes,Transport accidents,6.3
-2019,65 to 69 years,Both sexes,Motor vehicle accidents,5.4
-2019,65 to 69 years,Both sexes,Other land transport accidents,0.3
-2019,65 to 69 years,Males,Transport accidents,9.1
-2019,65 to 69 years,Males,Motor vehicle accidents,7.5
-2019,65 to 69 years,Males,Other land transport accidents,0.5
-2019,65 to 69 years,Females,Transport accidents,3.7
-2019,65 to 69 years,Females,Motor vehicle accidents,3.4
-2019,65 to 69 years,Females,Other land transport accidents,0.1
-2019,70 to 74 years,Both sexes,Transport accidents,7.2
-2019,70 to 74 years,Both sexes,Motor vehicle accidents,6
-2019,70 to 74 years,Both sexes,Other land transport accidents,0.3
-2019,70 to 74 years,Males,Transport accidents,9.3
-2019,70 to 74 years,Males,Motor vehicle accidents,7.2
-2019,70 to 74 years,Males,Other land transport accidents,0.4
-2019,70 to 74 years,Females,Transport accidents,5.3
-2019,70 to 74 years,Females,Motor vehicle accidents,4.9
-2019,70 to 74 years,Females,Other land transport accidents,0.2
-2019,75 to 79 years,Both sexes,Transport accidents,9.1
-2019,75 to 79 years,Both sexes,Motor vehicle accidents,8.2
-2019,75 to 79 years,Both sexes,Other land transport accidents,0.3
-2019,75 to 79 years,Males,Transport accidents,13.1
-2019,75 to 79 years,Males,Motor vehicle accidents,11.2
-2019,75 to 79 years,Males,Other land transport accidents,0.7
-2019,75 to 79 years,Females,Transport accidents,5.6
-2019,75 to 79 years,Females,Motor vehicle accidents,5.6
-2019,75 to 79 years,Females,Other land transport accidents,0
-2019,80 to 84 years,Both sexes,Transport accidents,9
-2019,80 to 84 years,Both sexes,Motor vehicle accidents,8.4
-2019,80 to 84 years,Both sexes,Other land transport accidents,0.4
-2019,80 to 84 years,Males,Transport accidents,11.8
-2019,80 to 84 years,Males,Motor vehicle accidents,10.4
-2019,80 to 84 years,Males,Other land transport accidents,0.9
-2019,80 to 84 years,Females,Transport accidents,6.8
-2019,80 to 84 years,Females,Motor vehicle accidents,6.8
-2019,80 to 84 years,Females,Other land transport accidents,0
-2019,85 to 89 years,Both sexes,Transport accidents,9.8
-2019,85 to 89 years,Both sexes,Motor vehicle accidents,9.2
-2019,85 to 89 years,Both sexes,Other land transport accidents,0.4
-2019,85 to 89 years,Males,Transport accidents,12.7
-2019,85 to 89 years,Males,Motor vehicle accidents,12.2
-2019,85 to 89 years,Males,Other land transport accidents,0.5
-2019,85 to 89 years,Females,Transport accidents,7.8
-2019,85 to 89 years,Females,Motor vehicle accidents,7.2
-2019,85 to 89 years,Females,Other land transport accidents,0.3
-2019,90 years and over,Both sexes,Transport accidents,11.1
-2019,90 years and over,Both sexes,Motor vehicle accidents,10.5
-2019,90 years and over,Both sexes,Other land transport accidents,0
-2019,90 years and over,Males,Transport accidents,22.1
-2019,90 years and over,Males,Motor vehicle accidents,20.1
-2019,90 years and over,Males,Other land transport accidents,0
-2019,90 years and over,Females,Transport accidents,6.2
-2019,90 years and over,Females,Motor vehicle accidents,6.2
-2019,90 years and over,Females,Other land transport accidents,0
-2019,Not stated,Both sexes,Transport accidents,0
-2019,Not stated,Both sexes,Motor vehicle accidents,0
-2019,Not stated,Both sexes,Other land transport accidents,0
-2019,Not stated,Males,Transport accidents,0
-2019,Not stated,Males,Motor vehicle accidents,0
-2019,Not stated,Males,Other land transport accidents,0
-2019,Not stated,Females,Transport accidents,0
-2019,Not stated,Females,Motor vehicle accidents,0
-2019,Not stated,Females,Other land transport accidents,0
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-7-2.csv b/tests/assets/progress-calculation/data/temp/indicator_3-7-2.csv
deleted file mode 100644
index 49b8af0b..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-7-2.csv
+++ /dev/null
@@ -1,87 +0,0 @@
-Year,Geography,Value
-2015,,9.4
-2016,,8.4
-2017,,7.8
-2018,,6.7
-2019,,6.2
-2020,,5.5
-2015,Canada,9.4
-2015,Newfoundland and Labrador,11.2
-2015,Prince Edward Island,10.2
-2015,Nova Scotia,12.9
-2015,New Brunswick,15.2
-2015,Quebec,7.2
-2015,Ontario,7.1
-2015,Manitoba,22
-2015,Saskatchewan,25.1
-2015,Alberta,12.8
-2015,British Columbia,6.2
-2015,Yukon,10
-2015,Northwest Territories,32.1
-2015,Nunavut,107
-2016,Canada,8.4
-2016,Newfoundland and Labrador,12.5
-2016,Prince Edward Island,8
-2016,Nova Scotia,11.4
-2016,New Brunswick,12.1
-2016,Quebec,6.6
-2016,Ontario,6.1
-2016,Manitoba,20.6
-2016,Saskatchewan,23.6
-2016,Alberta,11
-2016,British Columbia,5.3
-2016,Yukon,7
-2016,Northwest Territories,24.6
-2016,Nunavut,104
-2017,Canada,7.8
-2017,Newfoundland and Labrador,11
-2017,Prince Edward Island,8.9
-2017,Nova Scotia,11.3
-2017,New Brunswick,12.5
-2017,Quebec,6.2
-2017,Ontario,5.8
-2017,Manitoba,18.6
-2017,Saskatchewan,20.8
-2017,Alberta,9.9
-2017,British Columbia,4.7
-2017,Northwest Territories,32.6
-2017,Nunavut,97.8
-2018,Canada,6.7
-2018,Newfoundland and Labrador,10
-2018,Prince Edward Island,6.8
-2018,Nova Scotia,8.4
-2018,New Brunswick,10.7
-2018,Quebec,5.6
-2018,Ontario,4.7
-2018,Manitoba,17.6
-2018,Saskatchewan,19.9
-2018,Alberta,8.2
-2018,British Columbia,3.7
-2018,Northwest Territories,28.3
-2018,Nunavut,99.9
-2019,Canada,6.2
-2019,Newfoundland and Labrador,8.6
-2019,Prince Edward Island,6.2
-2019,Nova Scotia,9.3
-2019,New Brunswick,10
-2019,Quebec,5.5
-2019,Ontario,4.4
-2019,Manitoba,16
-2019,Saskatchewan,18.3
-2019,Alberta,6.9
-2019,British Columbia,3.7
-2019,Northwest Territories,23.7
-2019,Nunavut,92.5
-2020,Canada,5.5
-2020,Newfoundland and Labrador,6.4
-2020,Prince Edward Island,5.9
-2020,Nova Scotia,7.4
-2020,New Brunswick,8.6
-2020,Quebec,5.2
-2020,Ontario,3.8
-2020,Manitoba,12.1
-2020,Saskatchewan,16.7
-2020,Alberta,6.6
-2020,British Columbia,3.5
-2020,Northwest Territories,17.9
-2020,Nunavut,86
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-a-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-a-1.csv
deleted file mode 100644
index 4b6c7049..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-a-1.csv
+++ /dev/null
@@ -1,175 +0,0 @@
-Year,Sex,Age Group,Tobacco Product,Value
-2015,,,,15.5
-2017,,,,17.8
-2019,,,,14
-2015,Both sexes,All age groups,Cigarettes,13.2
-2015,Both sexes,All age groups,Cigars,1.2
-2015,Both sexes,All age groups,Little cigars or cigarillos,1.8
-2015,Both sexes,All age groups,Pipe,0.5
-2015,Both sexes,All age groups,Smokeless tobacco,0.4
-2015,Both sexes,All age groups,Water pipe w tobacco,0.5
-2015,Both sexes,All age groups,E-cigarettes,3.2
-2015,Both sexes,15-19,Any tobacco product,13.1
-2015,Both sexes,15-19,Cigarettes,9.8
-2015,Both sexes,15-19,Cigars,1.3
-2015,Both sexes,15-19,Little cigars or cigarillos,3
-2015,Both sexes,15-19,Smokeless tobacco,0.9
-2015,Both sexes,15-19,Water pipe w tobacco,1.7
-2015,Both sexes,15-19,E-cigarettes,6.3
-2015,Both sexes,20-24,Any tobacco product,23.8
-2015,Both sexes,20-24,Cigarettes,18.9
-2015,Both sexes,20-24,Cigars,2.3
-2015,Both sexes,20-24,Little cigars or cigarillos,5.7
-2015,Both sexes,20-24,Pipe,1.5
-2015,Both sexes,20-24,Smokeless tobacco,1.8
-2015,Both sexes,20-24,Water pipe w tobacco,2.7
-2015,Both sexes,20-24,E-cigarettes,6.3
-2015,Both sexes,25+,Any tobacco product,14.9
-2015,Both sexes,25+,Cigarettes,12.9
-2015,Both sexes,25+,Cigars,1.1
-2015,Both sexes,25+,Little cigars or cigarillos,1.3
-2015,Both sexes,25+,Pipe,0.4
-2015,Both sexes,25+,Smokeless tobacco,0.2
-2015,Both sexes,25+,E-cigarettes,2.6
-2015,Both sexes,25-44,Any tobacco product,17.8
-2015,Both sexes,25-44,Cigarettes,15.3
-2015,Both sexes,25-44,Cigars,1.1
-2015,Both sexes,25-44,Little cigars or cigarillos,1.7
-2015,Both sexes,25-44,E-cigarettes,3.4
-2015,Both sexes,45+,Any tobacco product,13
-2015,Both sexes,45+,Cigarettes,11.4
-2015,Both sexes,45+,Cigars,1
-2015,Both sexes,45+,Little cigars or cigarillos,1
-2015,Both sexes,45+,E-cigarettes,2.1
-2017,Both sexes,All age groups,Cigarettes,15.3
-2017,Both sexes,All age groups,Cigars,0.8
-2017,Both sexes,All age groups,Little cigars or cigarillos,1.4
-2017,Both sexes,All age groups,Pipe,0.3
-2017,Both sexes,All age groups,Smokeless tobacco,0.7
-2017,Both sexes,All age groups,Water pipe w tobacco,0.7
-2017,Both sexes,All age groups,E-cigarettes,2.9
-2017,Both sexes,15-19,Any tobacco product,9.2
-2017,Both sexes,15-19,Cigarettes,6.6
-2017,Both sexes,15-19,Cigars,1
-2017,Both sexes,15-19,Little cigars or cigarillos,2.2
-2017,Both sexes,15-19,Smokeless tobacco,1.6
-2017,Both sexes,15-19,Water pipe w tobacco,1.5
-2017,Both sexes,15-19,E-cigarettes,6.3
-2017,Both sexes,20-24,Any tobacco product,20.6
-2017,Both sexes,20-24,Cigarettes,15.6
-2017,Both sexes,20-24,Cigars,2.1
-2017,Both sexes,20-24,Little cigars or cigarillos,3.7
-2017,Both sexes,20-24,Smokeless tobacco,1.4
-2017,Both sexes,20-24,Water pipe w tobacco,3.1
-2017,Both sexes,20-24,E-cigarettes,6
-2017,Both sexes,25-44,Any tobacco product,22.4
-2017,Both sexes,25-44,Cigarettes,18.7
-2017,Both sexes,25-44,Little cigars or cigarillos,1.9
-2017,Both sexes,25-44,E-cigarettes,3.2
-2017,Both sexes,25+,Any tobacco product,18.2
-2017,Both sexes,25+,Cigarettes,16
-2017,Both sexes,25+,Cigars,0.6
-2017,Both sexes,25+,Little cigars or cigarillos,1.1
-2017,Both sexes,25+,E-cigarettes,2.3
-2017,Both sexes,45+,Any tobacco product,15.6
-2017,Both sexes,45+,Cigarettes,14.2
-2017,Both sexes,45+,Little cigars or cigarillos,0.6
-2017,Both sexes,45+,E-cigarettes,1.7
-2019,Both sexes,All age groups,Cigarettes,11.9
-2019,Both sexes,All age groups,Cigars,1.4
-2019,Both sexes,All age groups,Little cigars or cigarillos,1.9
-2019,Both sexes,All age groups,Chewing tobacco,0.4
-2019,Both sexes,All age groups,Water pipe w tobacco,0.4
-2019,Both sexes,All age groups,Vaping,4.7
-2019,Both sexes,15-19,Any tobacco product,7.4
-2019,Both sexes,15-19,Cigarettes,5.1
-2019,Both sexes,15-19,Vaping,15.1
-2019,Both sexes,20-24,Any tobacco product,18.3
-2019,Both sexes,20-24,Cigarettes,13.3
-2019,Both sexes,20-24,Little cigars or cigarillos,3.9
-2019,Both sexes,20-24,Vaping,15.2
-2019,Both sexes,25+,Any tobacco product,14.4
-2019,Both sexes,25+,Cigarettes,12.5
-2019,Both sexes,25+,Cigars,1.3
-2019,Both sexes,25+,Little cigars or cigarillos,1.7
-2019,Both sexes,25+,Vaping,2.9
-2019,Both sexes,25-44,Any tobacco product,16
-2019,Both sexes,25-44,Cigarettes,13.2
-2019,Both sexes,25-44,Little cigars or cigarillos,1.7
-2019,Both sexes,25-44,Vaping,5
-2019,Both sexes,45+,Any tobacco product,13.4
-2019,Both sexes,45+,Cigarettes,12
-2019,Both sexes,45+,Cigars,0.9
-2019,Both sexes,45+,Little cigars or cigarillos,1.6
-2019,Both sexes,45+,Vaping,1.6
-2015,Female,All age groups,Any tobacco product,11.6
-2015,Female,All age groups,Cigarettes,10.6
-2015,Female,All age groups,Little cigars or cigarillos,0.9
-2015,Female,All age groups,Pipe,0.3
-2015,Female,All age groups,Water pipe w tobacco,0.4
-2015,Female,All age groups,E-cigarettes,2.8
-2017,Female,All age groups,Any tobacco product,14.4
-2017,Female,All age groups,Cigarettes,13.6
-2017,Female,All age groups,Cigars,0.1
-2017,Female,All age groups,Water pipe w tobacco,0.5
-2017,Female,All age groups,E-cigarettes,2.2
-2015,Male,All age groups,Any tobacco product,19.5
-2015,Male,All age groups,Cigarettes,15.8
-2015,Male,All age groups,Cigars,2.2
-2015,Male,All age groups,Little cigars or cigarillos,2.7
-2015,Male,All age groups,Pipe,0.8
-2015,Male,All age groups,Smokeless tobacco,0.8
-2015,Male,All age groups,Water pipe w tobacco,0.7
-2015,Male,All age groups,E-cigarettes,3.6
-2017,Male,All age groups,Any tobacco product,21.2
-2017,Male,All age groups,Cigarettes,17
-2017,Male,All age groups,Cigars,1.5
-2017,Male,All age groups,Little cigars or cigarillos,2.1
-2017,Male,All age groups,Smokeless tobacco,1.5
-2017,Male,All age groups,Water pipe w tobacco,0.9
-2017,Male,All age groups,E-cigarettes,3.6
-2019,Male,All age groups,Any tobacco product,15.9
-2019,Male,All age groups,Cigarettes,12.6
-2019,Male,All age groups,Cigars,2.4
-2019,Male,All age groups,Little cigars or cigarillos,2.8
-2019,Male,All age groups,Chewing tobacco,0.7
-2019,Male,All age groups,Water pipe w tobacco,0.5
-2019,Male,All age groups,Vaping,5.8
-2019,Male,15-19,Any tobacco product,9.1
-2019,Male,15-19,Cigarettes,6
-2019,Male,15-19,Vaping,16.1
-2019,Male,20-24,Any tobacco product,21.6
-2019,Male,20-24,Cigarettes,15.3
-2019,Male,20-24,Vaping,18
-2019,Male,25+,Any tobacco product,16.3
-2019,Male,25+,Cigarettes,13.2
-2019,Male,25+,Cigars,2.3
-2019,Male,25+,Little cigars or cigarillos,2.6
-2019,Male,25+,Vaping,3.8
-2019,Male,25-44,Any tobacco product,18.2
-2019,Male,25-44,Cigarettes,13.7
-2019,Male,25-44,Vaping,6.7
-2019,Male,45+,Any tobacco product,15.1
-2019,Male,45+,Cigarettes,12.9
-2019,Male,45+,Cigars,1.5
-2019,Male,45+,Little cigars or cigarillos,2.6
-2019,Male,45+,Vaping,1.9
-2019,Female,All age groups,Any tobacco product,12
-2019,Female,All age groups,Cigarettes,11
-2019,Female,All age groups,Little cigars or cigarillos,1
-2019,Female,All age groups,Vaping,3.6
-2019,Female,15-19,Any tobacco product,5
-2019,Female,15-19,Vaping,13.6
-2019,Female,20-24,Any tobacco product,14.2
-2019,Female,20-24,Cigarettes,10.6
-2019,Female,20-24,Vaping,11.8
-2019,Female,25+,Any tobacco product,12.5
-2019,Female,25+,Cigarettes,11.8
-2019,Female,25+,Little cigars or cigarillos,0.8
-2019,Female,25+,Vaping,2.1
-2019,Female,25-44,Any tobacco product,13.8
-2019,Female,25-44,Cigarettes,12.8
-2019,Female,25-44,Vaping,3.3
-2019,Female,45+,Any tobacco product,11.8
-2019,Female,45+,Cigarettes,11.3
-2019,Female,45+,Vaping,1.3
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-b-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-b-1.csv
deleted file mode 100644
index d34ceb21..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-b-1.csv
+++ /dev/null
@@ -1,45 +0,0 @@
-Year,Antigen,Value
-2013,Diphtheria 4 doses,76.6
-2015,Diphtheria 4 doses,76.9
-2017,Diphtheria 4 doses,75.8
-2019,Diphtheria 4 doses,77.5
-2013,Pertussis 4 doses,76.4
-2015,Pertussis 4 doses,77
-2017,Pertussis 4 doses,75.8
-2019,Pertussis 4 doses,77.5
-2013,Tetanus 4 doses,76.4
-2015,Tetanus 4 doses,76.7
-2017,Tetanus 4 doses,75.8
-2019,Tetanus 4 doses,77.5
-2013,Polio 3 doses,90.9
-2015,Polio 3 doses,91.2
-2017,Polio 3 doses,90.7
-2019,Polio 3 doses,91.9
-2013,Hib 4 doses,71.9
-2015,Hib 4 doses,71.9
-2017,Hib 4 doses,73.4
-2019,Hib 4 doses,74.4
-2013,Measles 1 dose,89.7
-2015,Measles 1 dose,89.2
-2017,Measles 1 dose,90.2
-2019,Measles 1 dose,90.2
-2013,Mumps 1 dose,89.4
-2015,Mumps 1 dose,88.9
-2017,Mumps 1 dose,89.9
-2019,Mumps 1 dose,89.2
-2013,Rubella 1 dose,89.4
-2015,Rubella 1 dose,88.9
-2017,Rubella 1 dose,90
-2019,Rubella 1 dose,89.4
-2013,Meningococcal C 1 dose,88.7
-2015,Meningococcal C 1 dose,87.8
-2017,Meningococcal C 1 dose,87.6
-2019,Meningococcal C 1 dose,91.1
-2013,Pneumococcal 3 doses,79.2
-2015,Pneumococcal 3 doses,80.3
-2017,Pneumococcal 3 doses,79.1
-2019,Pneumococcal 3 doses,84.4
-2013,Varicella 1 dose,NA
-2015,Varicella 1 dose,NA
-2017,Varicella 1 dose,82.9
-2019,Varicella 1 dose,82.7
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-c-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-c-1.csv
deleted file mode 100644
index 317711b7..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-c-1.csv
+++ /dev/null
@@ -1,2311 +0,0 @@
-Year,Geography,Type of provider,Value
-2015,Canada,Audiologists,5.06
-2016,Canada,Audiologists,5.19
-2017,Canada,Audiologists,5.27
-2018,Canada,Audiologists,5.42
-2019,Canada,Audiologists,5.56
-2015,Canada,Chiropractors,23.66
-2016,Canada,Chiropractors,23.99
-2017,Canada,Chiropractors,24.27
-2018,Canada,Chiropractors,24.69
-2019,Canada,Chiropractors,25.09
-2015,Canada,Dental assistants,53.46
-2016,Canada,Dental assistants,57.52
-2017,Canada,Dental assistants,63.93
-2018,Canada,Dental assistants,45.52
-2019,Canada,Dental assistants,52.89
-2015,Canada,Dental hygienists,80
-2016,Canada,Dental hygienists,80.86
-2017,Canada,Dental hygienists,80.87
-2018,Canada,Dental hygienists,78.93
-2019,Canada,Dental hygienists,81.54
-2015,Canada,Dentists,63.05
-2016,Canada,Dentists,64.01
-2017,Canada,Dentists,64.4
-2018,Canada,Dentists,66.73
-2019,Canada,Dentists,52.5
-2015,Canada,Dietitians,31.58
-2016,Canada,Dietitians,32.27
-2017,Canada,Dietitians,32.64
-2018,Canada,Dietitians,32.84
-2019,Canada,Dietitians,24.59
-2015,Canada,Environmental public health professionals,4.55
-2016,Canada,Environmental public health professionals,4.68
-2017,Canada,Environmental public health professionals,4.76
-2018,Canada,Environmental public health professionals,4.78
-2019,Canada,Environmental public health professionals,4.71
-2015,Canada,Family medicine,116.38
-2016,Canada,Family medicine,117.76
-2017,Canada,Family medicine,120.94
-2018,Canada,Family medicine,122.76
-2019,Canada,Family medicine,124.48
-2015,Canada,Genetic counsellors,0.88
-2016,Canada,Genetic counsellors,0.88
-2017,Canada,Genetic counsellors,0.8
-2018,Canada,Genetic counsellors,0.9
-2019,Canada,Genetic counsellors,0.95
-2015,Canada,Health information management professionals,0
-2016,Canada,Health information management professionals,12.68
-2017,Canada,Health information management professionals,13.03
-2018,Canada,Health information management professionals,1.44
-2019,Canada,Health information management professionals,11.94
-2015,Canada,Licensed practical nurses,317.81
-2016,Canada,Licensed practical nurses,322.87
-2017,Canada,Licensed practical nurses,325.84
-2018,Canada,Licensed practical nurses,331.18
-2019,Canada,Licensed practical nurses,342.96
-2015,Canada,Medical laboratory technologists,58.12
-2016,Canada,Medical laboratory technologists,53.4
-2017,Canada,Medical laboratory technologists,55.75
-2018,Canada,Medical laboratory technologists,54.44
-2019,Canada,Medical laboratory technologists,54.1
-2015,Canada,Medical physicists,1.31
-2016,Canada,Medical physicists,1.28
-2017,Canada,Medical physicists,1.35
-2018,Canada,Medical physicists,1.41
-2019,Canada,Medical physicists,1.37
-2015,Canada,Medical radiation technologists,54.31
-2016,Canada,Medical radiation technologists,57.36
-2017,Canada,Medical radiation technologists,58.03
-2018,Canada,Medical radiation technologists,67.55
-2019,Canada,Medical radiation technologists,68.64
-2015,Canada,Midwives,3.49
-2016,Canada,Midwives,3.87
-2017,Canada,Midwives,4.18
-2018,Canada,Midwives,4.18
-2019,Canada,Midwives,4.32
-2015,Canada,Nurse practitioners,12.07
-2016,Canada,Nurse practitioners,13.27
-2017,Canada,Nurse practitioners,14.28
-2018,Canada,Nurse practitioners,15.24
-2019,Canada,Nurse practitioners,16.5
-2015,Canada,Occupational therapists,46.36
-2016,Canada,Occupational therapists,47.17
-2017,Canada,Occupational therapists,48.37
-2018,Canada,Occupational therapists,49.26
-2019,Canada,Occupational therapists,51.02
-2015,Canada,Opticians,5.46
-2016,Canada,Opticians,22.33
-2017,Canada,Opticians,15.54
-2018,Canada,Opticians,0
-2019,Canada,Opticians,9.73
-2015,Canada,Optometrists,16.58
-2016,Canada,Optometrists,16.89
-2017,Canada,Optometrists,17.02
-2018,Canada,Optometrists,17.16
-2019,Canada,Optometrists,17.83
-2015,Canada,Paramedics,77.77
-2016,Canada,Paramedics,88.07
-2017,Canada,Paramedics,92.63
-2018,Canada,Paramedics,93.93
-2019,Canada,Paramedics,95.48
-2015,Canada,Pharmacists,109.97
-2016,Canada,Pharmacists,113.23
-2017,Canada,Pharmacists,114.51
-2018,Canada,Pharmacists,115.7
-2019,Canada,Pharmacists,118.04
-2015,Canada,Pharmacy technicians,18.49
-2016,Canada,Pharmacy technicians,20.32
-2017,Canada,Pharmacy technicians,22.4
-2018,Canada,Pharmacy technicians,23.92
-2019,Canada,Pharmacy technicians,25.81
-2015,Canada,Physician assistants,1.21
-2016,Canada,Physician assistants,1.49
-2017,Canada,Physician assistants,0.39
-2018,Canada,Physician assistants,1.8
-2019,Canada,Physician assistants,2.13
-2015,Canada,Physicians,230.23
-2016,Canada,Physicians,232.8
-2017,Canada,Physicians,237.12
-2018,Canada,Physicians,242.62
-2019,Canada,Physicians,246.57
-2015,Canada,Physiotherapists,60.99
-2016,Canada,Physiotherapists,62.01
-2017,Canada,Physiotherapists,62.9
-2018,Canada,Physiotherapists,66.55
-2019,Canada,Physiotherapists,68.25
-2015,Canada,Psychologists,37.93
-2016,Canada,Psychologists,50.53
-2017,Canada,Psychologists,50.6
-2018,Canada,Psychologists,50.71
-2019,Canada,Psychologists,51.55
-2015,Canada,Registered nurses,815.93
-2016,Canada,Registered nurses,811.1
-2017,Canada,Registered nurses,806.6
-2018,Canada,Registered nurses,800.46
-2019,Canada,Registered nurses,809.35
-2015,Canada,Registered psychiatric nurses,16.16
-2016,Canada,Registered psychiatric nurses,16.24
-2017,Canada,Registered psychiatric nurses,16.25
-2018,Canada,Registered psychiatric nurses,16.27
-2019,Canada,Registered psychiatric nurses,16.33
-2015,Canada,Regulated nurses,1161.4
-2016,Canada,Regulated nurses,1162.88
-2017,Canada,Regulated nurses,1162.32
-2018,Canada,Regulated nurses,1162.5
-2019,Canada,Regulated nurses,1184.45
-2015,Canada,Respiratory therapists,30.73
-2016,Canada,Respiratory therapists,32
-2017,Canada,Respiratory therapists,29.79
-2018,Canada,Respiratory therapists,29.08
-2019,Canada,Respiratory therapists,33.17
-2015,Canada,Social workers,135.82
-2016,Canada,Social workers,144.79
-2017,Canada,Social workers,141.92
-2018,Canada,Social workers,145.47
-2019,Canada,Social workers,142.54
-2015,Canada,Specialists,113.85
-2016,Canada,Specialists,115.04
-2017,Canada,Specialists,116.18
-2018,Canada,Specialists,119.86
-2019,Canada,Specialists,122.08
-2015,Canada,Speech–language pathologists,25.06
-2016,Canada,Speech–language pathologists,25.94
-2017,Canada,Speech–language pathologists,26.71
-2018,Canada,Speech–language pathologists,27.71
-2019,Canada,Speech–language pathologists,27.82
-2015,Newfoundland and Labrador,Audiologists,6.25
-2016,Newfoundland and Labrador,Audiologists,7.37
-2017,Newfoundland and Labrador,Audiologists,7.19
-2018,Newfoundland and Labrador,Audiologists,7.04
-2019,Newfoundland and Labrador,Audiologists,7.42
-2015,Newfoundland and Labrador,Chiropractors,
-2016,Newfoundland and Labrador,Chiropractors,12.84
-2017,Newfoundland and Labrador,Chiropractors,13.05
-2018,Newfoundland and Labrador,Chiropractors,13.32
-2019,Newfoundland and Labrador,Chiropractors,
-2015,Newfoundland and Labrador,Dental assistants,
-2016,Newfoundland and Labrador,Dental assistants,48.73
-2017,Newfoundland and Labrador,Dental assistants,53.16
-2018,Newfoundland and Labrador,Dental assistants,
-2019,Newfoundland and Labrador,Dental assistants,
-2015,Newfoundland and Labrador,Dental hygienists,39.2
-2016,Newfoundland and Labrador,Dental hygienists,40.61
-2017,Newfoundland and Labrador,Dental hygienists,41.81
-2018,Newfoundland and Labrador,Dental hygienists,41.88
-2019,Newfoundland and Labrador,Dental hygienists,44.35
-2015,Newfoundland and Labrador,Dentists,38.82
-2016,Newfoundland and Labrador,Dentists,38.91
-2017,Newfoundland and Labrador,Dentists,42.19
-2018,Newfoundland and Labrador,Dentists,44.73
-2019,Newfoundland and Labrador,Dentists,41.31
-2015,Newfoundland and Labrador,Dietitians,33.7
-2016,Newfoundland and Labrador,Dietitians,34
-2017,Newfoundland and Labrador,Dietitians,33.49
-2018,Newfoundland and Labrador,Dietitians,35.21
-2019,Newfoundland and Labrador,Dietitians,34.45
-2015,Newfoundland and Labrador,Environmental public health professionals,5.3
-2016,Newfoundland and Labrador,Environmental public health professionals,4.16
-2017,Newfoundland and Labrador,Environmental public health professionals,3.78
-2018,Newfoundland and Labrador,Environmental public health professionals,5.52
-2019,Newfoundland and Labrador,Environmental public health professionals,5.52
-2015,Newfoundland and Labrador,Genetic counsellors,1.7
-2016,Newfoundland and Labrador,Genetic counsellors,1.51
-2017,Newfoundland and Labrador,Genetic counsellors,1.7
-2018,Newfoundland and Labrador,Genetic counsellors,1.9
-2019,Newfoundland and Labrador,Genetic counsellors,1.71
-2015,Newfoundland and Labrador,Health information management professionals,
-2016,Newfoundland and Labrador,Health information management professionals,17.57
-2017,Newfoundland and Labrador,Health information management professionals,17.22
-2018,Newfoundland and Labrador,Health information management professionals,
-2019,Newfoundland and Labrador,Health information management professionals,18.65
-2015,Newfoundland and Labrador,Medical laboratory technologists,102.63
-2016,Newfoundland and Labrador,Medical laboratory technologists,96.9
-2017,Newfoundland and Labrador,Medical laboratory technologists,97.62
-2018,Newfoundland and Labrador,Medical laboratory technologists,97.27
-2019,Newfoundland and Labrador,Medical laboratory technologists,98.41
-2015,Newfoundland and Labrador,Medical physicists,1.14
-2016,Newfoundland and Labrador,Medical physicists,1.13
-2017,Newfoundland and Labrador,Medical physicists,1.51
-2018,Newfoundland and Labrador,Medical physicists,1.71
-2019,Newfoundland and Labrador,Medical physicists,1.52
-2015,Newfoundland and Labrador,Medical radiation technologists,68.36
-2016,Newfoundland and Labrador,Medical radiation technologists,70.08
-2017,Newfoundland and Labrador,Medical radiation technologists,74.16
-2018,Newfoundland and Labrador,Medical radiation technologists,75.38
-2019,Newfoundland and Labrador,Medical radiation technologists,74.05
-2015,Newfoundland and Labrador,Midwives,
-2016,Newfoundland and Labrador,Midwives,0
-2017,Newfoundland and Labrador,Midwives,0.19
-2018,Newfoundland and Labrador,Midwives,0.38
-2019,Newfoundland and Labrador,Midwives,0.76
-2015,Newfoundland and Labrador,Occupational therapists,38.82
-2016,Newfoundland and Labrador,Occupational therapists,39.29
-2017,Newfoundland and Labrador,Occupational therapists,38.78
-2018,Newfoundland and Labrador,Occupational therapists,40.73
-2019,Newfoundland and Labrador,Occupational therapists,40.92
-2015,Newfoundland and Labrador,Opticians,
-2016,Newfoundland and Labrador,Opticians,21.91
-2017,Newfoundland and Labrador,Opticians,23.65
-2018,Newfoundland and Labrador,Opticians,
-2019,Newfoundland and Labrador,Opticians,23.41
-2015,Newfoundland and Labrador,Optometrists,11.55
-2016,Newfoundland and Labrador,Optometrists,11.52
-2017,Newfoundland and Labrador,Optometrists,11.73
-2018,Newfoundland and Labrador,Optometrists,12.18
-2019,Newfoundland and Labrador,Optometrists,13.51
-2015,Newfoundland and Labrador,Paramedics,
-2016,Newfoundland and Labrador,Paramedics,
-2017,Newfoundland and Labrador,Paramedics,189.57
-2018,Newfoundland and Labrador,Paramedics,186.16
-2019,Newfoundland and Labrador,Paramedics,
-2015,Newfoundland and Labrador,Pharmacists,135.95
-2016,Newfoundland and Labrador,Pharmacists,142.04
-2017,Newfoundland and Labrador,Pharmacists,138.87
-2018,Newfoundland and Labrador,Pharmacists,143.9
-2019,Newfoundland and Labrador,Pharmacists,143.14
-2015,Newfoundland and Labrador,Pharmacy technicians,1.14
-2016,Newfoundland and Labrador,Pharmacy technicians,2.64
-2017,Newfoundland and Labrador,Pharmacy technicians,26.3
-2018,Newfoundland and Labrador,Pharmacy technicians,33.12
-2019,Newfoundland and Labrador,Pharmacy technicians,37.69
-2015,Newfoundland and Labrador,Physician assistants,0.19
-2016,Newfoundland and Labrador,Physician assistants,
-2017,Newfoundland and Labrador,Physician assistants,0.19
-2018,Newfoundland and Labrador,Physician assistants,0.38
-2019,Newfoundland and Labrador,Physician assistants,0.19
-2015,Newfoundland and Labrador,Physicians,242.75
-2016,Newfoundland and Labrador,Physicians,248.38
-2017,Newfoundland and Labrador,Physicians,254.84
-2018,Newfoundland and Labrador,Physicians,269.15
-2019,Newfoundland and Labrador,Physicians,258.3
-2015,Newfoundland and Labrador,Family medicine,126.11
-2016,Newfoundland and Labrador,Family medicine,128.82
-2017,Newfoundland and Labrador,Family medicine,137.73
-2018,Newfoundland and Labrador,Family medicine,137.81
-2019,Newfoundland and Labrador,Family medicine,131.72
-2015,Newfoundland and Labrador,Specialists,116.64
-2016,Newfoundland and Labrador,Specialists,119.56
-2017,Newfoundland and Labrador,Specialists,117.11
-2018,Newfoundland and Labrador,Specialists,131.34
-2019,Newfoundland and Labrador,Specialists,126.58
-2015,Newfoundland and Labrador,Physiotherapists,50.94
-2016,Newfoundland and Labrador,Physiotherapists,52.7
-2017,Newfoundland and Labrador,Physiotherapists,53.73
-2018,Newfoundland and Labrador,Physiotherapists,55.96
-2019,Newfoundland and Labrador,Physiotherapists,57.1
-2015,Newfoundland and Labrador,Psychologists,44.69
-2016,Newfoundland and Labrador,Psychologists,47.79
-2017,Newfoundland and Labrador,Psychologists,47.3
-2018,Newfoundland and Labrador,Psychologists,48.35
-2019,Newfoundland and Labrador,Psychologists,53.49
-2015,Newfoundland and Labrador,Regulated nurses,1599.65
-2016,Newfoundland and Labrador,Regulated nurses,1609.1
-2017,Newfoundland and Labrador,Regulated nurses,1615.12
-2018,Newfoundland and Labrador,Regulated nurses,1601.39
-2019,Newfoundland and Labrador,Regulated nurses,1588.26
-2015,Newfoundland and Labrador,Licensed practical nurses,436.27
-2016,Newfoundland and Labrador,Licensed practical nurses,443.31
-2017,Newfoundland and Labrador,Licensed practical nurses,454.63
-2018,Newfoundland and Labrador,Licensed practical nurses,452.27
-2019,Newfoundland and Labrador,Licensed practical nurses,454.93
-2015,Newfoundland and Labrador,Nurse practitioners,25.75
-2016,Newfoundland and Labrador,Nurse practitioners,28.14
-2017,Newfoundland and Labrador,Nurse practitioners,31.22
-2018,Newfoundland and Labrador,Nurse practitioners,31.98
-2019,Newfoundland and Labrador,Nurse practitioners,34.83
-2015,Newfoundland and Labrador,Registered nurses,1137.63
-2016,Newfoundland and Labrador,Registered nurses,1137.65
-2017,Newfoundland and Labrador,Registered nurses,1129.28
-2018,Newfoundland and Labrador,Registered nurses,1117.15
-2019,Newfoundland and Labrador,Registered nurses,1098.5
-2015,Newfoundland and Labrador,Registered psychiatric nurses,
-2016,Newfoundland and Labrador,Registered psychiatric nurses,
-2017,Newfoundland and Labrador,Registered psychiatric nurses,
-2018,Newfoundland and Labrador,Registered psychiatric nurses,
-2019,Newfoundland and Labrador,Registered psychiatric nurses,
-2015,Newfoundland and Labrador,Respiratory therapists,26.7
-2016,Newfoundland and Labrador,Respiratory therapists,28.14
-2017,Newfoundland and Labrador,Respiratory therapists,28
-2018,Newfoundland and Labrador,Respiratory therapists,29.69
-2019,Newfoundland and Labrador,Respiratory therapists,30.84
-2015,Newfoundland and Labrador,Social workers,283.65
-2016,Newfoundland and Labrador,Social workers,284.84
-2017,Newfoundland and Labrador,Social workers,288.71
-2018,Newfoundland and Labrador,Social workers,295.61
-2019,Newfoundland and Labrador,Social workers,300.75
-2015,Newfoundland and Labrador,Speech–language pathologists,25.18
-2016,Newfoundland and Labrador,Speech–language pathologists,26.63
-2017,Newfoundland and Labrador,Speech–language pathologists,26.87
-2018,Newfoundland and Labrador,Speech–language pathologists,27.98
-2019,Newfoundland and Labrador,Speech–language pathologists,28.17
-2015,Prince Edward Island,Audiologists,3.46
-2016,Prince Edward Island,Audiologists,3.4
-2017,Prince Edward Island,Audiologists,3.32
-2018,Prince Edward Island,Audiologists,4.57
-2019,Prince Edward Island,Audiologists,6.53
-2015,Prince Edward Island,Chiropractors,
-2016,Prince Edward Island,Chiropractors,5.44
-2017,Prince Edward Island,Chiropractors,7.97
-2018,Prince Edward Island,Chiropractors,9.14
-2019,Prince Edward Island,Chiropractors,7.18
-2015,Prince Edward Island,Dental assistants,
-2016,Prince Edward Island,Dental assistants,
-2017,Prince Edward Island,Dental assistants,
-2018,Prince Edward Island,Dental assistants,
-2019,Prince Edward Island,Dental assistants,
-2015,Prince Edward Island,Dental hygienists,60.19
-2016,Prince Edward Island,Dental hygienists,60.56
-2017,Prince Edward Island,Dental hygienists,61.1
-2018,Prince Edward Island,Dental hygienists,61.99
-2019,Prince Edward Island,Dental hygienists,
-2015,Prince Edward Island,Dentists,53.27
-2016,Prince Edward Island,Dentists,54.43
-2017,Prince Edward Island,Dentists,53.13
-2018,Prince Edward Island,Dentists,54.81
-2019,Prince Edward Island,Dentists,49.59
-2015,Prince Edward Island,Dietitians,
-2016,Prince Edward Island,Dietitians,
-2017,Prince Edward Island,Dietitians,52.47
-2018,Prince Edward Island,Dietitians,54.81
-2019,Prince Edward Island,Dietitians,60.03
-2015,Prince Edward Island,Environmental public health professionals,6.92
-2016,Prince Edward Island,Environmental public health professionals,7.48
-2017,Prince Edward Island,Environmental public health professionals,7.97
-2018,Prince Edward Island,Environmental public health professionals,7.18
-2019,Prince Edward Island,Environmental public health professionals,5.22
-2015,Prince Edward Island,Genetic counsellors,
-2016,Prince Edward Island,Genetic counsellors,
-2017,Prince Edward Island,Genetic counsellors,
-2018,Prince Edward Island,Genetic counsellors,
-2019,Prince Edward Island,Genetic counsellors,0.65
-2015,Prince Edward Island,Health information management professionals,
-2016,Prince Edward Island,Health information management professionals,15.65
-2017,Prince Edward Island,Health information management professionals,15.94
-2018,Prince Edward Island,Health information management professionals,
-2019,Prince Edward Island,Health information management professionals,16.31
-2015,Prince Edward Island,Medical laboratory technologists,84.4
-2016,Prince Edward Island,Medical laboratory technologists,83.01
-2017,Prince Edward Island,Medical laboratory technologists,75.05
-2018,Prince Edward Island,Medical laboratory technologists,73.09
-2019,Prince Edward Island,Medical laboratory technologists,74.39
-2015,Prince Edward Island,Medical physicists,4.15
-2016,Prince Edward Island,Medical physicists,4.76
-2017,Prince Edward Island,Medical physicists,3.98
-2018,Prince Edward Island,Medical physicists,3.92
-2019,Prince Edward Island,Medical physicists,3.92
-2015,Prince Edward Island,Medical radiation technologists,76.1
-2016,Prince Edward Island,Medical radiation technologists,75.53
-2017,Prince Edward Island,Medical radiation technologists,75.05
-2018,Prince Edward Island,Medical radiation technologists,73.74
-2019,Prince Edward Island,Medical radiation technologists,70.48
-2015,Prince Edward Island,Midwives,
-2016,Prince Edward Island,Midwives,
-2017,Prince Edward Island,Midwives,
-2018,Prince Edward Island,Midwives,
-2019,Prince Edward Island,Midwives,
-2015,Prince Edward Island,Occupational therapists,40.13
-2016,Prince Edward Island,Occupational therapists,42.19
-2017,Prince Edward Island,Occupational therapists,42.51
-2018,Prince Edward Island,Occupational therapists,43.07
-2019,Prince Edward Island,Occupational therapists,45.68
-2015,Prince Edward Island,Opticians,
-2016,Prince Edward Island,Opticians,25.86
-2017,Prince Edward Island,Opticians,17.93
-2018,Prince Edward Island,Opticians,
-2019,Prince Edward Island,Opticians,20.23
-2015,Prince Edward Island,Optometrists,14.53
-2016,Prince Edward Island,Optometrists,14.29
-2017,Prince Edward Island,Optometrists,13.95
-2018,Prince Edward Island,Optometrists,15.01
-2019,Prince Edward Island,Optometrists,15.01
-2015,Prince Edward Island,Paramedics,
-2016,Prince Edward Island,Paramedics,
-2017,Prince Edward Island,Paramedics,
-2018,Prince Edward Island,Paramedics,100.49
-2019,Prince Edward Island,Paramedics,
-2015,Prince Edward Island,Pharmacists,125.22
-2016,Prince Edward Island,Pharmacists,127.92
-2017,Prince Edward Island,Pharmacists,124.2
-2018,Prince Edward Island,Pharmacists,124.64
-2019,Prince Edward Island,Pharmacists,129.21
-2015,Prince Edward Island,Pharmacy technicians,6.23
-2016,Prince Edward Island,Pharmacy technicians,9.53
-2017,Prince Edward Island,Pharmacy technicians,17.93
-2018,Prince Edward Island,Pharmacy technicians,50.25
-2019,Prince Edward Island,Pharmacy technicians,46.98
-2015,Prince Edward Island,Physician assistants,0.69
-2016,Prince Edward Island,Physician assistants,0.68
-2017,Prince Edward Island,Physician assistants,0.66
-2018,Prince Edward Island,Physician assistants,0.65
-2019,Prince Edward Island,Physician assistants,1.31
-2015,Prince Edward Island,Physicians,184.02
-2016,Prince Edward Island,Physicians,189.84
-2017,Prince Edward Island,Physicians,191.94
-2018,Prince Edward Island,Physicians,199.03
-2019,Prince Edward Island,Physicians,210.77
-2015,Prince Edward Island,Family medicine,101.7
-2016,Prince Edward Island,Family medicine,103.42
-2017,Prince Edward Island,Family medicine,104.94
-2018,Prince Edward Island,Family medicine,113.54
-2019,Prince Edward Island,Family medicine,114.85
-2015,Prince Edward Island,Specialists,82.33
-2016,Prince Edward Island,Specialists,86.41
-2017,Prince Edward Island,Specialists,87.01
-2018,Prince Edward Island,Specialists,85.48
-2019,Prince Edward Island,Specialists,95.93
-2015,Prince Edward Island,Physiotherapists,51.89
-2016,Prince Edward Island,Physiotherapists,61.92
-2017,Prince Edward Island,Physiotherapists,62.43
-2018,Prince Edward Island,Physiotherapists,55.47
-2019,Prince Edward Island,Physiotherapists,67.87
-2015,Prince Edward Island,Psychologists,28.36
-2016,Prince Edward Island,Psychologists,31.3
-2017,Prince Edward Island,Psychologists,28.56
-2018,Prince Edward Island,Psychologists,31.32
-2019,Prince Edward Island,Psychologists,35.89
-2015,Prince Edward Island,Regulated nurses,1554.52
-2016,Prince Edward Island,Regulated nurses,1554.07
-2017,Prince Edward Island,Regulated nurses,1542.18
-2018,Prince Edward Island,Regulated nurses,1579.18
-2019,Prince Edward Island,Regulated nurses,1624.21
-2015,Prince Edward Island,Licensed practical nurses,445.53
-2016,Prince Edward Island,Licensed practical nurses,442.95
-2017,Prince Edward Island,Licensed practical nurses,444.99
-2018,Prince Edward Island,Licensed practical nurses,473.1
-2019,Prince Edward Island,Licensed practical nurses,484.2
-2015,Prince Edward Island,Nurse practitioners,11.76
-2016,Prince Edward Island,Nurse practitioners,14.97
-2017,Prince Edward Island,Nurse practitioners,15.94
-2018,Prince Edward Island,Nurse practitioners,18.92
-2019,Prince Edward Island,Nurse practitioners,28.06
-2015,Prince Edward Island,Registered nurses,1097.23
-2016,Prince Edward Island,Registered nurses,1096.15
-2017,Prince Edward Island,Registered nurses,1081.25
-2018,Prince Edward Island,Registered nurses,1087.16
-2019,Prince Edward Island,Registered nurses,1111.95
-2015,Prince Edward Island,Registered psychiatric nurses,
-2016,Prince Edward Island,Registered psychiatric nurses,
-2017,Prince Edward Island,Registered psychiatric nurses,
-2018,Prince Edward Island,Registered psychiatric nurses,
-2019,Prince Edward Island,Registered psychiatric nurses,
-2015,Prince Edward Island,Respiratory therapists,17.3
-2016,Prince Edward Island,Respiratory therapists,19.73
-2017,Prince Edward Island,Respiratory therapists,19.92
-2018,Prince Edward Island,Respiratory therapists,16.97
-2019,Prince Edward Island,Respiratory therapists,20.23
-2015,Prince Edward Island,Social workers,
-2016,Prince Edward Island,Social workers,
-2017,Prince Edward Island,Social workers,209.87
-2018,Prince Edward Island,Social workers,223.83
-2019,Prince Edward Island,Social workers,216.65
-2015,Prince Edward Island,Speech–language pathologists,27.67
-2016,Prince Edward Island,Speech–language pathologists,27.9
-2017,Prince Edward Island,Speech–language pathologists,27.23
-2018,Prince Edward Island,Speech–language pathologists,25.45
-2019,Prince Edward Island,Speech–language pathologists,31.32
-2015,Nova Scotia,Audiologists,8.65
-2016,Nova Scotia,Audiologists,8.91
-2017,Nova Scotia,Audiologists,9.47
-2018,Nova Scotia,Audiologists,10.21
-2019,Nova Scotia,Audiologists,10.52
-2015,Nova Scotia,Chiropractors,15.38
-2016,Nova Scotia,Chiropractors,16.02
-2017,Nova Scotia,Chiropractors,16.41
-2018,Nova Scotia,Chiropractors,17.29
-2019,Nova Scotia,Chiropractors,18.02
-2015,Nova Scotia,Dental assistants,
-2016,Nova Scotia,Dental assistants,79.13
-2017,Nova Scotia,Dental assistants,79.63
-2018,Nova Scotia,Dental assistants,83.86
-2019,Nova Scotia,Dental assistants,86.57
-2015,Nova Scotia,Dental hygienists,70.69
-2016,Nova Scotia,Dental hygienists,71.81
-2017,Nova Scotia,Dental hygienists,77.42
-2018,Nova Scotia,Dental hygienists,74.28
-2019,Nova Scotia,Dental hygienists,78.03
-2015,Nova Scotia,Dentists,56.38
-2016,Nova Scotia,Dentists,57.17
-2017,Nova Scotia,Dentists,58.17
-2018,Nova Scotia,Dentists,58.86
-2019,Nova Scotia,Dentists,58.34
-2015,Nova Scotia,Dietitians,59.8
-2016,Nova Scotia,Dietitians,61.73
-2017,Nova Scotia,Dietitians,62.27
-2018,Nova Scotia,Dietitians,62.82
-2019,Nova Scotia,Dietitians,64.17
-2015,Nova Scotia,Environmental public health professionals,8.86
-2016,Nova Scotia,Environmental public health professionals,10.18
-2017,Nova Scotia,Environmental public health professionals,8.42
-2018,Nova Scotia,Environmental public health professionals,8.65
-2019,Nova Scotia,Environmental public health professionals,10.63
-2015,Nova Scotia,Genetic counsellors,1.49
-2016,Nova Scotia,Genetic counsellors,1.27
-2017,Nova Scotia,Genetic counsellors,1.37
-2018,Nova Scotia,Genetic counsellors,1.46
-2019,Nova Scotia,Genetic counsellors,1.46
-2015,Nova Scotia,Health information management professionals,
-2016,Nova Scotia,Health information management professionals,16.86
-2017,Nova Scotia,Health information management professionals,18.09
-2018,Nova Scotia,Health information management professionals,
-2019,Nova Scotia,Health information management professionals,20.52
-2015,Nova Scotia,Medical laboratory technologists,89.37
-2016,Nova Scotia,Medical laboratory technologists,
-2017,Nova Scotia,Medical laboratory technologists,85.1
-2018,Nova Scotia,Medical laboratory technologists,83.76
-2019,Nova Scotia,Medical laboratory technologists,80.53
-2015,Nova Scotia,Medical physicists,1.71
-2016,Nova Scotia,Medical physicists,1.7
-2017,Nova Scotia,Medical physicists,1.58
-2018,Nova Scotia,Medical physicists,1.56
-2019,Nova Scotia,Medical physicists,1.67
-2015,Nova Scotia,Medical radiation technologists,61.18
-2016,Nova Scotia,Medical radiation technologists,64.28
-2017,Nova Scotia,Medical radiation technologists,65.11
-2018,Nova Scotia,Medical radiation technologists,63.44
-2019,Nova Scotia,Medical radiation technologists,64.59
-2015,Nova Scotia,Midwives,1.07
-2016,Nova Scotia,Midwives,1.06
-2017,Nova Scotia,Midwives,1.05
-2018,Nova Scotia,Midwives,1.04
-2019,Nova Scotia,Midwives,
-2015,Nova Scotia,Occupational therapists,52.85
-2016,Nova Scotia,Occupational therapists,54.73
-2017,Nova Scotia,Occupational therapists,55.85
-2018,Nova Scotia,Occupational therapists,56.46
-2019,Nova Scotia,Occupational therapists,59.48
-2015,Nova Scotia,Opticians,
-2016,Nova Scotia,Opticians,28.32
-2017,Nova Scotia,Opticians,19.04
-2018,Nova Scotia,Opticians,
-2019,Nova Scotia,Opticians,17.19
-2015,Nova Scotia,Optometrists,13.88
-2016,Nova Scotia,Optometrists,14
-2017,Nova Scotia,Optometrists,14.52
-2018,Nova Scotia,Optometrists,14.17
-2019,Nova Scotia,Optometrists,14.48
-2015,Nova Scotia,Paramedics,
-2016,Nova Scotia,Paramedics,
-2017,Nova Scotia,Paramedics,126.54
-2018,Nova Scotia,Paramedics,133.45
-2019,Nova Scotia,Paramedics,135.74
-2015,Nova Scotia,Pharmacists,141.48
-2016,Nova Scotia,Pharmacists,140.22
-2017,Nova Scotia,Pharmacists,138.95
-2018,Nova Scotia,Pharmacists,139.18
-2019,Nova Scotia,Pharmacists,138.45
-2015,Nova Scotia,Pharmacy technicians,7.37
-2016,Nova Scotia,Pharmacy technicians,12.83
-2017,Nova Scotia,Pharmacy technicians,20.83
-2018,Nova Scotia,Pharmacy technicians,18.75
-2019,Nova Scotia,Pharmacy technicians,20.21
-2015,Nova Scotia,Physician assistants,2.88
-2016,Nova Scotia,Physician assistants,3.18
-2017,Nova Scotia,Physician assistants,4.1
-2018,Nova Scotia,Physician assistants,3.44
-2019,Nova Scotia,Physician assistants,3.54
-2015,Nova Scotia,Physicians,263.21
-2016,Nova Scotia,Physicians,260.61
-2017,Nova Scotia,Physicians,258.34
-2018,Nova Scotia,Physicians,272.62
-2019,Nova Scotia,Physicians,273.35
-2015,Nova Scotia,Family medicine,132.51
-2016,Nova Scotia,Family medicine,128.87
-2017,Nova Scotia,Family medicine,129.8
-2018,Nova Scotia,Family medicine,134.59
-2019,Nova Scotia,Family medicine,134.9
-2015,Nova Scotia,Specialists,130.7
-2016,Nova Scotia,Specialists,131.74
-2017,Nova Scotia,Specialists,128.54
-2018,Nova Scotia,Specialists,138.03
-2019,Nova Scotia,Specialists,138.45
-2015,Nova Scotia,Physiotherapists,69.73
-2016,Nova Scotia,Physiotherapists,71.17
-2017,Nova Scotia,Physiotherapists,73.11
-2018,Nova Scotia,Physiotherapists,74.9
-2019,Nova Scotia,Physiotherapists,78.55
-2015,Nova Scotia,Psychologists,
-2016,Nova Scotia,Psychologists,58.55
-2017,Nova Scotia,Psychologists,59.12
-2018,Nova Scotia,Psychologists,62.61
-2019,Nova Scotia,Psychologists,65
-2015,Nova Scotia,Regulated nurses,1450.15
-2016,Nova Scotia,Regulated nurses,1447.72
-2017,Nova Scotia,Regulated nurses,1451.91
-2018,Nova Scotia,Regulated nurses,1445.5
-2019,Nova Scotia,Regulated nurses,1461.55
-2015,Nova Scotia,Licensed practical nurses,417.29
-2016,Nova Scotia,Licensed practical nurses,425.76
-2017,Nova Scotia,Licensed practical nurses,435.69
-2018,Nova Scotia,Licensed practical nurses,442.94
-2019,Nova Scotia,Licensed practical nurses,449.82
-2015,Nova Scotia,Nurse practitioners,15.91
-2016,Nova Scotia,Nurse practitioners,15.49
-2017,Nova Scotia,Nurse practitioners,17.15
-2018,Nova Scotia,Nurse practitioners,18.96
-2019,Nova Scotia,Nurse practitioners,21.25
-2015,Nova Scotia,Registered nurses,1016.95
-2016,Nova Scotia,Registered nurses,1006.48
-2017,Nova Scotia,Registered nurses,999.07
-2018,Nova Scotia,Registered nurses,983.6
-2019,Nova Scotia,Registered nurses,990.48
-2015,Nova Scotia,Registered psychiatric nurses,
-2016,Nova Scotia,Registered psychiatric nurses,
-2017,Nova Scotia,Registered psychiatric nurses,
-2018,Nova Scotia,Registered psychiatric nurses,
-2019,Nova Scotia,Registered psychiatric nurses,
-2015,Nova Scotia,Respiratory therapists,30.86
-2016,Nova Scotia,Respiratory therapists,32.67
-2017,Nova Scotia,Respiratory therapists,33.45
-2018,Nova Scotia,Respiratory therapists,33.86
-2019,Nova Scotia,Respiratory therapists,36.04
-2015,Nova Scotia,Social workers,166.57
-2016,Nova Scotia,Social workers,187.32
-2017,Nova Scotia,Social workers,199.23
-2018,Nova Scotia,Social workers,204.18
-2019,Nova Scotia,Social workers,230.43
-2015,Nova Scotia,Speech–language pathologists,24.56
-2016,Nova Scotia,Speech–language pathologists,24.82
-2017,Nova Scotia,Speech–language pathologists,24.4
-2018,Nova Scotia,Speech–language pathologists,26.56
-2019,Nova Scotia,Speech–language pathologists,35.11
-2015,New Brunswick,Audiologists,9.88
-2016,New Brunswick,Audiologists,10.09
-2017,New Brunswick,Audiologists,9.78
-2018,New Brunswick,Audiologists,9.86
-2019,New Brunswick,Audiologists,10.38
-2015,New Brunswick,Chiropractors,10.28
-2016,New Brunswick,Chiropractors,11.4
-2017,New Brunswick,Chiropractors,10.95
-2018,New Brunswick,Chiropractors,12.2
-2019,New Brunswick,Chiropractors,12.85
-2015,New Brunswick,Dental assistants,71.03
-2016,New Brunswick,Dental assistants,69.17
-2017,New Brunswick,Dental assistants,70.16
-2018,New Brunswick,Dental assistants,
-2019,New Brunswick,Dental assistants,69.55
-2015,New Brunswick,Dental hygienists,63.25
-2016,New Brunswick,Dental hygienists,64.06
-2017,New Brunswick,Dental hygienists,66.24
-2018,New Brunswick,Dental hygienists,65.92
-2019,New Brunswick,Dental hygienists,67.09
-2015,New Brunswick,Dentists,43.09
-2016,New Brunswick,Dentists,44.15
-2017,New Brunswick,Dentists,41.86
-2018,New Brunswick,Dentists,42.3
-2019,New Brunswick,Dentists,42.95
-2015,New Brunswick,Dietitians,46.39
-2016,New Brunswick,Dietitians,48.99
-2017,New Brunswick,Dietitians,48.64
-2018,New Brunswick,Dietitians,51.13
-2019,New Brunswick,Dietitians,50.22
-2015,New Brunswick,Environmental public health professionals,6.98
-2016,New Brunswick,Environmental public health professionals,5.9
-2017,New Brunswick,Environmental public health professionals,6.52
-2018,New Brunswick,Environmental public health professionals,6.49
-2019,New Brunswick,Environmental public health professionals,6.36
-2015,New Brunswick,Genetic counsellors,
-2016,New Brunswick,Genetic counsellors,
-2017,New Brunswick,Genetic counsellors,
-2018,New Brunswick,Genetic counsellors,
-2019,New Brunswick,Genetic counsellors,0
-2015,New Brunswick,Health information management professionals,
-2016,New Brunswick,Health information management professionals,16.24
-2017,New Brunswick,Health information management professionals,16.69
-2018,New Brunswick,Health information management professionals,
-2019,New Brunswick,Health information management professionals,16.22
-2015,New Brunswick,Medical laboratory technologists,84.6
-2016,New Brunswick,Medical laboratory technologists,87.12
-2017,New Brunswick,Medical laboratory technologists,84.37
-2018,New Brunswick,Medical laboratory technologists,82.66
-2019,New Brunswick,Medical laboratory technologists,85.51
-2015,New Brunswick,Medical physicists,1.84
-2016,New Brunswick,Medical physicists,1.83
-2017,New Brunswick,Medical physicists,1.7
-2018,New Brunswick,Medical physicists,1.69
-2019,New Brunswick,Medical physicists,1.69
-2015,New Brunswick,Medical radiation technologists,74.72
-2016,New Brunswick,Medical radiation technologists,76.24
-2017,New Brunswick,Medical radiation technologists,79.55
-2018,New Brunswick,Medical radiation technologists,77.21
-2019,New Brunswick,Medical radiation technologists,75.26
-2015,New Brunswick,Midwives,0
-2016,New Brunswick,Midwives,0
-2017,New Brunswick,Midwives,0.39
-2018,New Brunswick,Midwives,0.52
-2019,New Brunswick,Midwives,0.91
-2015,New Brunswick,Occupational therapists,45.33
-2016,New Brunswick,Occupational therapists,46.77
-2017,New Brunswick,Occupational therapists,47.99
-2018,New Brunswick,Occupational therapists,48.4
-2019,New Brunswick,Occupational therapists,52.29
-2015,New Brunswick,Opticians,
-2016,New Brunswick,Opticians,27.38
-2017,New Brunswick,Opticians,29.21
-2018,New Brunswick,Opticians,
-2019,New Brunswick,Opticians,32.83
-2015,New Brunswick,Optometrists,15.55
-2016,New Brunswick,Optometrists,16.24
-2017,New Brunswick,Optometrists,15.91
-2018,New Brunswick,Optometrists,15.44
-2019,New Brunswick,Optometrists,16.61
-2015,New Brunswick,Paramedics,160.11
-2016,New Brunswick,Paramedics,
-2017,New Brunswick,Paramedics,
-2018,New Brunswick,Paramedics,
-2019,New Brunswick,Paramedics,
-2015,New Brunswick,Pharmacists,113.46
-2016,New Brunswick,Pharmacists,113.32
-2017,New Brunswick,Pharmacists,119.06
-2018,New Brunswick,Pharmacists,118.6
-2019,New Brunswick,Pharmacists,118.99
-2015,New Brunswick,Pharmacy technicians,2.9
-2016,New Brunswick,Pharmacy technicians,4.98
-2017,New Brunswick,Pharmacy technicians,10.56
-2018,New Brunswick,Pharmacy technicians,17.65
-2019,New Brunswick,Pharmacy technicians,31.66
-2015,New Brunswick,Physician assistants,0.66
-2016,New Brunswick,Physician assistants,1.05
-2017,New Brunswick,Physician assistants,1.3
-2018,New Brunswick,Physician assistants,1.17
-2019,New Brunswick,Physician assistants,1.17
-2015,New Brunswick,Physicians,220.6
-2016,New Brunswick,Physicians,227.29
-2017,New Brunswick,Physicians,234.33
-2018,New Brunswick,Physicians,244.73
-2019,New Brunswick,Physicians,249.54
-2015,New Brunswick,Family medicine,120.45
-2016,New Brunswick,Family medicine,125.76
-2017,New Brunswick,Family medicine,128.84
-2018,New Brunswick,Family medicine,133.27
-2019,New Brunswick,Family medicine,137.29
-2015,New Brunswick,Specialists,100.15
-2016,New Brunswick,Specialists,101.53
-2017,New Brunswick,Specialists,105.5
-2018,New Brunswick,Specialists,111.47
-2019,New Brunswick,Specialists,112.25
-2015,New Brunswick,Physiotherapists,67.08
-2016,New Brunswick,Physiotherapists,67.6
-2017,New Brunswick,Physiotherapists,66.38
-2018,New Brunswick,Physiotherapists,70.2
-2019,New Brunswick,Physiotherapists,73.58
-2015,New Brunswick,Psychologists,
-2016,New Brunswick,Psychologists,47.68
-2017,New Brunswick,Psychologists,47.21
-2018,New Brunswick,Psychologists,46.2
-2019,New Brunswick,Psychologists,47.23
-2015,New Brunswick,Regulated nurses,1532.33
-2016,New Brunswick,Regulated nurses,1505.86
-2017,New Brunswick,Regulated nurses,1489.47
-2018,New Brunswick,Regulated nurses,1500.2
-2019,New Brunswick,Regulated nurses,1485.01
-2015,New Brunswick,Licensed practical nurses,432.11
-2016,New Brunswick,Licensed practical nurses,438.2
-2017,New Brunswick,Licensed practical nurses,424.07
-2018,New Brunswick,Licensed practical nurses,440.42
-2019,New Brunswick,Licensed practical nurses,426.4
-2015,New Brunswick,Nurse practitioners,14.36
-2016,New Brunswick,Nurse practitioners,15.33
-2017,New Brunswick,Nurse practitioners,16.3
-2018,New Brunswick,Nurse practitioners,16.87
-2019,New Brunswick,Nurse practitioners,18.04
-2015,New Brunswick,Registered nurses,1085.87
-2016,New Brunswick,Registered nurses,1052.34
-2017,New Brunswick,Registered nurses,1049.09
-2018,New Brunswick,Registered nurses,1042.91
-2019,New Brunswick,Registered nurses,1040.57
-2015,New Brunswick,Registered psychiatric nurses,
-2016,New Brunswick,Registered psychiatric nurses,
-2017,New Brunswick,Registered psychiatric nurses,
-2018,New Brunswick,Registered psychiatric nurses,
-2019,New Brunswick,Registered psychiatric nurses,
-2015,New Brunswick,Respiratory therapists,48.63
-2016,New Brunswick,Respiratory therapists,46.9
-2017,New Brunswick,Respiratory therapists,50.73
-2018,New Brunswick,Respiratory therapists,53.2
-2019,New Brunswick,Respiratory therapists,55.67
-2015,New Brunswick,Social workers,221.92
-2016,New Brunswick,Social workers,228.34
-2017,New Brunswick,Social workers,254.03
-2018,New Brunswick,Social workers,262.25
-2019,New Brunswick,Social workers,268.48
-2015,New Brunswick,Speech–language pathologists,31.36
-2016,New Brunswick,Speech–language pathologists,32.1
-2017,New Brunswick,Speech–language pathologists,31.43
-2018,New Brunswick,Speech–language pathologists,31.53
-2019,New Brunswick,Speech–language pathologists,32.44
-2015,Quebec,Audiologists,4.99
-2016,Quebec,Audiologists,5.02
-2017,Quebec,Audiologists,5.23
-2018,Quebec,Audiologists,5.34
-2019,Quebec,Audiologists,5.61
-2015,Quebec,Chiropractors,16.05
-2016,Quebec,Chiropractors,16.19
-2017,Quebec,Chiropractors,16.32
-2018,Quebec,Chiropractors,16.13
-2019,Quebec,Chiropractors,16.32
-2015,Quebec,Dental assistants,
-2016,Quebec,Dental assistants,
-2017,Quebec,Dental assistants,26.79
-2018,Quebec,Dental assistants,33.05
-2019,Quebec,Dental assistants,
-2015,Quebec,Dental hygienists,75.23
-2016,Quebec,Dental hygienists,76.79
-2017,Quebec,Dental hygienists,78
-2018,Quebec,Dental hygienists,78.31
-2019,Quebec,Dental hygienists,80
-2015,Quebec,Dentists,61.83
-2016,Quebec,Dentists,62.89
-2017,Quebec,Dentists,62.37
-2018,Quebec,Dentists,63.76
-2019,Quebec,Dentists,
-2015,Quebec,Dietitians,37.69
-2016,Quebec,Dietitians,38.6
-2017,Quebec,Dietitians,38.81
-2018,Quebec,Dietitians,38.62
-2019,Quebec,Dietitians,
-2015,Quebec,Environmental public health professionals,0.12
-2016,Quebec,Environmental public health professionals,0.12
-2017,Quebec,Environmental public health professionals,0.11
-2018,Quebec,Environmental public health professionals,0.13
-2019,Quebec,Environmental public health professionals,0.14
-2015,Quebec,Genetic counsellors,0.53
-2016,Quebec,Genetic counsellors,0.67
-2017,Quebec,Genetic counsellors,0.57
-2018,Quebec,Genetic counsellors,0.69
-2019,Quebec,Genetic counsellors,0.64
-2015,Quebec,Health information management professionals,
-2016,Quebec,Health information management professionals,6.41
-2017,Quebec,Health information management professionals,6.42
-2018,Quebec,Health information management professionals,6.36
-2019,Quebec,Health information management professionals,
-2015,Quebec,Medical laboratory technologists,56.62
-2016,Quebec,Medical laboratory technologists,58.6
-2017,Quebec,Medical laboratory technologists,58.98
-2018,Quebec,Medical laboratory technologists,58.61
-2019,Quebec,Medical laboratory technologists,58.2
-2015,Quebec,Medical physicists,1.1
-2016,Quebec,Medical physicists,1.09
-2017,Quebec,Medical physicists,1.21
-2018,Quebec,Medical physicists,1.26
-2019,Quebec,Medical physicists,1.17
-2015,Quebec,Medical radiation technologists,67.44
-2016,Quebec,Medical radiation technologists,77.66
-2017,Quebec,Medical radiation technologists,78.26
-2018,Quebec,Medical radiation technologists,78.51
-2019,Quebec,Medical radiation technologists,80.34
-2015,Quebec,Midwives,1.9
-2016,Quebec,Midwives,2.69
-2017,Quebec,Midwives,2.66
-2018,Quebec,Midwives,2.91
-2019,Quebec,Midwives,3.07
-2015,Quebec,Occupational therapists,59.03
-2016,Quebec,Occupational therapists,60.54
-2017,Quebec,Occupational therapists,62.58
-2018,Quebec,Occupational therapists,64.19
-2019,Quebec,Occupational therapists,66.27
-2015,Quebec,Opticians,23.85
-2016,Quebec,Opticians,24.42
-2017,Quebec,Opticians,25.01
-2018,Quebec,Opticians,
-2019,Quebec,Opticians,1.29
-2015,Quebec,Optometrists,17.97
-2016,Quebec,Optometrists,18.83
-2017,Quebec,Optometrists,18.2
-2018,Quebec,Optometrists,18.23
-2019,Quebec,Optometrists,18.69
-2015,Quebec,Paramedics,70.05
-2016,Quebec,Paramedics,70.53
-2017,Quebec,Paramedics,64.26
-2018,Quebec,Paramedics,66.41
-2019,Quebec,Paramedics,66.34
-2015,Quebec,Pharmacists,106.94
-2016,Quebec,Pharmacists,113.18
-2017,Quebec,Pharmacists,110.4
-2018,Quebec,Pharmacists,110.4
-2019,Quebec,Pharmacists,112.75
-2015,Quebec,Pharmacy technicians,
-2016,Quebec,Pharmacy technicians,
-2017,Quebec,Pharmacy technicians,
-2018,Quebec,Pharmacy technicians,
-2019,Quebec,Pharmacy technicians,
-2015,Quebec,Physician assistants,0.2
-2016,Quebec,Physician assistants,0.24
-2017,Quebec,Physician assistants,0.3
-2018,Quebec,Physician assistants,0.27
-2019,Quebec,Physician assistants,0.25
-2015,Quebec,Physicians,245.31
-2016,Quebec,Physicians,246.42
-2017,Quebec,Physicians,251.97
-2018,Quebec,Physicians,248.83
-2019,Quebec,Physicians,256.06
-2015,Quebec,Family medicine,118.69
-2016,Quebec,Family medicine,119.41
-2017,Quebec,Family medicine,122.93
-2018,Quebec,Family medicine,122.66
-2019,Quebec,Family medicine,128.55
-2015,Quebec,Specialists,126.63
-2016,Quebec,Specialists,127
-2017,Quebec,Specialists,129.05
-2018,Quebec,Specialists,126.17
-2019,Quebec,Specialists,127.51
-2015,Quebec,Physiotherapists,56.6
-2016,Quebec,Physiotherapists,54.77
-2017,Quebec,Physiotherapists,55.77
-2018,Quebec,Physiotherapists,64.48
-2019,Quebec,Physiotherapists,64.64
-2015,Quebec,Psychologists,95.72
-2016,Quebec,Psychologists,95.83
-2017,Quebec,Psychologists,93.39
-2018,Quebec,Psychologists,92.49
-2019,Quebec,Psychologists,92.1
-2015,Quebec,Regulated nurses,1211.69
-2016,Quebec,Regulated nurses,1201.49
-2017,Quebec,Regulated nurses,1185.37
-2018,Quebec,Regulated nurses,1186.96
-2019,Quebec,Regulated nurses,1206.52
-2015,Quebec,Licensed practical nurses,351.21
-2016,Quebec,Licensed practical nurses,338.61
-2017,Quebec,Licensed practical nurses,328.99
-2018,Quebec,Licensed practical nurses,328.99
-2019,Quebec,Licensed practical nurses,333.63
-2015,Quebec,Nurse practitioners,3.73
-2016,Quebec,Nurse practitioners,4.62
-2017,Quebec,Nurse practitioners,5.19
-2018,Quebec,Nurse practitioners,6.07
-2019,Quebec,Nurse practitioners,6.5
-2015,Quebec,Registered nurses,856.75
-2016,Quebec,Registered nurses,858.26
-2017,Quebec,Registered nurses,851.19
-2018,Quebec,Registered nurses,851.9
-2019,Quebec,Registered nurses,866.4
-2015,Quebec,Registered psychiatric nurses,
-2016,Quebec,Registered psychiatric nurses,
-2017,Quebec,Registered psychiatric nurses,
-2018,Quebec,Registered psychiatric nurses,
-2019,Quebec,Registered psychiatric nurses,
-2015,Quebec,Respiratory therapists,50.68
-2016,Quebec,Respiratory therapists,51.56
-2017,Quebec,Respiratory therapists,51.13
-2018,Quebec,Respiratory therapists,47.72
-2019,Quebec,Respiratory therapists,52.49
-2015,Quebec,Social workers,158.69
-2016,Quebec,Social workers,163.56
-2017,Quebec,Social workers,164.71
-2018,Quebec,Social workers,169.12
-2019,Quebec,Social workers,176.2
-2015,Quebec,Speech–language pathologists,28.73
-2016,Quebec,Speech–language pathologists,29.93
-2017,Quebec,Speech–language pathologists,32.54
-2018,Quebec,Speech–language pathologists,33.82
-2019,Quebec,Speech–language pathologists,35
-2015,Ontario,Audiologists,4.76
-2016,Ontario,Audiologists,4.99
-2017,Ontario,Audiologists,5.1
-2018,Ontario,Audiologists,5.22
-2019,Ontario,Audiologists,5.51
-2015,Ontario,Chiropractors,31.03
-2016,Ontario,Chiropractors,31.29
-2017,Ontario,Chiropractors,31.5
-2018,Ontario,Chiropractors,32.07
-2019,Ontario,Chiropractors,32.3
-2015,Ontario,Dental assistants,38.53
-2016,Ontario,Dental assistants,37.75
-2017,Ontario,Dental assistants,35.55
-2018,Ontario,Dental assistants,
-2019,Ontario,Dental assistants,33.15
-2015,Ontario,Dental hygienists,94.21
-2016,Ontario,Dental hygienists,94.3
-2017,Ontario,Dental hygienists,93.45
-2018,Ontario,Dental hygienists,90.09
-2019,Ontario,Dental hygienists,95.61
-2015,Ontario,Dentists,68.96
-2016,Ontario,Dentists,70.17
-2017,Ontario,Dentists,70.63
-2018,Ontario,Dentists,72.73
-2019,Ontario,Dentists,73.43
-2015,Ontario,Dietitians,27.76
-2016,Ontario,Dietitians,28.14
-2017,Ontario,Dietitians,28.31
-2018,Ontario,Dietitians,28.9
-2019,Ontario,Dietitians,29.24
-2015,Ontario,Environmental public health professionals,5.19
-2016,Ontario,Environmental public health professionals,5.32
-2017,Ontario,Environmental public health professionals,5.32
-2018,Ontario,Environmental public health professionals,5.52
-2019,Ontario,Environmental public health professionals,5.37
-2015,Ontario,Genetic counsellors,1.12
-2016,Ontario,Genetic counsellors,1.06
-2017,Ontario,Genetic counsellors,0.91
-2018,Ontario,Genetic counsellors,1.04
-2019,Ontario,Genetic counsellors,1.13
-2015,Ontario,Health information management professionals,
-2016,Ontario,Health information management professionals,14.02
-2017,Ontario,Health information management professionals,14.53
-2018,Ontario,Health information management professionals,
-2019,Ontario,Health information management professionals,14.91
-2015,Ontario,Medical laboratory technologists,53.16
-2016,Ontario,Medical laboratory technologists,49.17
-2017,Ontario,Medical laboratory technologists,51.61
-2018,Ontario,Medical laboratory technologists,49.79
-2019,Ontario,Medical laboratory technologists,50.64
-2015,Ontario,Medical physicists,1.47
-2016,Ontario,Medical physicists,1.36
-2017,Ontario,Medical physicists,1.46
-2018,Ontario,Medical physicists,1.53
-2019,Ontario,Medical physicists,1.49
-2015,Ontario,Medical radiation technologists,50.35
-2016,Ontario,Medical radiation technologists,50.37
-2017,Ontario,Medical radiation technologists,50.04
-2018,Ontario,Medical radiation technologists,74.85
-2019,Ontario,Medical radiation technologists,76.92
-2015,Ontario,Midwives,4.95
-2016,Ontario,Midwives,5.12
-2017,Ontario,Midwives,5.32
-2018,Ontario,Midwives,5.42
-2019,Ontario,Midwives,5.59
-2015,Ontario,Occupational therapists,39.81
-2016,Ontario,Occupational therapists,40.47
-2017,Ontario,Occupational therapists,41.47
-2018,Ontario,Occupational therapists,42.01
-2019,Ontario,Occupational therapists,43.53
-2015,Ontario,Opticians,
-2016,Ontario,Opticians,19.09
-2017,Ontario,Opticians,9.1
-2018,Ontario,Opticians,
-2019,Ontario,Opticians,11.57
-2015,Ontario,Optometrists,16.91
-2016,Ontario,Optometrists,16.91
-2017,Ontario,Optometrists,17.23
-2018,Ontario,Optometrists,17.57
-2019,Ontario,Optometrists,18.31
-2015,Ontario,Paramedics,57.59
-2016,Ontario,Paramedics,59.05
-2017,Ontario,Paramedics,59.89
-2018,Ontario,Paramedics,61.85
-2019,Ontario,Paramedics,62.81
-2015,Ontario,Pharmacists,104.98
-2016,Ontario,Pharmacists,107.76
-2017,Ontario,Pharmacists,109.53
-2018,Ontario,Pharmacists,110.94
-2019,Ontario,Pharmacists,113.88
-2015,Ontario,Pharmacy technicians,27.98
-2016,Ontario,Pharmacy technicians,30.89
-2017,Ontario,Pharmacy technicians,32.67
-2018,Ontario,Pharmacy technicians,33.8
-2019,Ontario,Pharmacy technicians,35.27
-2015,Ontario,Physician assistants,2
-2016,Ontario,Physician assistants,2.5
-2017,Ontario,Physician assistants,
-2018,Ontario,Physician assistants,3.06
-2019,Ontario,Physician assistants,3.62
-2015,Ontario,Physicians,222.47
-2016,Ontario,Physicians,223.54
-2017,Ontario,Physicians,227.8
-2018,Ontario,Physicians,236.49
-2019,Ontario,Physicians,238.04
-2015,Ontario,Family medicine,109.99
-2016,Ontario,Family medicine,111.11
-2017,Ontario,Family medicine,114.33
-2018,Ontario,Family medicine,117.39
-2019,Ontario,Family medicine,117.74
-2015,Ontario,Specialists,112.47
-2016,Ontario,Specialists,112.43
-2017,Ontario,Specialists,113.47
-2018,Ontario,Specialists,119.1
-2019,Ontario,Specialists,120.3
-2015,Ontario,Physiotherapists,59.54
-2016,Ontario,Physiotherapists,61.35
-2017,Ontario,Physiotherapists,62.17
-2018,Ontario,Physiotherapists,64.42
-2019,Ontario,Physiotherapists,66.55
-2015,Ontario,Psychologists,27.18
-2016,Ontario,Psychologists,27.23
-2017,Ontario,Psychologists,27.32
-2018,Ontario,Psychologists,27.54
-2019,Ontario,Psychologists,27.93
-2015,Ontario,Regulated nurses,1084.59
-2016,Ontario,Regulated nurses,1088.45
-2017,Ontario,Regulated nurses,1087.08
-2018,Ontario,Regulated nurses,1086.17
-2019,Ontario,Regulated nurses,1118.06
-2015,Ontario,Licensed practical nurses,318.49
-2016,Ontario,Licensed practical nurses,333.34
-2017,Ontario,Licensed practical nurses,341.44
-2018,Ontario,Licensed practical nurses,348.87
-2019,Ontario,Licensed practical nurses,368.71
-2015,Ontario,Nurse practitioners,18.38
-2016,Ontario,Nurse practitioners,19.96
-2017,Ontario,Nurse practitioners,21.4
-2018,Ontario,Nurse practitioners,22.38
-2019,Ontario,Nurse practitioners,24.09
-2015,Ontario,Registered nurses,747.71
-2016,Ontario,Registered nurses,735.16
-2017,Ontario,Registered nurses,724.25
-2018,Ontario,Registered nurses,714.92
-2019,Ontario,Registered nurses,725.26
-2015,Ontario,Registered psychiatric nurses,
-2016,Ontario,Registered psychiatric nurses,
-2017,Ontario,Registered psychiatric nurses,
-2018,Ontario,Registered psychiatric nurses,
-2019,Ontario,Registered psychiatric nurses,
-2015,Ontario,Respiratory therapists,23
-2016,Ontario,Respiratory therapists,23.3
-2017,Ontario,Respiratory therapists,23.77
-2018,Ontario,Respiratory therapists,23.77
-2019,Ontario,Respiratory therapists,24.06
-2015,Ontario,Social workers,122.58
-2016,Ontario,Social workers,134.58
-2017,Ontario,Social workers,122.43
-2018,Ontario,Social workers,125.05
-2019,Ontario,Social workers,137.72
-2015,Ontario,Speech–language pathologists,20.33
-2016,Ontario,Speech–language pathologists,21.14
-2017,Ontario,Speech–language pathologists,21.16
-2018,Ontario,Speech–language pathologists,22.01
-2019,Ontario,Speech–language pathologists,22.87
-2015,Manitoba,Audiologists,5.57
-2016,Manitoba,Audiologists,5.4
-2017,Manitoba,Audiologists,5.69
-2018,Manitoba,Audiologists,5.1
-2019,Manitoba,Audiologists,5.03
-2015,Manitoba,Chiropractors,22.21
-2016,Manitoba,Chiropractors,22.3
-2017,Manitoba,Chiropractors,22.32
-2018,Manitoba,Chiropractors,22.26
-2019,Manitoba,Chiropractors,21.74
-2015,Manitoba,Dental assistants,95.26
-2016,Manitoba,Dental assistants,98.62
-2017,Manitoba,Dental assistants,100.42
-2018,Manitoba,Dental assistants,
-2019,Manitoba,Dental assistants,
-2015,Manitoba,Dental hygienists,53.16
-2016,Manitoba,Dental hygienists,55.47
-2017,Manitoba,Dental hygienists,55.41
-2018,Manitoba,Dental hygienists,56.06
-2019,Manitoba,Dental hygienists,57.17
-2015,Manitoba,Dentists,53.94
-2016,Manitoba,Dentists,54.64
-2017,Manitoba,Dentists,53.24
-2018,Manitoba,Dentists,53.99
-2019,Manitoba,Dentists,54.43
-2015,Manitoba,Dietitians,36.76
-2016,Manitoba,Dietitians,37.21
-2017,Manitoba,Dietitians,36.39
-2018,Manitoba,Dietitians,35.42
-2019,Manitoba,Dietitians,35.79
-2015,Manitoba,Environmental public health professionals,5.49
-2016,Manitoba,Environmental public health professionals,5.4
-2017,Manitoba,Environmental public health professionals,5.17
-2018,Manitoba,Environmental public health professionals,5.32
-2019,Manitoba,Environmental public health professionals,5.1
-2015,Manitoba,Genetic counsellors,0.62
-2016,Manitoba,Genetic counsellors,0.61
-2017,Manitoba,Genetic counsellors,0.37
-2018,Manitoba,Genetic counsellors,0.59
-2019,Manitoba,Genetic counsellors,0.96
-2015,Manitoba,Health information management professionals,
-2016,Manitoba,Health information management professionals,12.25
-2017,Manitoba,Health information management professionals,11.68
-2018,Manitoba,Health information management professionals,
-2019,Manitoba,Health information management professionals,12.28
-2015,Manitoba,Medical laboratory technologists,81.1
-2016,Manitoba,Medical laboratory technologists,63.16
-2017,Manitoba,Medical laboratory technologists,56.54
-2018,Manitoba,Medical laboratory technologists,56.06
-2019,Manitoba,Medical laboratory technologists,51.55
-2015,Manitoba,Medical physicists,1.55
-2016,Manitoba,Medical physicists,1.45
-2017,Manitoba,Medical physicists,1.65
-2018,Manitoba,Medical physicists,1.55
-2019,Manitoba,Medical physicists,1.7
-2015,Manitoba,Medical radiation technologists,54.94
-2016,Manitoba,Medical radiation technologists,53.34
-2017,Manitoba,Medical radiation technologists,64.48
-2018,Manitoba,Medical radiation technologists,62.2
-2019,Manitoba,Medical radiation technologists,62.86
-2015,Manitoba,Midwives,4.02
-2016,Manitoba,Midwives,3.96
-2017,Manitoba,Midwives,6.14
-2018,Manitoba,Midwives,5.69
-2019,Manitoba,Midwives,4.36
-2015,Manitoba,Occupational therapists,49.99
-2016,Manitoba,Occupational therapists,48.09
-2017,Manitoba,Occupational therapists,48.6
-2018,Manitoba,Occupational therapists,49.99
-2019,Manitoba,Occupational therapists,51.03
-2015,Manitoba,Opticians,
-2016,Manitoba,Opticians,20.93
-2017,Manitoba,Opticians,15.05
-2018,Manitoba,Opticians,
-2019,Manitoba,Opticians,17.23
-2015,Manitoba,Optometrists,12.38
-2016,Manitoba,Optometrists,12.56
-2017,Manitoba,Optometrists,13.25
-2018,Manitoba,Optometrists,13.16
-2019,Manitoba,Optometrists,13.83
-2015,Manitoba,Paramedics,199.35
-2016,Manitoba,Paramedics,204.85
-2017,Manitoba,Paramedics,211.85
-2018,Manitoba,Paramedics,223.94
-2019,Manitoba,Paramedics,277.26
-2015,Manitoba,Pharmacists,112.21
-2016,Manitoba,Pharmacists,115.97
-2017,Manitoba,Pharmacists,117.94
-2018,Manitoba,Pharmacists,119.81
-2019,Manitoba,Pharmacists,121.21
-2015,Manitoba,Pharmacy technicians,
-2016,Manitoba,Pharmacy technicians,
-2017,Manitoba,Pharmacy technicians,
-2018,Manitoba,Pharmacy technicians,7.54
-2019,Manitoba,Pharmacy technicians,13.09
-2015,Manitoba,Physician assistants,4.49
-2016,Manitoba,Physician assistants,6.16
-2017,Manitoba,Physician assistants,
-2018,Manitoba,Physician assistants,7.25
-2019,Manitoba,Physician assistants,9.91
-2015,Manitoba,Physicians,205.77
-2016,Manitoba,Physicians,209.11
-2017,Manitoba,Physicians,212.15
-2018,Manitoba,Physicians,225.94
-2019,Manitoba,Physicians,220.32
-2015,Manitoba,Family medicine,107.26
-2016,Manitoba,Family medicine,108.28
-2017,Manitoba,Family medicine,110.9
-2018,Manitoba,Family medicine,113.15
-2019,Manitoba,Family medicine,110.27
-2015,Manitoba,Specialists,98.51
-2016,Manitoba,Specialists,100.83
-2017,Manitoba,Specialists,101.24
-2018,Manitoba,Specialists,112.78
-2019,Manitoba,Specialists,110.05
-2015,Manitoba,Physiotherapists,54.71
-2016,Manitoba,Physiotherapists,55.55
-2017,Manitoba,Physiotherapists,56.91
-2018,Manitoba,Physiotherapists,58.35
-2019,Manitoba,Physiotherapists,60.2
-2015,Manitoba,Psychologists,
-2016,Manitoba,Psychologists,16.06
-2017,Manitoba,Psychologists,19.62
-2018,Manitoba,Psychologists,19.52
-2019,Manitoba,Psychologists,19.67
-2015,Manitoba,Regulated nurses,1314.32
-2016,Manitoba,Regulated nurses,1303.29
-2017,Manitoba,Regulated nurses,1323.28
-2018,Manitoba,Regulated nurses,1317.53
-2019,Manitoba,Regulated nurses,1315.97
-2015,Manitoba,Licensed practical nurses,247.79
-2016,Manitoba,Licensed practical nurses,246.17
-2017,Manitoba,Licensed practical nurses,248.09
-2018,Manitoba,Licensed practical nurses,249.45
-2019,Manitoba,Licensed practical nurses,260.18
-2015,Manitoba,Nurse practitioners,11.76
-2016,Manitoba,Nurse practitioners,12.4
-2017,Manitoba,Nurse practitioners,13.33
-2018,Manitoba,Nurse practitioners,14.27
-2019,Manitoba,Nurse practitioners,16.05
-2015,Manitoba,Registered nurses,977.69
-2016,Manitoba,Registered nurses,966.94
-2017,Manitoba,Registered nurses,982.93
-2018,Manitoba,Registered nurses,974.15
-2019,Manitoba,Registered nurses,961.06
-2015,Manitoba,Registered psychiatric nurses,77.08
-2016,Manitoba,Registered psychiatric nurses,77.77
-2017,Manitoba,Registered psychiatric nurses,78.93
-2018,Manitoba,Registered psychiatric nurses,79.65
-2019,Manitoba,Registered psychiatric nurses,78.69
-2015,Manitoba,Respiratory therapists,
-2016,Manitoba,Respiratory therapists,24.96
-2017,Manitoba,Respiratory therapists,25.61
-2018,Manitoba,Respiratory therapists,25.07
-2019,Manitoba,Respiratory therapists,24.48
-2015,Manitoba,Social workers,92.86
-2016,Manitoba,Social workers,153.48
-2017,Manitoba,Social workers,153.96
-2018,Manitoba,Social workers,160.26
-2019,Manitoba,Social workers,167.95
-2015,Manitoba,Speech–language pathologists,27.7
-2016,Manitoba,Speech–language pathologists,27.47
-2017,Manitoba,Speech–language pathologists,28.76
-2018,Manitoba,Speech–language pathologists,28.77
-2019,Manitoba,Speech–language pathologists,29.29
-2015,Saskatchewan,Audiologists,3.12
-2016,Saskatchewan,Audiologists,3.52
-2017,Saskatchewan,Audiologists,3.22
-2018,Saskatchewan,Audiologists,3.36
-2019,Saskatchewan,Audiologists,
-2015,Saskatchewan,Chiropractors,18.29
-2016,Saskatchewan,Chiropractors,18.31
-2017,Saskatchewan,Chiropractors,18.25
-2018,Saskatchewan,Chiropractors,18.59
-2019,Saskatchewan,Chiropractors,18.76
-2015,Saskatchewan,Dental assistants,101.61
-2016,Saskatchewan,Dental assistants,102.29
-2017,Saskatchewan,Dental assistants,105.84
-2018,Saskatchewan,Dental assistants,107.14
-2019,Saskatchewan,Dental assistants,111.27
-2015,Saskatchewan,Dental hygienists,52.19
-2016,Saskatchewan,Dental hygienists,54.84
-2017,Saskatchewan,Dental hygienists,55.96
-2018,Saskatchewan,Dental hygienists,57.05
-2019,Saskatchewan,Dental hygienists,
-2015,Saskatchewan,Dentists,39.07
-2016,Saskatchewan,Dentists,38.91
-2017,Saskatchewan,Dentists,42.49
-2018,Saskatchewan,Dentists,45.87
-2019,Saskatchewan,Dentists,44.15
-2015,Saskatchewan,Dietitians,31.85
-2016,Saskatchewan,Dietitians,31.51
-2017,Saskatchewan,Dietitians,32.85
-2018,Saskatchewan,Dietitians,34.68
-2019,Saskatchewan,Dietitians,33.13
-2015,Saskatchewan,Environmental public health professionals,8.92
-2016,Saskatchewan,Environmental public health professionals,10.12
-2017,Saskatchewan,Environmental public health professionals,9.65
-2018,Saskatchewan,Environmental public health professionals,9.55
-2019,Saskatchewan,Environmental public health professionals,10.33
-2015,Saskatchewan,Genetic counsellors,0.54
-2016,Saskatchewan,Genetic counsellors,0.44
-2017,Saskatchewan,Genetic counsellors,0.61
-2018,Saskatchewan,Genetic counsellors,0.6
-2019,Saskatchewan,Genetic counsellors,0.6
-2015,Saskatchewan,Health information management professionals,
-2016,Saskatchewan,Health information management professionals,31.69
-2017,Saskatchewan,Health information management professionals,32.24
-2018,Saskatchewan,Health information management professionals,
-2019,Saskatchewan,Health information management professionals,32.79
-2015,Saskatchewan,Medical laboratory technologists,76.81
-2016,Saskatchewan,Medical laboratory technologists,73.5
-2017,Saskatchewan,Medical laboratory technologists,72.99
-2018,Saskatchewan,Medical laboratory technologists,69.19
-2019,Saskatchewan,Medical laboratory technologists,66.95
-2015,Saskatchewan,Medical physicists,1.16
-2016,Saskatchewan,Medical physicists,1.23
-2017,Saskatchewan,Medical physicists,1.22
-2018,Saskatchewan,Medical physicists,1.29
-2019,Saskatchewan,Medical physicists,1.2
-2015,Saskatchewan,Medical radiation technologists,44.52
-2016,Saskatchewan,Medical radiation technologists,55.9
-2017,Saskatchewan,Medical radiation technologists,54.48
-2018,Saskatchewan,Medical radiation technologists,54.04
-2019,Saskatchewan,Medical radiation technologists,54.3
-2015,Saskatchewan,Midwives,0.98
-2016,Saskatchewan,Midwives,1.32
-2017,Saskatchewan,Midwives,1.3
-2018,Saskatchewan,Midwives,1.29
-2019,Saskatchewan,Midwives,1.46
-2015,Saskatchewan,Occupational therapists,29.8
-2016,Saskatchewan,Occupational therapists,29.93
-2017,Saskatchewan,Occupational therapists,29.98
-2018,Saskatchewan,Occupational therapists,30.03
-2019,Saskatchewan,Occupational therapists,30.89
-2015,Saskatchewan,Opticians,
-2016,Saskatchewan,Opticians,18.93
-2017,Saskatchewan,Opticians,9.82
-2018,Saskatchewan,Opticians,
-2019,Saskatchewan,Opticians,10.93
-2015,Saskatchewan,Optometrists,15.52
-2016,Saskatchewan,Optometrists,16.11
-2017,Saskatchewan,Optometrists,15.82
-2018,Saskatchewan,Optometrists,15.49
-2019,Saskatchewan,Optometrists,15.66
-2015,Saskatchewan,Paramedics,185.91
-2016,Saskatchewan,Paramedics,187.68
-2017,Saskatchewan,Paramedics,179.36
-2018,Saskatchewan,Paramedics,155.33
-2019,Saskatchewan,Paramedics,167.63
-2015,Saskatchewan,Pharmacists,133.1
-2016,Saskatchewan,Pharmacists,136.8
-2017,Saskatchewan,Pharmacists,139.56
-2018,Saskatchewan,Pharmacists,141.56
-2019,Saskatchewan,Pharmacists,145
-2015,Saskatchewan,Pharmacy technicians,0.54
-2016,Saskatchewan,Pharmacy technicians,7.22
-2017,Saskatchewan,Pharmacy technicians,16.94
-2018,Saskatchewan,Pharmacy technicians,23.66
-2019,Saskatchewan,Pharmacy technicians,31.93
-2015,Saskatchewan,Physician assistants,0.36
-2016,Saskatchewan,Physician assistants,0.09
-2017,Saskatchewan,Physician assistants,0.09
-2018,Saskatchewan,Physician assistants,0.17
-2019,Saskatchewan,Physician assistants,0.09
-2015,Saskatchewan,Physicians,199.92
-2016,Saskatchewan,Physicians,200.88
-2017,Saskatchewan,Physicians,204.73
-2018,Saskatchewan,Physicians,205.67
-2019,Saskatchewan,Physicians,213.76
-2015,Saskatchewan,Family medicine,111.06
-2016,Saskatchewan,Family medicine,109.24
-2017,Saskatchewan,Family medicine,114.62
-2018,Saskatchewan,Family medicine,113.51
-2019,Saskatchewan,Family medicine,117.29
-2015,Saskatchewan,Specialists,88.85
-2016,Saskatchewan,Specialists,91.64
-2017,Saskatchewan,Specialists,90.11
-2018,Saskatchewan,Specialists,92.16
-2019,Saskatchewan,Specialists,96.47
-2015,Saskatchewan,Physiotherapists,62.98
-2016,Saskatchewan,Physiotherapists,64.53
-2017,Saskatchewan,Physiotherapists,63.52
-2018,Saskatchewan,Physiotherapists,64.2
-2019,Saskatchewan,Physiotherapists,64.2
-2015,Saskatchewan,Psychologists,46.3
-2016,Saskatchewan,Psychologists,47.27
-2017,Saskatchewan,Psychologists,43.54
-2018,Saskatchewan,Psychologists,43.54
-2019,Saskatchewan,Psychologists,44.32
-2015,Saskatchewan,Regulated nurses,1319.66
-2016,Saskatchewan,Regulated nurses,1328.36
-2017,Saskatchewan,Regulated nurses,1335.61
-2018,Saskatchewan,Regulated nurses,1336.16
-2019,Saskatchewan,Regulated nurses,1349.15
-2015,Saskatchewan,Licensed practical nurses,312.5
-2016,Saskatchewan,Licensed practical nurses,310.39
-2017,Saskatchewan,Licensed practical nurses,315.44
-2018,Saskatchewan,Licensed practical nurses,314.01
-2019,Saskatchewan,Licensed practical nurses,318.4
-2015,Saskatchewan,Nurse practitioners,16.59
-2016,Saskatchewan,Nurse practitioners,18.13
-2017,Saskatchewan,Nurse practitioners,18.77
-2018,Saskatchewan,Nurse practitioners,19.62
-2019,Saskatchewan,Nurse practitioners,20.31
-2015,Saskatchewan,Registered nurses,912.25
-2016,Saskatchewan,Registered nurses,924.92
-2017,Saskatchewan,Registered nurses,927.8
-2018,Saskatchewan,Registered nurses,931.53
-2019,Saskatchewan,Registered nurses,941.43
-2015,Saskatchewan,Registered psychiatric nurses,78.33
-2016,Saskatchewan,Registered psychiatric nurses,74.91
-2017,Saskatchewan,Registered psychiatric nurses,73.6
-2018,Saskatchewan,Registered psychiatric nurses,70.99
-2019,Saskatchewan,Registered psychiatric nurses,69.02
-2015,Saskatchewan,Respiratory therapists,19.89
-2016,Saskatchewan,Respiratory therapists,20.33
-2017,Saskatchewan,Respiratory therapists,20.16
-2018,Saskatchewan,Respiratory therapists,21
-2019,Saskatchewan,Respiratory therapists,22.03
-2015,Saskatchewan,Social workers,148.44
-2016,Saskatchewan,Social workers,149.74
-2017,Saskatchewan,Social workers,158.41
-2018,Saskatchewan,Social workers,169.61
-2019,Saskatchewan,Social workers,179.77
-2015,Saskatchewan,Speech–language pathologists,29.8
-2016,Saskatchewan,Speech–language pathologists,31.95
-2017,Saskatchewan,Speech–language pathologists,32.59
-2018,Saskatchewan,Speech–language pathologists,32.87
-2019,Saskatchewan,Speech–language pathologists,
-2015,Alberta,Audiologists,3.96
-2016,Alberta,Audiologists,4.12
-2017,Alberta,Audiologists,4.01
-2018,Alberta,Audiologists,4.27
-2019,Alberta,Audiologists,4.32
-2015,Alberta,Chiropractors,25
-2016,Alberta,Chiropractors,24.83
-2017,Alberta,Chiropractors,24.98
-2018,Alberta,Chiropractors,25.38
-2019,Alberta,Chiropractors,27.35
-2015,Alberta,Dental assistants,119.58
-2016,Alberta,Dental assistants,131.67
-2017,Alberta,Dental assistants,138.97
-2018,Alberta,Dental assistants,137.15
-2019,Alberta,Dental assistants,140.3
-2015,Alberta,Dental hygienists,73.95
-2016,Alberta,Dental hygienists,74.57
-2017,Alberta,Dental hygienists,74.84
-2018,Alberta,Dental hygienists,75.46
-2019,Alberta,Dental hygienists,76.13
-2015,Alberta,Dentists,58.63
-2016,Alberta,Dentists,58.65
-2017,Alberta,Dentists,59.33
-2018,Alberta,Dentists,62.55
-2019,Alberta,Dentists,62.2
-2015,Alberta,Dietitians,29.92
-2016,Alberta,Dietitians,30.43
-2017,Alberta,Dietitians,30.35
-2018,Alberta,Dietitians,30.53
-2019,Alberta,Dietitians,31.18
-2015,Alberta,Environmental public health professionals,9
-2016,Alberta,Environmental public health professionals,9.32
-2017,Alberta,Environmental public health professionals,9.35
-2018,Alberta,Environmental public health professionals,8.99
-2019,Alberta,Environmental public health professionals,8.89
-2015,Alberta,Genetic counsellors,0.68
-2016,Alberta,Genetic counsellors,0.69
-2017,Alberta,Genetic counsellors,0.66
-2018,Alberta,Genetic counsellors,0.6
-2019,Alberta,Genetic counsellors,0.63
-2015,Alberta,Health information management professionals,
-2016,Alberta,Health information management professionals,17.09
-2017,Alberta,Health information management professionals,17.65
-2018,Alberta,Health information management professionals,
-2019,Alberta,Health information management professionals,17.99
-2015,Alberta,Medical laboratory technologists,61
-2016,Alberta,Medical laboratory technologists,60.37
-2017,Alberta,Medical laboratory technologists,60.49
-2018,Alberta,Medical laboratory technologists,59.6
-2019,Alberta,Medical laboratory technologists,59.85
-2015,Alberta,Medical physicists,1.13
-2016,Alberta,Medical physicists,1.07
-2017,Alberta,Medical physicists,0.99
-2018,Alberta,Medical physicists,1.09
-2019,Alberta,Medical physicists,1.07
-2015,Alberta,Medical radiation technologists,52.87
-2016,Alberta,Medical radiation technologists,57.55
-2017,Alberta,Medical radiation technologists,54.26
-2018,Alberta,Medical radiation technologists,56.09
-2019,Alberta,Medical radiation technologists,55.93
-2015,Alberta,Midwives,2.27
-2016,Alberta,Midwives,2.65
-2017,Alberta,Midwives,2.83
-2018,Alberta,Midwives,2.95
-2019,Alberta,Midwives,3.2
-2015,Alberta,Occupational therapists,49.13
-2016,Alberta,Occupational therapists,49.38
-2017,Alberta,Occupational therapists,50.54
-2018,Alberta,Occupational therapists,51.29
-2019,Alberta,Occupational therapists,52.47
-2015,Alberta,Opticians,
-2016,Alberta,Opticians,25.12
-2017,Alberta,Opticians,24.43
-2018,Alberta,Opticians,
-2019,Alberta,Opticians,7.22
-2015,Alberta,Optometrists,17.88
-2016,Alberta,Optometrists,18.26
-2017,Alberta,Optometrists,18.71
-2018,Alberta,Optometrists,18.53
-2019,Alberta,Optometrists,19.25
-2015,Alberta,Paramedics,199.52
-2016,Alberta,Paramedics,197.66
-2017,Alberta,Paramedics,195.24
-2018,Alberta,Paramedics,191.36
-2019,Alberta,Paramedics,206.73
-2015,Alberta,Pharmacists,116.25
-2016,Alberta,Pharmacists,122.02
-2017,Alberta,Pharmacists,124.32
-2018,Alberta,Pharmacists,126.19
-2019,Alberta,Pharmacists,129.14
-2015,Alberta,Pharmacy technicians,32.48
-2016,Alberta,Pharmacy technicians,32.98
-2017,Alberta,Pharmacy technicians,34.31
-2018,Alberta,Pharmacy technicians,35.1
-2019,Alberta,Pharmacy technicians,37.43
-2015,Alberta,Physician assistants,0.6
-2016,Alberta,Physician assistants,0.69
-2017,Alberta,Physician assistants,0.94
-2018,Alberta,Physician assistants,0.93
-2019,Alberta,Physician assistants,1.04
-2015,Alberta,Physicians,241.74
-2016,Alberta,Physicians,245.33
-2017,Alberta,Physicians,251.65
-2018,Alberta,Physicians,250.89
-2019,Alberta,Physicians,260.15
-2015,Alberta,Family medicine,125.78
-2016,Alberta,Family medicine,126.79
-2017,Alberta,Family medicine,130.16
-2018,Alberta,Family medicine,127.44
-2019,Alberta,Family medicine,129.99
-2015,Alberta,Specialists,115.96
-2016,Alberta,Specialists,118.54
-2017,Alberta,Specialists,121.49
-2018,Alberta,Specialists,123.45
-2019,Alberta,Specialists,130.16
-2015,Alberta,Physiotherapists,63.39
-2016,Alberta,Physiotherapists,66.01
-2017,Alberta,Physiotherapists,67.06
-2018,Alberta,Physiotherapists,69
-2019,Alberta,Physiotherapists,71.65
-2015,Alberta,Psychologists,
-2016,Alberta,Psychologists,80.86
-2017,Alberta,Psychologists,84.52
-2018,Alberta,Psychologists,86.48
-2019,Alberta,Psychologists,91.2
-2015,Alberta,Regulated nurses,1177.85
-2016,Alberta,Regulated nurses,1191.98
-2017,Alberta,Regulated nurses,1206.5
-2018,Alberta,Regulated nurses,1215.64
-2019,Alberta,Regulated nurses,1238.42
-2015,Alberta,Licensed practical nurses,297.5
-2016,Alberta,Licensed practical nurses,316.03
-2017,Alberta,Licensed practical nurses,328.89
-2018,Alberta,Licensed practical nurses,343.73
-2019,Alberta,Licensed practical nurses,360.17
-2015,Alberta,Nurse practitioners,9.99
-2016,Alberta,Nurse practitioners,10.7
-2017,Alberta,Nurse practitioners,11.33
-2018,Alberta,Nurse practitioners,12.28
-2019,Alberta,Nurse practitioners,13.26
-2015,Alberta,Registered nurses,838.8
-2016,Alberta,Registered nurses,833.92
-2017,Alberta,Registered nurses,835.25
-2018,Alberta,Registered nurses,828.65
-2019,Alberta,Registered nurses,833.67
-2015,Alberta,Registered psychiatric nurses,31.56
-2016,Alberta,Registered psychiatric nurses,31.32
-2017,Alberta,Registered psychiatric nurses,31.03
-2018,Alberta,Registered psychiatric nurses,30.97
-2019,Alberta,Registered psychiatric nurses,31.32
-2015,Alberta,Respiratory therapists,40.46
-2016,Alberta,Respiratory therapists,39.89
-2017,Alberta,Respiratory therapists,42.95
-2018,Alberta,Respiratory therapists,43.02
-2019,Alberta,Respiratory therapists,44
-2015,Alberta,Social workers,164.8
-2016,Alberta,Social workers,171.78
-2017,Alberta,Social workers,165.76
-2018,Alberta,Social workers,169.77
-2019,Alberta,Social workers,176.87
-2015,Alberta,Speech–language pathologists,32.62
-2016,Alberta,Speech–language pathologists,33.51
-2017,Alberta,Speech–language pathologists,33.67
-2018,Alberta,Speech–language pathologists,34.48
-2019,Alberta,Speech–language pathologists,34.94
-2015,British Columbia,Audiologists,5.82
-2016,British Columbia,Audiologists,5.64
-2017,British Columbia,Audiologists,5.61
-2018,British Columbia,Audiologists,5.99
-2019,British Columbia,Audiologists,6.21
-2015,British Columbia,Chiropractors,23.53
-2016,British Columbia,Chiropractors,23.17
-2017,British Columbia,Chiropractors,24.26
-2018,British Columbia,Chiropractors,24.94
-2019,British Columbia,Chiropractors,26.52
-2015,British Columbia,Dental assistants,124.34
-2016,British Columbia,Dental assistants,123.85
-2017,British Columbia,Dental assistants,123.95
-2018,British Columbia,Dental assistants,122.96
-2019,British Columbia,Dental assistants,123.16
-2015,British Columbia,Dental hygienists,77.26
-2016,British Columbia,Dental hygienists,78.43
-2017,British Columbia,Dental hygienists,76.15
-2018,British Columbia,Dental hygienists,69.84
-2019,British Columbia,Dental hygienists,83.58
-2015,British Columbia,Dentists,68.27
-2016,British Columbia,Dentists,69.54
-2017,British Columbia,Dentists,68.49
-2018,British Columbia,Dentists,71.94
-2019,British Columbia,Dentists,72.16
-2015,British Columbia,Dietitians,25.71
-2016,British Columbia,Dietitians,27
-2017,British Columbia,Dietitians,27.39
-2018,British Columbia,Dietitians,25.84
-2019,British Columbia,Dietitians,28.05
-2015,British Columbia,Environmental public health professionals,3.89
-2016,British Columbia,Environmental public health professionals,3.89
-2017,British Columbia,Environmental public health professionals,4.63
-2018,British Columbia,Environmental public health professionals,4.21
-2019,British Columbia,Environmental public health professionals,3.77
-2015,British Columbia,Genetic counsellors,1.11
-2016,British Columbia,Genetic counsellors,1.09
-2017,British Columbia,Genetic counsellors,1.12
-2018,British Columbia,Genetic counsellors,1.18
-2019,British Columbia,Genetic counsellors,1.28
-2015,British Columbia,Health information management professionals,
-2016,British Columbia,Health information management professionals,9.49
-2017,British Columbia,Health information management professionals,9.47
-2018,British Columbia,Health information management professionals,
-2019,British Columbia,Health information management professionals,9.94
-2015,British Columbia,Medical laboratory technologists,45.79
-2016,British Columbia,Medical laboratory technologists,43.53
-2017,British Columbia,Medical laboratory technologists,38.78
-2018,British Columbia,Medical laboratory technologists,37.48
-2019,British Columbia,Medical laboratory technologists,34.56
-2015,British Columbia,Medical physicists,1.15
-2016,British Columbia,Medical physicists,1.3
-2017,British Columbia,Medical physicists,1.38
-2018,British Columbia,Medical physicists,1.44
-2019,British Columbia,Medical physicists,1.38
-2015,British Columbia,Medical radiation technologists,40.39
-2016,British Columbia,Medical radiation technologists,39.02
-2017,British Columbia,Medical radiation technologists,42.77
-2018,British Columbia,Medical radiation technologists,42.63
-2019,British Columbia,Medical radiation technologists,41.43
-2015,British Columbia,Midwives,5.17
-2016,British Columbia,Midwives,5.62
-2017,British Columbia,Midwives,5.97
-2018,British Columbia,Midwives,5.75
-2019,British Columbia,Midwives,6.17
-2015,British Columbia,Occupational therapists,44.22
-2016,British Columbia,Occupational therapists,45.54
-2017,British Columbia,Occupational therapists,46.87
-2018,British Columbia,Occupational therapists,47.74
-2019,British Columbia,Occupational therapists,49.9
-2015,British Columbia,Opticians,
-2016,British Columbia,Opticians,25.37
-2017,British Columbia,Opticians,8.47
-2018,British Columbia,Opticians,
-2019,British Columbia,Opticians,12
-2015,British Columbia,Optometrists,15.07
-2016,British Columbia,Optometrists,15.33
-2017,British Columbia,Optometrists,15.95
-2018,British Columbia,Optometrists,16.17
-2019,British Columbia,Optometrists,17.05
-2015,British Columbia,Paramedics,
-2016,British Columbia,Paramedics,96.5
-2017,British Columbia,Paramedics,95.53
-2018,British Columbia,Paramedics,98
-2019,British Columbia,Paramedics,98.52
-2015,British Columbia,Pharmacists,108.81
-2016,British Columbia,Pharmacists,106.77
-2017,British Columbia,Pharmacists,112.39
-2018,British Columbia,Pharmacists,113.73
-2019,British Columbia,Pharmacists,114.93
-2015,British Columbia,Pharmacy technicians,27.38
-2016,British Columbia,Pharmacy technicians,28.81
-2017,British Columbia,Pharmacy technicians,30.31
-2018,British Columbia,Pharmacy technicians,31.39
-2019,British Columbia,Pharmacy technicians,32.95
-2015,British Columbia,Physician assistants,0.44
-2016,British Columbia,Physician assistants,0.41
-2017,British Columbia,Physician assistants,0.49
-2018,British Columbia,Physician assistants,0.42
-2019,British Columbia,Physician assistants,0.44
-2015,British Columbia,Physicians,228.56
-2016,British Columbia,Physicians,237.63
-2017,British Columbia,Physicians,239.79
-2018,British Columbia,Physicians,251.48
-2019,British Columbia,Physicians,255.56
-2015,British Columbia,Family medicine,122.52
-2016,British Columbia,Family medicine,127.37
-2017,British Columbia,Family medicine,129.46
-2018,British Columbia,Family medicine,134.64
-2019,British Columbia,Family medicine,133.96
-2015,British Columbia,Specialists,106.04
-2016,British Columbia,Specialists,110.26
-2017,British Columbia,Specialists,110.34
-2018,British Columbia,Specialists,116.83
-2019,British Columbia,Specialists,121.6
-2015,British Columbia,Physiotherapists,71.27
-2016,British Columbia,Physiotherapists,72.81
-2017,British Columbia,Physiotherapists,74.97
-2018,British Columbia,Physiotherapists,76.61
-2019,British Columbia,Physiotherapists,78.43
-2015,British Columbia,Psychologists,25
-2016,British Columbia,Psychologists,25.27
-2017,British Columbia,Psychologists,25.05
-2018,British Columbia,Psychologists,24.98
-2019,British Columbia,Psychologists,25.08
-2015,British Columbia,Regulated nurses,1045.04
-2016,British Columbia,Regulated nurses,1056.5
-2017,British Columbia,Regulated nurses,1066.08
-2018,British Columbia,Regulated nurses,1061.69
-2019,British Columbia,Regulated nurses,1076.45
-2015,British Columbia,Licensed practical nurses,243.26
-2016,British Columbia,Licensed practical nurses,242.32
-2017,British Columbia,Licensed practical nurses,243.43
-2018,British Columbia,Licensed practical nurses,243.44
-2019,British Columbia,Licensed practical nurses,247.43
-2015,British Columbia,Nurse practitioners,6.59
-2016,British Columbia,Nurse practitioners,7.92
-2017,British Columbia,Nurse practitioners,8.49
-2018,British Columbia,Nurse practitioners,9.32
-2019,British Columbia,Nurse practitioners,10.3
-2015,British Columbia,Registered nurses,741.08
-2016,British Columbia,Registered nurses,751.27
-2017,British Columbia,Registered nurses,758.92
-2018,British Columbia,Registered nurses,753.09
-2019,British Columbia,Registered nurses,762.09
-2015,British Columbia,Registered psychiatric nurses,54.1
-2016,British Columbia,Registered psychiatric nurses,54.99
-2017,British Columbia,Registered psychiatric nurses,55.24
-2018,British Columbia,Registered psychiatric nurses,55.83
-2019,British Columbia,Registered psychiatric nurses,56.63
-2015,British Columbia,Respiratory therapists,19.89
-2016,British Columbia,Respiratory therapists,20.58
-2017,British Columbia,Respiratory therapists,
-2018,British Columbia,Respiratory therapists,
-2019,British Columbia,Respiratory therapists,19.61
-2015,British Columbia,Social workers,87.3
-2016,British Columbia,Social workers,84.25
-2017,British Columbia,Social workers,85.86
-2018,British Columbia,Social workers,87.31
-2019,British Columbia,Social workers,
-2015,British Columbia,Speech–language pathologists,23.24
-2016,British Columbia,Speech–language pathologists,23.93
-2017,British Columbia,Speech–language pathologists,24.52
-2018,British Columbia,Speech–language pathologists,26.12
-2019,British Columbia,Speech–language pathologists,27.47
-2015,Yukon,Audiologists,7.96
-2016,Yukon,Audiologists,5.19
-2017,Yukon,Audiologists,7.57
-2018,Yukon,Audiologists,2.47
-2019,Yukon,Audiologists,2.47
-2015,Yukon,Chiropractors,15.92
-2016,Yukon,Chiropractors,15.57
-2017,Yukon,Chiropractors,
-2018,Yukon,Chiropractors,12.35
-2019,Yukon,Chiropractors,14.82
-2015,Yukon,Dental assistants,
-2016,Yukon,Dental assistants,
-2017,Yukon,Dental assistants,
-2018,Yukon,Dental assistants,
-2019,Yukon,Dental assistants,
-2015,Yukon,Dental hygienists,95.52
-2016,Yukon,Dental hygienists,93.39
-2017,Yukon,Dental hygienists,
-2018,Yukon,Dental hygienists,66.71
-2019,Yukon,Dental hygienists,91.41
-2015,Yukon,Dentists,111.44
-2016,Yukon,Dentists,108.96
-2017,Yukon,Dentists,
-2018,Yukon,Dentists,113.65
-2019,Yukon,Dentists,172.94
-2015,Yukon,Dietitians,
-2016,Yukon,Dietitians,
-2017,Yukon,Dietitians,
-2018,Yukon,Dietitians,27.18
-2019,Yukon,Dietitians,29.65
-2015,Yukon,Environmental public health professionals,2.65
-2016,Yukon,Environmental public health professionals,2.59
-2017,Yukon,Environmental public health professionals,5.05
-2018,Yukon,Environmental public health professionals,17.29
-2019,Yukon,Environmental public health professionals,17.29
-2015,Yukon,Genetic counsellors,2.65
-2016,Yukon,Genetic counsellors,2.59
-2017,Yukon,Genetic counsellors,2.52
-2018,Yukon,Genetic counsellors,2.47
-2019,Yukon,Genetic counsellors,2.47
-2015,Yukon,Health information management professionals,
-2016,Yukon,Health information management professionals,18.16
-2017,Yukon,Health information management professionals,17.66
-2018,Yukon,Health information management professionals,
-2019,Yukon,Health information management professionals,14.82
-2015,Yukon,Medical laboratory technologists,61.02
-2016,Yukon,Medical laboratory technologists,67.45
-2017,Yukon,Medical laboratory technologists,55.52
-2018,Yukon,Medical laboratory technologists,54.35
-2019,Yukon,Medical laboratory technologists,66.71
-2015,Yukon,Medical physicists,
-2016,Yukon,Medical physicists,
-2017,Yukon,Medical physicists,
-2018,Yukon,Medical physicists,
-2019,Yukon,Medical physicists,
-2015,Yukon,Medical radiation technologists,45.1
-2016,Yukon,Medical radiation technologists,44.1
-2017,Yukon,Medical radiation technologists,50.47
-2018,Yukon,Medical radiation technologists,
-2019,Yukon,Medical radiation technologists,44.47
-2015,Yukon,Midwives,
-2016,Yukon,Midwives,7.78
-2017,Yukon,Midwives,0
-2018,Yukon,Midwives,0
-2019,Yukon,Midwives,
-2015,Yukon,Occupational therapists,50.41
-2016,Yukon,Occupational therapists,46.7
-2017,Yukon,Occupational therapists,40.38
-2018,Yukon,Occupational therapists,44.47
-2019,Yukon,Occupational therapists,66.71
-2015,Yukon,Opticians,
-2016,Yukon,Opticians,
-2017,Yukon,Opticians,
-2018,Yukon,Opticians,
-2019,Yukon,Opticians,
-2015,Yukon,Optometrists,18.57
-2016,Yukon,Optometrists,18.16
-2017,Yukon,Optometrists,
-2018,Yukon,Optometrists,17.29
-2019,Yukon,Optometrists,19.76
-2015,Yukon,Paramedics,
-2016,Yukon,Paramedics,
-2017,Yukon,Paramedics,
-2018,Yukon,Paramedics,
-2019,Yukon,Paramedics,
-2015,Yukon,Pharmacists,127.35
-2016,Yukon,Pharmacists,108.96
-2017,Yukon,Pharmacists,133.74
-2018,Yukon,Pharmacists,163.06
-2019,Yukon,Pharmacists,163.06
-2015,Yukon,Pharmacy technicians,
-2016,Yukon,Pharmacy technicians,
-2017,Yukon,Pharmacy technicians,
-2018,Yukon,Pharmacy technicians,
-2019,Yukon,Pharmacy technicians,
-2015,Yukon,Physician assistants,0
-2016,Yukon,Physician assistants,0
-2017,Yukon,Physician assistants,0
-2018,Yukon,Physician assistants,0
-2019,Yukon,Physician assistants,0
-2015,Yukon,Physicians,209.6
-2016,Yukon,Physicians,202.35
-2017,Yukon,Physicians,194.31
-2018,Yukon,Physicians,190.24
-2019,Yukon,Physicians,195.18
-2015,Yukon,Family medicine,180.42
-2016,Yukon,Family medicine,176.41
-2017,Yukon,Family medicine,169.07
-2018,Yukon,Family medicine,158.12
-2019,Yukon,Family medicine,165.53
-2015,Yukon,Specialists,29.19
-2016,Yukon,Specialists,25.94
-2017,Yukon,Specialists,25.23
-2018,Yukon,Specialists,32.12
-2019,Yukon,Specialists,29.65
-2015,Yukon,Physiotherapists,100.82
-2016,Yukon,Physiotherapists,116.74
-2017,Yukon,Physiotherapists,
-2018,Yukon,Physiotherapists,133.41
-2019,Yukon,Physiotherapists,128.47
-2015,Yukon,Psychologists,
-2016,Yukon,Psychologists,
-2017,Yukon,Psychologists,
-2018,Yukon,Psychologists,
-2019,Yukon,Psychologists,
-2015,Yukon,Regulated nurses,1374.37
-2016,Yukon,Regulated nurses,1380.13
-2017,Yukon,Regulated nurses,1478.75
-2018,Yukon,Regulated nurses,1682.48
-2019,Yukon,Regulated nurses,1786.24
-2015,Yukon,Licensed practical nurses,291.85
-2016,Yukon,Licensed practical nurses,295.74
-2017,Yukon,Licensed practical nurses,338.14
-2018,Yukon,Licensed practical nurses,481.77
-2019,Yukon,Licensed practical nurses,555.88
-2015,Yukon,Nurse practitioners,13.27
-2016,Yukon,Nurse practitioners,12.97
-2017,Yukon,Nurse practitioners,15.14
-2018,Yukon,Nurse practitioners,19.76
-2019,Yukon,Nurse practitioners,24.71
-2015,Yukon,Registered nurses,1055.98
-2016,Yukon,Registered nurses,1061.04
-2017,Yukon,Registered nurses,1125.47
-2018,Yukon,Registered nurses,1168.59
-2019,Yukon,Registered nurses,1185.89
-2015,Yukon,Registered psychiatric nurses,13.27
-2016,Yukon,Registered psychiatric nurses,10.38
-2017,Yukon,Registered psychiatric nurses,
-2018,Yukon,Registered psychiatric nurses,12.35
-2019,Yukon,Registered psychiatric nurses,19.76
-2015,Yukon,Respiratory therapists,10.61
-2016,Yukon,Respiratory therapists,10.38
-2017,Yukon,Respiratory therapists,12.62
-2018,Yukon,Respiratory therapists,12.35
-2019,Yukon,Respiratory therapists,12.35
-2015,Yukon,Social workers,
-2016,Yukon,Social workers,
-2017,Yukon,Social workers,
-2018,Yukon,Social workers,
-2019,Yukon,Social workers,
-2015,Yukon,Speech–language pathologists,45.1
-2016,Yukon,Speech–language pathologists,41.51
-2017,Yukon,Speech–language pathologists,40.38
-2018,Yukon,Speech–language pathologists,42
-2019,Yukon,Speech–language pathologists,56.82
-2015,Northwest Territories,Audiologists,4.52
-2016,Northwest Territories,Audiologists,6.72
-2017,Northwest Territories,Audiologists,6.68
-2018,Northwest Territories,Audiologists,6.74
-2019,Northwest Territories,Audiologists,6.74
-2015,Northwest Territories,Chiropractors,
-2016,Northwest Territories,Chiropractors,
-2017,Northwest Territories,Chiropractors,
-2018,Northwest Territories,Chiropractors,
-2019,Northwest Territories,Chiropractors,
-2015,Northwest Territories,Dental assistants,
-2016,Northwest Territories,Dental assistants,
-2017,Northwest Territories,Dental assistants,
-2018,Northwest Territories,Dental assistants,
-2019,Northwest Territories,Dental assistants,
-2015,Northwest Territories,Dental hygienists,59.46
-2016,Northwest Territories,Dental hygienists,57.58
-2017,Northwest Territories,Dental hygienists,82.34
-2018,Northwest Territories,Dental hygienists,78.58
-2019,Northwest Territories,Dental hygienists,62.86
-2015,Northwest Territories,Dentists,189.53
-2016,Northwest Territories,Dentists,180.09
-2017,Northwest Territories,Dentists,131.3
-2018,Northwest Territories,Dentists,134.71
-2019,Northwest Territories,Dentists,130.22
-2015,Northwest Territories,Dietitians,
-2016,Northwest Territories,Dietitians,
-2017,Northwest Territories,Dietitians,
-2018,Northwest Territories,Dietitians,31.43
-2019,Northwest Territories,Dietitians,29.19
-2015,Northwest Territories,Environmental public health professionals,14.87
-2016,Northwest Territories,Environmental public health professionals,11.03
-2017,Northwest Territories,Environmental public health professionals,22.25
-2018,Northwest Territories,Environmental public health professionals,20.21
-2019,Northwest Territories,Environmental public health professionals,20.21
-2015,Northwest Territories,Genetic counsellors,
-2016,Northwest Territories,Genetic counsellors,
-2017,Northwest Territories,Genetic counsellors,
-2018,Northwest Territories,Genetic counsellors,
-2019,Northwest Territories,Genetic counsellors,0
-2015,Northwest Territories,Health information management professionals,
-2016,Northwest Territories,Health information management professionals,18.38
-2017,Northwest Territories,Health information management professionals,37.83
-2018,Northwest Territories,Health information management professionals,
-2019,Northwest Territories,Health information management professionals,40.41
-2015,Northwest Territories,Medical laboratory technologists,65.56
-2016,Northwest Territories,Medical laboratory technologists,55.13
-2017,Northwest Territories,Medical laboratory technologists,62.31
-2018,Northwest Territories,Medical laboratory technologists,65.11
-2019,Northwest Territories,Medical laboratory technologists,71.84
-2015,Northwest Territories,Medical physicists,
-2016,Northwest Territories,Medical physicists,
-2017,Northwest Territories,Medical physicists,
-2018,Northwest Territories,Medical physicists,
-2019,Northwest Territories,Medical physicists,
-2015,Northwest Territories,Medical radiation technologists,24.87
-2016,Northwest Territories,Medical radiation technologists,23.28
-2017,Northwest Territories,Medical radiation technologists,22.25
-2018,Northwest Territories,Medical radiation technologists,
-2019,Northwest Territories,Medical radiation technologists,
-2015,Northwest Territories,Midwives,32.21
-2016,Northwest Territories,Midwives,34.3
-2017,Northwest Territories,Midwives,15.58
-2018,Northwest Territories,Midwives,15.72
-2019,Northwest Territories,Midwives,22.45
-2015,Northwest Territories,Occupational therapists,38.43
-2016,Northwest Territories,Occupational therapists,35.84
-2017,Northwest Territories,Occupational therapists,24.48
-2018,Northwest Territories,Occupational therapists,38.17
-2019,Northwest Territories,Occupational therapists,42.66
-2015,Northwest Territories,Opticians,
-2016,Northwest Territories,Opticians,
-2017,Northwest Territories,Opticians,
-2018,Northwest Territories,Opticians,
-2019,Northwest Territories,Opticians,
-2015,Northwest Territories,Optometrists,1.24
-2016,Northwest Territories,Optometrists,2.45
-2017,Northwest Territories,Optometrists,2.23
-2018,Northwest Territories,Optometrists,0
-2019,Northwest Territories,Optometrists,0
-2015,Northwest Territories,Paramedics,
-2016,Northwest Territories,Paramedics,
-2017,Northwest Territories,Paramedics,
-2018,Northwest Territories,Paramedics,
-2019,Northwest Territories,Paramedics,
-2015,Northwest Territories,Pharmacists,67.82
-2016,Northwest Territories,Pharmacists,76.15
-2017,Northwest Territories,Pharmacists,91.24
-2018,Northwest Territories,Pharmacists,94.3
-2019,Northwest Territories,Pharmacists,98.79
-2015,Northwest Territories,Pharmacy technicians,
-2016,Northwest Territories,Pharmacy technicians,
-2017,Northwest Territories,Pharmacy technicians,
-2018,Northwest Territories,Pharmacy technicians,
-2019,Northwest Territories,Pharmacy technicians,
-2015,Northwest Territories,Physician assistants,2.26
-2016,Northwest Territories,Physician assistants,0
-2017,Northwest Territories,Physician assistants,0
-2018,Northwest Territories,Physician assistants,0
-2019,Northwest Territories,Physician assistants,0
-2015,Northwest Territories,Physicians,83.64
-2016,Northwest Territories,Physicians,73.91
-2017,Northwest Territories,Physicians,77.89
-2018,Northwest Territories,Physicians,92.05
-2019,Northwest Territories,Physicians,98.79
-2015,Northwest Territories,Family medicine,67.82
-2016,Northwest Territories,Family medicine,55.99
-2017,Northwest Territories,Family medicine,60.09
-2018,Northwest Territories,Family medicine,78.58
-2019,Northwest Territories,Family medicine,83.07
-2015,Northwest Territories,Specialists,15.82
-2016,Northwest Territories,Specialists,17.92
-2017,Northwest Territories,Specialists,17.8
-2018,Northwest Territories,Specialists,13.47
-2019,Northwest Territories,Specialists,15.72
-2015,Northwest Territories,Physiotherapists,
-2016,Northwest Territories,Physiotherapists,
-2017,Northwest Territories,Physiotherapists,
-2018,Northwest Territories,Physiotherapists,
-2019,Northwest Territories,Physiotherapists,
-2015,Northwest Territories,Psychologists,105.3
-2016,Northwest Territories,Psychologists,101.69
-2017,Northwest Territories,Psychologists,158
-2018,Northwest Territories,Psychologists,145.93
-2019,Northwest Territories,Psychologists,141.44
-2015,Northwest Territories,Regulated nurses,
-2016,Northwest Territories,Regulated nurses,
-2017,Northwest Territories,Regulated nurses,
-2018,Northwest Territories,Regulated nurses,
-2019,Northwest Territories,Regulated nurses,
-2015,Northwest Territories,Licensed practical nurses,226.06
-2016,Northwest Territories,Licensed practical nurses,262.04
-2017,Northwest Territories,Licensed practical nurses,258.14
-2018,Northwest Territories,Licensed practical nurses,240.23
-2019,Northwest Territories,Licensed practical nurses,237.98
-2015,Northwest Territories,Nurse practitioners,55.74
-2016,Northwest Territories,Nurse practitioners,50.23
-2017,Northwest Territories,Nurse practitioners,67.89
-2018,Northwest Territories,Nurse practitioners,60.29
-2019,Northwest Territories,Nurse practitioners,55.46
-2015,Northwest Territories,Registered nurses,1295.76
-2016,Northwest Territories,Registered nurses,1249.63
-2017,Northwest Territories,Registered nurses,1209.87
-2018,Northwest Territories,Registered nurses,971.82
-2019,Northwest Territories,Registered nurses,882.6
-2015,Northwest Territories,Registered psychiatric nurses,
-2016,Northwest Territories,Registered psychiatric nurses,
-2017,Northwest Territories,Registered psychiatric nurses,
-2018,Northwest Territories,Registered psychiatric nurses,
-2019,Northwest Territories,Registered psychiatric nurses,
-2015,Northwest Territories,Respiratory therapists,8.67
-2016,Northwest Territories,Respiratory therapists,9.8
-2017,Northwest Territories,Respiratory therapists,13.35
-2018,Northwest Territories,Respiratory therapists,13.47
-2019,Northwest Territories,Respiratory therapists,15.72
-2015,Northwest Territories,Social workers,250.92
-2016,Northwest Territories,Social workers,264.28
-2017,Northwest Territories,Social workers,311.55
-2018,Northwest Territories,Social workers,282.89
-2019,Northwest Territories,Social workers,318.81
-2015,Northwest Territories,Speech–language pathologists,14.87
-2016,Northwest Territories,Speech–language pathologists,14.7
-2017,Northwest Territories,Speech–language pathologists,31.16
-2018,Northwest Territories,Speech–language pathologists,29.19
-2019,Northwest Territories,Speech–language pathologists,35.92
-2015,Nunavut,Audiologists,
-2016,Nunavut,Audiologists,
-2017,Nunavut,Audiologists,0
-2018,Nunavut,Audiologists,2.6
-2019,Nunavut,Audiologists,2.6
-2015,Nunavut,Chiropractors,
-2016,Nunavut,Chiropractors,
-2017,Nunavut,Chiropractors,
-2018,Nunavut,Chiropractors,
-2019,Nunavut,Chiropractors,
-2015,Nunavut,Dental assistants,
-2016,Nunavut,Dental assistants,
-2017,Nunavut,Dental assistants,
-2018,Nunavut,Dental assistants,
-2019,Nunavut,Dental assistants,
-2015,Nunavut,Dental hygienists,59.46
-2016,Nunavut,Dental hygienists,57.58
-2017,Nunavut,Dental hygienists,66.57
-2018,Nunavut,Dental hygienists,57.3
-2019,Nunavut,Dental hygienists,65.11
-2015,Nunavut,Dentists,189.53
-2016,Nunavut,Dentists,180.09
-2017,Nunavut,Dentists,244.99
-2018,Nunavut,Dentists,260.44
-2019,Nunavut,Dentists,250.03
-2015,Nunavut,Dietitians,
-2016,Nunavut,Dietitians,
-2017,Nunavut,Dietitians,
-2018,Nunavut,Dietitians,33.86
-2019,Nunavut,Dietitians,33.86
-2015,Nunavut,Environmental public health professionals,14.87
-2016,Nunavut,Environmental public health professionals,11.03
-2017,Nunavut,Environmental public health professionals,7.99
-2018,Nunavut,Environmental public health professionals,7.81
-2019,Nunavut,Environmental public health professionals,5.21
-2015,Nunavut,Genetic counsellors,
-2016,Nunavut,Genetic counsellors,
-2017,Nunavut,Genetic counsellors,
-2018,Nunavut,Genetic counsellors,
-2019,Nunavut,Genetic counsellors,0
-2015,Nunavut,Health information management professionals,
-2016,Nunavut,Health information management professionals,18.38
-2017,Nunavut,Health information management professionals,2.66
-2018,Nunavut,Health information management professionals,
-2019,Nunavut,Health information management professionals,5.21
-2015,Nunavut,Medical laboratory technologists,38.37
-2016,Nunavut,Medical laboratory technologists,55.13
-2017,Nunavut,Medical laboratory technologists,26.63
-2018,Nunavut,Medical laboratory technologists,20.84
-2019,Nunavut,Medical laboratory technologists,31.25
-2015,Nunavut,Medical physicists,
-2016,Nunavut,Medical physicists,
-2017,Nunavut,Medical physicists,
-2018,Nunavut,Medical physicists,
-2019,Nunavut,Medical physicists,
-2015,Nunavut,Medical radiation technologists,21.93
-2016,Nunavut,Medical radiation technologists,23.28
-2017,Nunavut,Medical radiation technologists,26.63
-2018,Nunavut,Medical radiation technologists,
-2019,Nunavut,Medical radiation technologists,20.84
-2015,Nunavut,Midwives,32.21
-2016,Nunavut,Midwives,34.3
-2017,Nunavut,Midwives,71.9
-2018,Nunavut,Midwives,104.18
-2019,Nunavut,Midwives,106.78
-2015,Nunavut,Occupational therapists,8.22
-2016,Nunavut,Occupational therapists,10.82
-2017,Nunavut,Occupational therapists,15.98
-2018,Nunavut,Occupational therapists,10.42
-2019,Nunavut,Occupational therapists,15.63
-2015,Nunavut,Opticians,
-2016,Nunavut,Opticians,
-2017,Nunavut,Opticians,
-2018,Nunavut,Opticians,
-2019,Nunavut,Opticians,
-2015,Nunavut,Optometrists,1.24
-2016,Nunavut,Optometrists,2.45
-2017,Nunavut,Optometrists,5.33
-2018,Nunavut,Optometrists,0
-2019,Nunavut,Optometrists,
-2015,Nunavut,Paramedics,
-2016,Nunavut,Paramedics,
-2017,Nunavut,Paramedics,
-2018,Nunavut,Paramedics,
-2019,Nunavut,Paramedics,
-2015,Nunavut,Pharmacists,27.41
-2016,Nunavut,Pharmacists,100.07
-2017,Nunavut,Pharmacists,82.55
-2018,Nunavut,Pharmacists,109.39
-2019,Nunavut,Pharmacists,114.6
-2015,Nunavut,Pharmacy technicians,
-2016,Nunavut,Pharmacy technicians,
-2017,Nunavut,Pharmacy technicians,
-2018,Nunavut,Pharmacy technicians,
-2019,Nunavut,Pharmacy technicians,
-2015,Nunavut,Physician assistants,
-2016,Nunavut,Physician assistants,
-2017,Nunavut,Physician assistants,0
-2018,Nunavut,Physician assistants,2.6
-2019,Nunavut,Physician assistants,2.6
-2015,Nunavut,Physicians,27.41
-2016,Nunavut,Physicians,21.64
-2017,Nunavut,Physicians,21.3
-2018,Nunavut,Physicians,44.28
-2019,Nunavut,Physicians,54.69
-2015,Nunavut,Family medicine,24.67
-2016,Nunavut,Family medicine,18.93
-2017,Nunavut,Family medicine,15.98
-2018,Nunavut,Family medicine,31.25
-2019,Nunavut,Family medicine,44.28
-2015,Nunavut,Specialists,2.74
-2016,Nunavut,Specialists,2.7
-2017,Nunavut,Specialists,5.33
-2018,Nunavut,Specialists,13.02
-2019,Nunavut,Specialists,10.42
-2015,Nunavut,Physiotherapists,
-2016,Nunavut,Physiotherapists,
-2017,Nunavut,Physiotherapists,
-2018,Nunavut,Physiotherapists,
-2019,Nunavut,Physiotherapists,
-2015,Nunavut,Psychologists,105.3
-2016,Nunavut,Psychologists,101.69
-2017,Nunavut,Psychologists,63.91
-2018,Nunavut,Psychologists,59.9
-2019,Nunavut,Psychologists,67.72
-2015,Nunavut,Regulated nurses,
-2016,Nunavut,Regulated nurses,
-2017,Nunavut,Regulated nurses,
-2018,Nunavut,Regulated nurses,
-2019,Nunavut,Regulated nurses,
-2015,Nunavut,Licensed practical nurses,271.32
-2016,Nunavut,Licensed practical nurses,262.34
-2017,Nunavut,Licensed practical nurses,314.23
-2018,Nunavut,Licensed practical nurses,343.79
-2019,Nunavut,Licensed practical nurses,380.25
-2015,Nunavut,Nurse practitioners,55.74
-2016,Nunavut,Nurse practitioners,50.23
-2017,Nunavut,Nurse practitioners,67.89
-2018,Nunavut,Nurse practitioners,60.29
-2019,Nunavut,Nurse practitioners,55.46
-2015,Nunavut,Registered nurses,1295.76
-2016,Nunavut,Registered nurses,1249.63
-2017,Nunavut,Registered nurses,1209.87
-2018,Nunavut,Registered nurses,971.82
-2019,Nunavut,Registered nurses,882.6
-2015,Nunavut,Registered psychiatric nurses,
-2016,Nunavut,Registered psychiatric nurses,
-2017,Nunavut,Registered psychiatric nurses,
-2018,Nunavut,Registered psychiatric nurses,
-2019,Nunavut,Registered psychiatric nurses,
-2015,Nunavut,Respiratory therapists,8.67
-2016,Nunavut,Respiratory therapists,9.8
-2017,Nunavut,Respiratory therapists,7.99
-2018,Nunavut,Respiratory therapists,7.81
-2019,Nunavut,Respiratory therapists,7.81
-2015,Nunavut,Social workers,
-2016,Nunavut,Social workers,
-2017,Nunavut,Social workers,
-2018,Nunavut,Social workers,
-2019,Nunavut,Social workers,
-2015,Nunavut,Speech–language pathologists,14.87
-2016,Nunavut,Speech–language pathologists,14.7
-2017,Nunavut,Speech–language pathologists,2.66
-2018,Nunavut,Speech–language pathologists,13
-2019,Nunavut,Speech–language pathologists,7.81
diff --git a/tests/assets/progress-calculation/data/temp/indicator_3-d-1.csv b/tests/assets/progress-calculation/data/temp/indicator_3-d-1.csv
deleted file mode 100644
index 76f88a90..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_3-d-1.csv
+++ /dev/null
@@ -1,4 +0,0 @@
-Year,Value
-2018,99
-2019,99
-2020,100
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_5-2-1.csv
deleted file mode 100644
index 74ca90b4..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_5-2-1.csv
+++ /dev/null
@@ -1,13 +0,0 @@
-Year,Type of intimate partner violence,Selected characteristic,Value
-2018,"Emotional, financial, or psychological abuse","Total, all women",11.9
-2018,Physical abuse,"Total, all women",2.4
-2018,Sexual abuse,"Total, all women",1.2
-2018,Total intimate partner violence,"Total, all women",12.1
-2018,Total intimate partner violence,15 to 24 year old women,29
-2018,Total intimate partner violence,Separated or divorced women,20
-2018,Total intimate partner violence,LGBTQ2 women,20
-2018,Total intimate partner violence,Single women,19
-2018,Total intimate partner violence,"First Nations, Métis, or Inuit women",17
-2018,Total intimate partner violence,Women with disability,16
-2018,Total intimate partner violence,Immigrant women,10
-2018,Total intimate partner violence,Women designated as visible minorities,9
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-2-2.csv b/tests/assets/progress-calculation/data/temp/indicator_5-2-2.csv
deleted file mode 100644
index 3554e798..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_5-2-2.csv
+++ /dev/null
@@ -1,2 +0,0 @@
-Year,Value
-2018,2.9
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-3-1.csv b/tests/assets/progress-calculation/data/temp/indicator_5-3-1.csv
deleted file mode 100644
index ce5db067..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_5-3-1.csv
+++ /dev/null
@@ -1,415 +0,0 @@
-Year,Geography,Marital status,Age group,Value
-2016,Canada,Married or living common law,15 to 19 years,1.66
-2016,Canada,Married or living common law,20 to 24 years,18.78
-2016,Canada,Married,15 to 19 years,0.19
-2016,Canada,Married,20 to 24 years,5.03
-2016,Canada,Living common law,15 to 19 years,1.47
-2016,Canada,Living common law,20 to 24 years,13.75
-2011,Canada,Married or living common law,15 to 19 years,2.22
-2011,Canada,Married or living common law,20 to 24 years,21.44
-2011,Canada,Married,15 to 19 years,0.32
-2011,Canada,Married,20 to 24 years,6.66
-2011,Canada,Living common law,15 to 19 years,1.9
-2011,Canada,Living common law,20 to 24 years,14.78
-2006,Canada,Married or living common law,15 to 19 years,2.91
-2006,Canada,Married or living common law,20 to 24 years,23.56
-2006,Canada,Married,15 to 19 years,0.71
-2006,Canada,Married,20 to 24 years,8.24
-2006,Canada,Living common law,15 to 19 years,2.2
-2006,Canada,Living common law,20 to 24 years,15.32
-2001,Canada,Married or living common law,15 to 19 years,2.96
-2001,Canada,Married or living common law,20 to 24 years,25.61
-2001,Canada,Married,15 to 19 years,0.61
-2001,Canada,Married,20 to 24 years,10.19
-2001,Canada,Living common law,15 to 19 years,2.35
-2001,Canada,Living common law,20 to 24 years,15.42
-1996,Canada,Married or living common law,15 to 19 years,3.41
-1996,Canada,Married or living common law,20 to 24 years,27.77
-1996,Canada,Married,15 to 19 years,0.78
-1996,Canada,Married,20 to 24 years,13.18
-1996,Canada,Living common law,15 to 19 years,2.64
-1996,Canada,Living common law,20 to 24 years,14.6
-2016,Newfoundland and Labrador,Married or living common law,15 to 19 years,1.85
-2016,Newfoundland and Labrador,Married or living common law,20 to 24 years,19.77
-2016,Newfoundland and Labrador,Married,15 to 19 years,0.08
-2016,Newfoundland and Labrador,Married,20 to 24 years,2.9
-2016,Newfoundland and Labrador,Living common law,15 to 19 years,1.73
-2016,Newfoundland and Labrador,Living common law,20 to 24 years,16.87
-2011,Newfoundland and Labrador,Married or living common law,15 to 19 years,2.05
-2011,Newfoundland and Labrador,Married or living common law,20 to 24 years,19
-2011,Newfoundland and Labrador,Married,15 to 19 years,0.1
-2011,Newfoundland and Labrador,Married,20 to 24 years,3.61
-2011,Newfoundland and Labrador,Living common law,15 to 19 years,1.94
-2011,Newfoundland and Labrador,Living common law,20 to 24 years,15.39
-2006,Newfoundland and Labrador,Married or living common law,15 to 19 years,1.94
-2006,Newfoundland and Labrador,Married or living common law,20 to 24 years,16.87
-2006,Newfoundland and Labrador,Married,15 to 19 years,0.42
-2006,Newfoundland and Labrador,Married,20 to 24 years,4.63
-2006,Newfoundland and Labrador,Living common law,15 to 19 years,1.49
-2006,Newfoundland and Labrador,Living common law,20 to 24 years,12.24
-2001,Newfoundland and Labrador,Married or living common law,15 to 19 years,1.78
-2001,Newfoundland and Labrador,Married or living common law,20 to 24 years,20.44
-2001,Newfoundland and Labrador,Married,15 to 19 years,0.28
-2001,Newfoundland and Labrador,Married,20 to 24 years,7.35
-2001,Newfoundland and Labrador,Living common law,15 to 19 years,1.5
-2001,Newfoundland and Labrador,Living common law,20 to 24 years,13.12
-1996,Newfoundland and Labrador,Married or living common law,15 to 19 years,2.16
-1996,Newfoundland and Labrador,Married or living common law,20 to 24 years,24.37
-1996,Newfoundland and Labrador,Married,15 to 19 years,0.42
-1996,Newfoundland and Labrador,Married,20 to 24 years,10.93
-1996,Newfoundland and Labrador,Living common law,15 to 19 years,1.76
-1996,Newfoundland and Labrador,Living common law,20 to 24 years,13.44
-2016,Prince Edward Island,Married or living common law,15 to 19 years,1.78
-2016,Prince Edward Island,Married or living common law,20 to 24 years,19.03
-2016,Prince Edward Island,Married,15 to 19 years,0.36
-2016,Prince Edward Island,Married,20 to 24 years,4.02
-2016,Prince Edward Island,Living common law,15 to 19 years,1.43
-2016,Prince Edward Island,Living common law,20 to 24 years,14.89
-2011,Prince Edward Island,Married or living common law,15 to 19 years,2.01
-2011,Prince Edward Island,Married or living common law,20 to 24 years,19.14
-2011,Prince Edward Island,Married,15 to 19 years,0.11
-2011,Prince Edward Island,Married,20 to 24 years,5.41
-2011,Prince Edward Island,Living common law,15 to 19 years,1.91
-2011,Prince Edward Island,Living common law,20 to 24 years,13.74
-2006,Prince Edward Island,Married or living common law,15 to 19 years,2.13
-2006,Prince Edward Island,Married or living common law,20 to 24 years,20.57
-2006,Prince Edward Island,Married,15 to 19 years,0.51
-2006,Prince Edward Island,Married,20 to 24 years,7.16
-2006,Prince Edward Island,Living common law,15 to 19 years,1.62
-2006,Prince Edward Island,Living common law,20 to 24 years,13.41
-2001,Prince Edward Island,Married or living common law,15 to 19 years,2.97
-2001,Prince Edward Island,Married or living common law,20 to 24 years,25.93
-2001,Prince Edward Island,Married,15 to 19 years,0.4
-2001,Prince Edward Island,Married,20 to 24 years,11.1
-2001,Prince Edward Island,Living common law,15 to 19 years,2.57
-2001,Prince Edward Island,Living common law,20 to 24 years,14.84
-1996,Prince Edward Island,Married or living common law,15 to 19 years,2.56
-1996,Prince Edward Island,Married or living common law,20 to 24 years,27.81
-1996,Prince Edward Island,Married,15 to 19 years,0.51
-1996,Prince Edward Island,Married,20 to 24 years,14.07
-1996,Prince Edward Island,Living common law,15 to 19 years,2.15
-1996,Prince Edward Island,Living common law,20 to 24 years,13.74
-2016,Nova Scotia,Married or living common law,15 to 19 years,1.92
-2016,Nova Scotia,Married or living common law,20 to 24 years,19.42
-2016,Nova Scotia,Married,15 to 19 years,0.1
-2016,Nova Scotia,Married,20 to 24 years,3.34
-2016,Nova Scotia,Living common law,15 to 19 years,1.78
-2016,Nova Scotia,Living common law,20 to 24 years,16.08
-2011,Nova Scotia,Married or living common law,15 to 19 years,2.15
-2011,Nova Scotia,Married or living common law,20 to 24 years,20.59
-2011,Nova Scotia,Married,15 to 19 years,0.21
-2011,Nova Scotia,Married,20 to 24 years,4.57
-2011,Nova Scotia,Living common law,15 to 19 years,1.93
-2011,Nova Scotia,Living common law,20 to 24 years,16.04
-2006,Nova Scotia,Married or living common law,15 to 19 years,2.45
-2006,Nova Scotia,Married or living common law,20 to 24 years,21.33
-2006,Nova Scotia,Married,15 to 19 years,0.45
-2006,Nova Scotia,Married,20 to 24 years,5.36
-2006,Nova Scotia,Living common law,15 to 19 years,1.98
-2006,Nova Scotia,Living common law,20 to 24 years,15.98
-2001,Nova Scotia,Married or living common law,15 to 19 years,2.19
-2001,Nova Scotia,Married or living common law,20 to 24 years,23.41
-2001,Nova Scotia,Married,15 to 19 years,0.31
-2001,Nova Scotia,Married,20 to 24 years,8.02
-2001,Nova Scotia,Living common law,15 to 19 years,1.89
-2001,Nova Scotia,Living common law,20 to 24 years,15.39
-1996,Nova Scotia,Married or living common law,15 to 19 years,2.4
-1996,Nova Scotia,Married or living common law,20 to 24 years,25.61
-1996,Nova Scotia,Married,15 to 19 years,0.44
-1996,Nova Scotia,Married,20 to 24 years,11.71
-1996,Nova Scotia,Living common law,15 to 19 years,1.96
-1996,Nova Scotia,Living common law,20 to 24 years,13.9
-2016,New Brunswick,Married or living common law,15 to 19 years,2.59
-2016,New Brunswick,Married or living common law,20 to 24 years,24.85
-2016,New Brunswick,Married,15 to 19 years,0.13
-2016,New Brunswick,Married,20 to 24 years,4.51
-2016,New Brunswick,Living common law,15 to 19 years,2.46
-2016,New Brunswick,Living common law,20 to 24 years,20.36
-2011,New Brunswick,Married or living common law,15 to 19 years,3.03
-2011,New Brunswick,Married or living common law,20 to 24 years,25.97
-2011,New Brunswick,Married,15 to 19 years,0.22
-2011,New Brunswick,Married,20 to 24 years,6.2
-2011,New Brunswick,Living common law,15 to 19 years,2.81
-2011,New Brunswick,Living common law,20 to 24 years,19.79
-2006,New Brunswick,Married or living common law,15 to 19 years,3.12
-2006,New Brunswick,Married or living common law,20 to 24 years,26.55
-2006,New Brunswick,Married,15 to 19 years,0.49
-2006,New Brunswick,Married,20 to 24 years,7.21
-2006,New Brunswick,Living common law,15 to 19 years,2.6
-2006,New Brunswick,Living common law,20 to 24 years,19.33
-2001,New Brunswick,Married or living common law,15 to 19 years,3.39
-2001,New Brunswick,Married or living common law,20 to 24 years,30.28
-2001,New Brunswick,Married,15 to 19 years,0.46
-2001,New Brunswick,Married,20 to 24 years,10.84
-2001,New Brunswick,Living common law,15 to 19 years,2.91
-2001,New Brunswick,Living common law,20 to 24 years,19.43
-1996,New Brunswick,Married or living common law,15 to 19 years,3.66
-1996,New Brunswick,Married or living common law,20 to 24 years,31.38
-1996,New Brunswick,Married,15 to 19 years,0.69
-1996,New Brunswick,Married,20 to 24 years,13.42
-1996,New Brunswick,Living common law,15 to 19 years,2.97
-1996,New Brunswick,Living common law,20 to 24 years,17.96
-2016,Quebec,Married or living common law,15 to 19 years,2.14
-2016,Quebec,Married or living common law,20 to 24 years,22.62
-2016,Quebec,Married,15 to 19 years,0.14
-2016,Quebec,Married,20 to 24 years,3.24
-2016,Quebec,Living common law,15 to 19 years,2
-2016,Quebec,Living common law,20 to 24 years,19.38
-2011,Quebec,Married or living common law,15 to 19 years,2.93
-2011,Quebec,Married or living common law,20 to 24 years,26.39
-2011,Quebec,Married,15 to 19 years,0.28
-2011,Quebec,Married,20 to 24 years,4.1
-2011,Quebec,Living common law,15 to 19 years,2.65
-2011,Quebec,Living common law,20 to 24 years,22.28
-2006,Quebec,Married or living common law,15 to 19 years,3.49
-2006,Quebec,Married or living common law,20 to 24 years,28.45
-2006,Quebec,Married,15 to 19 years,0.6
-2006,Quebec,Married,20 to 24 years,4.62
-2006,Quebec,Living common law,15 to 19 years,2.89
-2006,Quebec,Living common law,20 to 24 years,23.83
-2001,Quebec,Married or living common law,15 to 19 years,3.78
-2001,Quebec,Married or living common law,20 to 24 years,29.53
-2001,Quebec,Married,15 to 19 years,0.47
-2001,Quebec,Married,20 to 24 years,5.51
-2001,Quebec,Living common law,15 to 19 years,3.3
-2001,Quebec,Living common law,20 to 24 years,24.02
-1996,Quebec,Married or living common law,15 to 19 years,3.76
-1996,Quebec,Married or living common law,20 to 24 years,31.55
-1996,Quebec,Married,15 to 19 years,0.52
-1996,Quebec,Married,20 to 24 years,8.43
-1996,Quebec,Living common law,15 to 19 years,3.24
-1996,Quebec,Living common law,20 to 24 years,23.12
-2016,Ontario,Married or living common law,15 to 19 years,1.07
-2016,Ontario,Married or living common law,20 to 24 years,13.76
-2016,Ontario,Married,15 to 19 years,0.18
-2016,Ontario,Married,20 to 24 years,4.66
-2016,Ontario,Living common law,15 to 19 years,0.89
-2016,Ontario,Living common law,20 to 24 years,9.1
-2011,Ontario,Married or living common law,15 to 19 years,1.41
-2011,Ontario,Married or living common law,20 to 24 years,16.14
-2011,Ontario,Married,15 to 19 years,0.29
-2011,Ontario,Married,20 to 24 years,6.52
-2011,Ontario,Living common law,15 to 19 years,1.11
-2011,Ontario,Living common law,20 to 24 years,9.62
-2006,Ontario,Married or living common law,15 to 19 years,2.1
-2006,Ontario,Married or living common law,20 to 24 years,18.79
-2006,Ontario,Married,15 to 19 years,0.76
-2006,Ontario,Married,20 to 24 years,8.72
-2006,Ontario,Living common law,15 to 19 years,1.35
-2006,Ontario,Living common law,20 to 24 years,10.07
-2001,Ontario,Married or living common law,15 to 19 years,2.14
-2001,Ontario,Married or living common law,20 to 24 years,21.47
-2001,Ontario,Married,15 to 19 years,0.68
-2001,Ontario,Married,20 to 24 years,11.18
-2001,Ontario,Living common law,15 to 19 years,1.46
-2001,Ontario,Living common law,20 to 24 years,10.29
-1996,Ontario,Married or living common law,15 to 19 years,2.71
-1996,Ontario,Married or living common law,20 to 24 years,22.83
-1996,Ontario,Married,15 to 19 years,0.87
-1996,Ontario,Married,20 to 24 years,13.64
-1996,Ontario,Living common law,15 to 19 years,1.84
-1996,Ontario,Living common law,20 to 24 years,9.2
-2016,Manitoba,Married or living common law,15 to 19 years,2.06
-2016,Manitoba,Married or living common law,20 to 24 years,21.96
-2016,Manitoba,Married,15 to 19 years,0.29
-2016,Manitoba,Married,20 to 24 years,8.23
-2016,Manitoba,Living common law,15 to 19 years,1.75
-2016,Manitoba,Living common law,20 to 24 years,13.74
-2011,Manitoba,Married or living common law,15 to 19 years,2.75
-2011,Manitoba,Married or living common law,20 to 24 years,24.04
-2011,Manitoba,Married,15 to 19 years,0.57
-2011,Manitoba,Married,20 to 24 years,9.89
-2011,Manitoba,Living common law,15 to 19 years,2.18
-2011,Manitoba,Living common law,20 to 24 years,14.15
-2006,Manitoba,Married or living common law,15 to 19 years,3.37
-2006,Manitoba,Married or living common law,20 to 24 years,25.18
-2006,Manitoba,Married,15 to 19 years,0.86
-2006,Manitoba,Married,20 to 24 years,11.65
-2006,Manitoba,Living common law,15 to 19 years,2.52
-2006,Manitoba,Living common law,20 to 24 years,13.55
-2001,Manitoba,Married or living common law,15 to 19 years,3.74
-2001,Manitoba,Married or living common law,20 to 24 years,28.83
-2001,Manitoba,Married,15 to 19 years,0.89
-2001,Manitoba,Married,20 to 24 years,14.65
-2001,Manitoba,Living common law,15 to 19 years,2.84
-2001,Manitoba,Living common law,20 to 24 years,14.18
-1996,Manitoba,Married or living common law,15 to 19 years,4.26
-1996,Manitoba,Married or living common law,20 to 24 years,30.53
-1996,Manitoba,Married,15 to 19 years,1.12
-1996,Manitoba,Married,20 to 24 years,16.96
-1996,Manitoba,Living common law,15 to 19 years,3.14
-1996,Manitoba,Living common law,20 to 24 years,13.57
-2016,Saskatchewan,Married or living common law,15 to 19 years,2.73
-2016,Saskatchewan,Married or living common law,20 to 24 years,25.7
-2016,Saskatchewan,Married,15 to 19 years,0.21
-2016,Saskatchewan,Married,20 to 24 years,7.56
-2016,Saskatchewan,Living common law,15 to 19 years,2.5
-2016,Saskatchewan,Living common law,20 to 24 years,18.14
-2011,Saskatchewan,Married or living common law,15 to 19 years,3.28
-2011,Saskatchewan,Married or living common law,20 to 24 years,27.4
-2011,Saskatchewan,Married,15 to 19 years,0.33
-2011,Saskatchewan,Married,20 to 24 years,9.44
-2011,Saskatchewan,Living common law,15 to 19 years,2.97
-2011,Saskatchewan,Living common law,20 to 24 years,17.97
-2006,Saskatchewan,Married or living common law,15 to 19 years,3.96
-2006,Saskatchewan,Married or living common law,20 to 24 years,28.17
-2006,Saskatchewan,Married,15 to 19 years,0.52
-2006,Saskatchewan,Married,20 to 24 years,10.75
-2006,Saskatchewan,Living common law,15 to 19 years,3.44
-2006,Saskatchewan,Living common law,20 to 24 years,17.42
-2001,Saskatchewan,Married or living common law,15 to 19 years,3.73
-2001,Saskatchewan,Married or living common law,20 to 24 years,30.51
-2001,Saskatchewan,Married,15 to 19 years,0.56
-2001,Saskatchewan,Married,20 to 24 years,14.36
-2001,Saskatchewan,Living common law,15 to 19 years,3.15
-2001,Saskatchewan,Living common law,20 to 24 years,16.14
-1996,Saskatchewan,Married or living common law,15 to 19 years,4.59
-1996,Saskatchewan,Married or living common law,20 to 24 years,34.07
-1996,Saskatchewan,Married,15 to 19 years,0.7
-1996,Saskatchewan,Married,20 to 24 years,18.05
-1996,Saskatchewan,Living common law,15 to 19 years,3.89
-1996,Saskatchewan,Living common law,20 to 24 years,16.02
-2016,Alberta,Married or living common law,15 to 19 years,2.11
-2016,Alberta,Married or living common law,20 to 24 years,25.09
-2016,Alberta,Married,15 to 19 years,0.33
-2016,Alberta,Married,20 to 24 years,8.72
-2016,Alberta,Living common law,15 to 19 years,1.78
-2016,Alberta,Living common law,20 to 24 years,16.36
-2011,Alberta,Married or living common law,15 to 19 years,3.09
-2011,Alberta,Married or living common law,20 to 24 years,27.99
-2011,Alberta,Married,15 to 19 years,0.49
-2011,Alberta,Married,20 to 24 years,10.6
-2011,Alberta,Living common law,15 to 19 years,2.6
-2011,Alberta,Living common law,20 to 24 years,17.39
-2006,Alberta,Married or living common law,15 to 19 years,4.32
-2006,Alberta,Married or living common law,20 to 24 years,29.89
-2006,Alberta,Married,15 to 19 years,0.93
-2006,Alberta,Married,20 to 24 years,12.28
-2006,Alberta,Living common law,15 to 19 years,3.38
-2006,Alberta,Living common law,20 to 24 years,17.61
-2001,Alberta,Married or living common law,15 to 19 years,3.96
-2001,Alberta,Married or living common law,20 to 24 years,31.14
-2001,Alberta,Married,15 to 19 years,0.75
-2001,Alberta,Married,20 to 24 years,14.92
-2001,Alberta,Living common law,15 to 19 years,3.21
-2001,Alberta,Living common law,20 to 24 years,16.23
-1996,Alberta,Married or living common law,15 to 19 years,4.64
-1996,Alberta,Married or living common law,20 to 24 years,33.7
-1996,Alberta,Married,15 to 19 years,1.1
-1996,Alberta,Married,20 to 24 years,18.26
-1996,Alberta,Living common law,15 to 19 years,3.54
-1996,Alberta,Living common law,20 to 24 years,15.44
-2016,British Columbia,Married or living common law,15 to 19 years,1.57
-2016,British Columbia,Married or living common law,20 to 24 years,17.72
-2016,British Columbia,Married,15 to 19 years,0.18
-2016,British Columbia,Married,20 to 24 years,5.09
-2016,British Columbia,Living common law,15 to 19 years,1.39
-2016,British Columbia,Living common law,20 to 24 years,12.63
-2011,British Columbia,Married or living common law,15 to 19 years,2.08
-2011,British Columbia,Married or living common law,20 to 24 years,19.96
-2011,British Columbia,Married,15 to 19 years,0.31
-2011,British Columbia,Married,20 to 24 years,7.19
-2011,British Columbia,Living common law,15 to 19 years,1.77
-2011,British Columbia,Living common law,20 to 24 years,12.77
-2006,British Columbia,Married or living common law,15 to 19 years,2.79
-2006,British Columbia,Married or living common law,20 to 24 years,22.26
-2006,British Columbia,Married,15 to 19 years,0.71
-2006,British Columbia,Married,20 to 24 years,9.15
-2006,British Columbia,Living common law,15 to 19 years,2.08
-2006,British Columbia,Living common law,20 to 24 years,13.1
-2001,British Columbia,Married or living common law,15 to 19 years,2.76
-2001,British Columbia,Married or living common law,20 to 24 years,22.99
-2001,British Columbia,Married,15 to 19 years,0.65
-2001,British Columbia,Married,20 to 24 years,10.83
-2001,British Columbia,Living common law,15 to 19 years,2.11
-2001,British Columbia,Living common law,20 to 24 years,12.16
-1996,British Columbia,Married or living common law,15 to 19 years,3.39
-1996,British Columbia,Married or living common law,20 to 24 years,27.99
-1996,British Columbia,Married,15 to 19 years,0.87
-1996,British Columbia,Married,20 to 24 years,15.07
-1996,British Columbia,Living common law,15 to 19 years,2.51
-1996,British Columbia,Living common law,20 to 24 years,12.92
-2016,Yukon,Married or living common law,15 to 19 years,2.15
-2016,Yukon,Married or living common law,20 to 24 years,25.27
-2016,Yukon,Married,15 to 19 years,0.54
-2016,Yukon,Married,20 to 24 years,4.84
-2016,Yukon,Living common law,15 to 19 years,1.61
-2016,Yukon,Living common law,20 to 24 years,20.43
-2011,Yukon,Married or living common law,15 to 19 years,3.74
-2011,Yukon,Married or living common law,20 to 24 years,27.23
-2011,Yukon,Married,15 to 19 years,0.47
-2011,Yukon,Married,20 to 24 years,5.16
-2011,Yukon,Living common law,15 to 19 years,3.27
-2011,Yukon,Living common law,20 to 24 years,22.07
-2006,Yukon,Married or living common law,15 to 19 years,5.24
-2006,Yukon,Married or living common law,20 to 24 years,25.41
-2006,Yukon,Married,15 to 19 years,0.48
-2006,Yukon,Married,20 to 24 years,4.86
-2006,Yukon,Living common law,15 to 19 years,4.76
-2006,Yukon,Living common law,20 to 24 years,21.08
-2001,Yukon,Married or living common law,15 to 19 years,4.04
-2001,Yukon,Married or living common law,20 to 24 years,29.7
-2001,Yukon,Married,15 to 19 years,0.45
-2001,Yukon,Married,20 to 24 years,9.09
-2001,Yukon,Living common law,15 to 19 years,3.59
-2001,Yukon,Living common law,20 to 24 years,21.21
-1996,Yukon,Married or living common law,15 to 19 years,6.88
-1996,Yukon,Married or living common law,20 to 24 years,37.68
-1996,Yukon,Married,15 to 19 years,0.53
-1996,Yukon,Married,20 to 24 years,14.98
-1996,Yukon,Living common law,15 to 19 years,6.35
-1996,Yukon,Living common law,20 to 24 years,22.71
-2016,Northwest Territories,Married or living common law,15 to 19 years,2.68
-2016,Northwest Territories,Married or living common law,20 to 24 years,26.92
-2016,Northwest Territories,Married,15 to 19 years,0
-2016,Northwest Territories,Married,20 to 24 years,3.5
-2016,Northwest Territories,Living common law,15 to 19 years,2.68
-2016,Northwest Territories,Living common law,20 to 24 years,23.43
-2011,Northwest Territories,Married or living common law,15 to 19 years,4
-2011,Northwest Territories,Married or living common law,20 to 24 years,30.91
-2011,Northwest Territories,Married,15 to 19 years,0.31
-2011,Northwest Territories,Married,20 to 24 years,5.15
-2011,Northwest Territories,Living common law,15 to 19 years,3.69
-2011,Northwest Territories,Living common law,20 to 24 years,26.06
-2006,Northwest Territories,Married or living common law,15 to 19 years,5.68
-2006,Northwest Territories,Married or living common law,20 to 24 years,33.55
-2006,Northwest Territories,Married,15 to 19 years,0.85
-2006,Northwest Territories,Married,20 to 24 years,4.61
-2006,Northwest Territories,Living common law,15 to 19 years,4.55
-2006,Northwest Territories,Living common law,20 to 24 years,28.95
-2001,Northwest Territories,Married or living common law,15 to 19 years,4.64
-2001,Northwest Territories,Married or living common law,20 to 24 years,34.57
-2001,Northwest Territories,Married,15 to 19 years,0
-2001,Northwest Territories,Married,20 to 24 years,6.69
-2001,Northwest Territories,Living common law,15 to 19 years,4.29
-2001,Northwest Territories,Living common law,20 to 24 years,27.88
-1996,Northwest Territories,Married or living common law,15 to 19 years,11.15
-1996,Northwest Territories,Married or living common law,20 to 24 years,45.45
-1996,Northwest Territories,Married,15 to 19 years,0.58
-1996,Northwest Territories,Married,20 to 24 years,11.31
-1996,Northwest Territories,Living common law,15 to 19 years,10.58
-1996,Northwest Territories,Living common law,20 to 24 years,34.14
-2016,Nunavut,Married or living common law,15 to 19 years,11.04
-2016,Nunavut,Married or living common law,20 to 24 years,41.72
-2016,Nunavut,Married,15 to 19 years,0
-2016,Nunavut,Married,20 to 24 years,3.31
-2016,Nunavut,Living common law,15 to 19 years,11.04
-2016,Nunavut,Living common law,20 to 24 years,38.74
-2011,Nunavut,Married or living common law,15 to 19 years,9.52
-2011,Nunavut,Married or living common law,20 to 24 years,43.42
-2011,Nunavut,Married,15 to 19 years,0.68
-2011,Nunavut,Married,20 to 24 years,5.69
-2011,Nunavut,Living common law,15 to 19 years,9.18
-2011,Nunavut,Living common law,20 to 24 years,38.08
-2006,Nunavut,Married or living common law,15 to 19 years,11.55
-2006,Nunavut,Married or living common law,20 to 24 years,42.8
-2006,Nunavut,Married,15 to 19 years,0.33
-2006,Nunavut,Married,20 to 24 years,5.76
-2006,Nunavut,Living common law,15 to 19 years,10.89
-2006,Nunavut,Living common law,20 to 24 years,37.04
-2001,Nunavut,Married or living common law,15 to 19 years,12.96
-2001,Nunavut,Married or living common law,20 to 24 years,51.9
-2001,Nunavut,Married,15 to 19 years,0.81
-2001,Nunavut,Married,20 to 24 years,8.57
-2001,Nunavut,Living common law,15 to 19 years,12.15
-2001,Nunavut,Living common law,20 to 24 years,42.86
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-4-1.csv b/tests/assets/progress-calculation/data/temp/indicator_5-4-1.csv
deleted file mode 100644
index 18e271c3..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_5-4-1.csv
+++ /dev/null
@@ -1,481 +0,0 @@
-Year,Geography,Activity group,Age group,Sex,Value
-2015,Canada,Unpaid work activities,"Total, 15 years and over",Male,10
-2015,Canada,Unpaid work activities,"Total, 15 years and over",Female,15
-2015,Canada,Unpaid work activities,15 to 24 years,Male,4.6
-2015,Canada,Unpaid work activities,15 to 24 years,Female,6.7
-2015,Canada,Unpaid work activities,25 to 54 years,Male,10.4
-2015,Canada,Unpaid work activities,25 to 54 years,Female,16.3
-2015,Canada,Unpaid work activities,25 to 34 years,Male,7.9
-2015,Canada,Unpaid work activities,25 to 34 years,Female,15.8
-2015,Canada,Unpaid work activities,35 to 44 years,Male,11.7
-2015,Canada,Unpaid work activities,35 to 44 years,Female,17.9
-2015,Canada,Unpaid work activities,45 to 54 years,Male,11.3
-2015,Canada,Unpaid work activities,45 to 54 years,Female,15.4
-2015,Canada,Unpaid work activities,55 to 64 years,Male,12.1
-2015,Canada,Unpaid work activities,55 to 64 years,Female,16.3
-2015,Canada,Unpaid work activities,65 years and over,Male,13.3
-2015,Canada,Unpaid work activities,65 years and over,Female,16.7
-2015,Canada,Household chores,"Total, 15 years and over",Male,7.1
-2015,Canada,Household chores,"Total, 15 years and over",Female,10
-2015,Canada,Household chores,15 to 24 years,Male,3.3
-2015,Canada,Household chores,15 to 24 years,Female,4.2
-2015,Canada,Household chores,25 to 54 years,Male,6.7
-2015,Canada,Household chores,25 to 54 years,Female,10
-2015,Canada,Household chores,25 to 34 years,Male,5
-2015,Canada,Household chores,25 to 34 years,Female,8.3
-2015,Canada,Household chores,35 to 44 years,Male,6.7
-2015,Canada,Household chores,35 to 44 years,Female,10
-2015,Canada,Household chores,45 to 54 years,Male,8.8
-2015,Canada,Household chores,45 to 54 years,Female,11.3
-2015,Canada,Household chores,55 to 64 years,Male,9.6
-2015,Canada,Household chores,55 to 64 years,Female,12.1
-2015,Canada,Household chores,65 years and over,Male,10
-2015,Canada,Household chores,65 years and over,Female,13.3
-2015,Canada,Care of household children under 18 years,"Total, 15 years and over",Male,1.3
-2015,Canada,Care of household children under 18 years,"Total, 15 years and over",Female,2.1
-2015,Canada,Care of household children under 18 years,15 to 24 years,Male,NA
-2015,Canada,Care of household children under 18 years,15 to 24 years,Female,0.4
-2015,Canada,Care of household children under 18 years,25 to 54 years,Male,2.1
-2015,Canada,Care of household children under 18 years,25 to 54 years,Female,3.8
-2015,Canada,Care of household children under 18 years,25 to 34 years,Male,1.7
-2015,Canada,Care of household children under 18 years,25 to 34 years,Female,5
-2015,Canada,Care of household children under 18 years,35 to 44 years,Male,3.3
-2015,Canada,Care of household children under 18 years,35 to 44 years,Female,5.4
-2015,Canada,Care of household children under 18 years,45 to 54 years,Male,0.8
-2015,Canada,Care of household children under 18 years,45 to 54 years,Female,1.3
-2015,Canada,Care of household children under 18 years,55 to 64 years,Male,NA
-2015,Canada,Care of household children under 18 years,55 to 64 years,Female,0.4
-2015,Canada,Care of household children under 18 years,65 years and over,Male,0.4
-2015,Canada,Care of household children under 18 years,65 years and over,Female,0.4
-2015,Canada,Care of household adults,"Total, 15 years and over",Male,NA
-2015,Canada,Care of household adults,"Total, 15 years and over",Female,NA
-2015,Canada,Care of household adults,15 to 24 years,Male,NA
-2015,Canada,Care of household adults,15 to 24 years,Female,0
-2015,Canada,Care of household adults,25 to 54 years,Male,NA
-2015,Canada,Care of household adults,25 to 54 years,Female,NA
-2015,Canada,Care of household adults,25 to 34 years,Male,NA
-2015,Canada,Care of household adults,25 to 34 years,Female,NA
-2015,Canada,Care of household adults,35 to 44 years,Male,NA
-2015,Canada,Care of household adults,35 to 44 years,Female,NA
-2015,Canada,Care of household adults,45 to 54 years,Male,NA
-2015,Canada,Care of household adults,45 to 54 years,Female,NA
-2015,Canada,Care of household adults,55 to 64 years,Male,NA
-2015,Canada,Care of household adults,55 to 64 years,Female,0.4
-2015,Canada,Care of household adults,65 years and over,Male,NA
-2015,Canada,Care of household adults,65 years and over,Female,NA
-2015,Canada,Shopping for goods or services,"Total, 15 years and over",Male,1.7
-2015,Canada,Shopping for goods or services,"Total, 15 years and over",Female,2.5
-2015,Canada,Shopping for goods or services,15 to 24 years,Male,0.8
-2015,Canada,Shopping for goods or services,15 to 24 years,Female,1.7
-2015,Canada,Shopping for goods or services,25 to 54 years,Male,1.3
-2015,Canada,Shopping for goods or services,25 to 54 years,Female,2.1
-2015,Canada,Shopping for goods or services,25 to 34 years,Male,1.3
-2015,Canada,Shopping for goods or services,25 to 34 years,Female,2.1
-2015,Canada,Shopping for goods or services,35 to 44 years,Male,1.7
-2015,Canada,Shopping for goods or services,35 to 44 years,Female,2.1
-2015,Canada,Shopping for goods or services,45 to 54 years,Male,1.7
-2015,Canada,Shopping for goods or services,45 to 54 years,Female,2.5
-2015,Canada,Shopping for goods or services,55 to 64 years,Male,2.1
-2015,Canada,Shopping for goods or services,55 to 64 years,Female,2.9
-2015,Canada,Shopping for goods or services,65 years and over,Male,2.5
-2015,Canada,Shopping for goods or services,65 years and over,Female,2.9
-2015,Atlantic,Unpaid work activities,"Total, 15 years and over",Male,11.3
-2015,Atlantic,Unpaid work activities,"Total, 15 years and over",Female,15.4
-2015,Atlantic,Unpaid work activities,15 to 24 years,Male,5.4
-2015,Atlantic,Unpaid work activities,15 to 24 years,Female,6.3
-2015,Atlantic,Unpaid work activities,25 to 54 years,Male,11.3
-2015,Atlantic,Unpaid work activities,25 to 54 years,Female,16.3
-2015,Atlantic,Unpaid work activities,25 to 34 years,Male,8.8
-2015,Atlantic,Unpaid work activities,25 to 34 years,Female,15.8
-2015,Atlantic,Unpaid work activities,35 to 44 years,Male,12.5
-2015,Atlantic,Unpaid work activities,35 to 44 years,Female,17.1
-2015,Atlantic,Unpaid work activities,45 to 54 years,Male,11.7
-2015,Atlantic,Unpaid work activities,45 to 54 years,Female,16.3
-2015,Atlantic,Unpaid work activities,55 to 64 years,Male,13.3
-2015,Atlantic,Unpaid work activities,55 to 64 years,Female,17.5
-2015,Atlantic,Unpaid work activities,65 years and over,Male,13.3
-2015,Atlantic,Unpaid work activities,65 years and over,Female,16.7
-2015,Atlantic,Household chores,"Total, 15 years and over",Male,8.3
-2015,Atlantic,Household chores,"Total, 15 years and over",Female,10.4
-2015,Atlantic,Household chores,15 to 24 years,Male,4.6
-2015,Atlantic,Household chores,15 to 24 years,Female,3.8
-2015,Atlantic,Household chores,25 to 54 years,Male,7.5
-2015,Atlantic,Household chores,25 to 54 years,Female,10
-2015,Atlantic,Household chores,25 to 34 years,Male,5.4
-2015,Atlantic,Household chores,25 to 34 years,Female,7.9
-2015,Atlantic,Household chores,35 to 44 years,Male,7.1
-2015,Atlantic,Household chores,35 to 44 years,Female,10.4
-2015,Atlantic,Household chores,45 to 54 years,Male,9.6
-2015,Atlantic,Household chores,45 to 54 years,Female,11.7
-2015,Atlantic,Household chores,55 to 64 years,Male,10.8
-2015,Atlantic,Household chores,55 to 64 years,Female,12.9
-2015,Atlantic,Household chores,65 years and over,Male,10
-2015,Atlantic,Household chores,65 years and over,Female,13.3
-2015,Atlantic,Care of household children under 18 years,"Total, 15 years and over",Male,0.8
-2015,Atlantic,Care of household children under 18 years,"Total, 15 years and over",Female,1.7
-2015,Atlantic,Care of household children under 18 years,15 to 24 years,Male,NA
-2015,Atlantic,Care of household children under 18 years,15 to 24 years,Female,NA
-2015,Atlantic,Care of household children under 18 years,25 to 54 years,Male,2.1
-2015,Atlantic,Care of household children under 18 years,25 to 54 years,Female,3.3
-2015,Atlantic,Care of household children under 18 years,25 to 34 years,Male,1.7
-2015,Atlantic,Care of household children under 18 years,25 to 34 years,Female,5.8
-2015,Atlantic,Care of household children under 18 years,35 to 44 years,Male,3.3
-2015,Atlantic,Care of household children under 18 years,35 to 44 years,Female,4.2
-2015,Atlantic,Care of household children under 18 years,45 to 54 years,Male,0.8
-2015,Atlantic,Care of household children under 18 years,45 to 54 years,Female,0.8
-2015,Atlantic,Care of household children under 18 years,55 to 64 years,Male,NA
-2015,Atlantic,Care of household children under 18 years,55 to 64 years,Female,0.4
-2015,Atlantic,Care of household children under 18 years,65 years and over,Male,NA
-2015,Atlantic,Care of household children under 18 years,65 years and over,Female,NA
-2015,Atlantic,Care of household adults,"Total, 15 years and over",Male,NA
-2015,Atlantic,Care of household adults,"Total, 15 years and over",Female,NA
-2015,Atlantic,Care of household adults,15 to 24 years,Male,0
-2015,Atlantic,Care of household adults,15 to 24 years,Female,0
-2015,Atlantic,Care of household adults,25 to 54 years,Male,NA
-2015,Atlantic,Care of household adults,25 to 54 years,Female,NA
-2015,Atlantic,Care of household adults,25 to 34 years,Male,NA
-2015,Atlantic,Care of household adults,25 to 34 years,Female,NA
-2015,Atlantic,Care of household adults,35 to 44 years,Male,0
-2015,Atlantic,Care of household adults,35 to 44 years,Female,NA
-2015,Atlantic,Care of household adults,45 to 54 years,Male,NA
-2015,Atlantic,Care of household adults,45 to 54 years,Female,NA
-2015,Atlantic,Care of household adults,55 to 64 years,Male,NA
-2015,Atlantic,Care of household adults,55 to 64 years,Female,NA
-2015,Atlantic,Care of household adults,65 years and over,Male,NA
-2015,Atlantic,Care of household adults,65 years and over,Female,NA
-2015,Atlantic,Shopping for goods or services,"Total, 15 years and over",Male,1.7
-2015,Atlantic,Shopping for goods or services,"Total, 15 years and over",Female,2.5
-2015,Atlantic,Shopping for goods or services,15 to 24 years,Male,NA
-2015,Atlantic,Shopping for goods or services,15 to 24 years,Female,1.3
-2015,Atlantic,Shopping for goods or services,25 to 54 years,Male,1.3
-2015,Atlantic,Shopping for goods or services,25 to 54 years,Female,2.5
-2015,Atlantic,Shopping for goods or services,25 to 34 years,Male,1.3
-2015,Atlantic,Shopping for goods or services,25 to 34 years,Female,2.1
-2015,Atlantic,Shopping for goods or services,35 to 44 years,Male,1.7
-2015,Atlantic,Shopping for goods or services,35 to 44 years,Female,2.1
-2015,Atlantic,Shopping for goods or services,45 to 54 years,Male,0.8
-2015,Atlantic,Shopping for goods or services,45 to 54 years,Female,3.3
-2015,Atlantic,Shopping for goods or services,55 to 64 years,Male,1.7
-2015,Atlantic,Shopping for goods or services,55 to 64 years,Female,2.9
-2015,Atlantic,Shopping for goods or services,65 years and over,Male,2.9
-2015,Atlantic,Shopping for goods or services,65 years and over,Female,2.5
-2015,Quebec,Unpaid work activities,"Total, 15 years and over",Male,10.4
-2015,Quebec,Unpaid work activities,"Total, 15 years and over",Female,14.6
-2015,Quebec,Unpaid work activities,15 to 24 years,Male,4.6
-2015,Quebec,Unpaid work activities,15 to 24 years,Female,5.8
-2015,Quebec,Unpaid work activities,25 to 54 years,Male,10.8
-2015,Quebec,Unpaid work activities,25 to 54 years,Female,15.8
-2015,Quebec,Unpaid work activities,25 to 34 years,Male,8.8
-2015,Quebec,Unpaid work activities,25 to 34 years,Female,15.8
-2015,Quebec,Unpaid work activities,35 to 44 years,Male,12.9
-2015,Quebec,Unpaid work activities,35 to 44 years,Female,17.1
-2015,Quebec,Unpaid work activities,45 to 54 years,Male,10.8
-2015,Quebec,Unpaid work activities,45 to 54 years,Female,14.6
-2015,Quebec,Unpaid work activities,55 to 64 years,Male,11.7
-2015,Quebec,Unpaid work activities,55 to 64 years,Female,15.8
-2015,Quebec,Unpaid work activities,65 years and over,Male,11.7
-2015,Quebec,Unpaid work activities,65 years and over,Female,16.3
-2015,Quebec,Household chores,"Total, 15 years and over",Male,7.5
-2015,Quebec,Household chores,"Total, 15 years and over",Female,9.6
-2015,Quebec,Household chores,15 to 24 years,Male,3.8
-2015,Quebec,Household chores,15 to 24 years,Female,3.3
-2015,Quebec,Household chores,25 to 54 years,Male,7.1
-2015,Quebec,Household chores,25 to 54 years,Female,9.2
-2015,Quebec,Household chores,25 to 34 years,Male,4.6
-2015,Quebec,Household chores,25 to 34 years,Female,7.9
-2015,Quebec,Household chores,35 to 44 years,Male,7.9
-2015,Quebec,Household chores,35 to 44 years,Female,10
-2015,Quebec,Household chores,45 to 54 years,Male,8.8
-2015,Quebec,Household chores,45 to 54 years,Female,10.4
-2015,Quebec,Household chores,55 to 64 years,Male,9.2
-2015,Quebec,Household chores,55 to 64 years,Female,12.1
-2015,Quebec,Household chores,65 years and over,Male,9.2
-2015,Quebec,Household chores,65 years and over,Female,12.9
-2015,Quebec,Care of household children under 18 years,"Total, 15 years and over",Male,1.3
-2015,Quebec,Care of household children under 18 years,"Total, 15 years and over",Female,2.1
-2015,Quebec,Care of household children under 18 years,15 to 24 years,Male,NA
-2015,Quebec,Care of household children under 18 years,15 to 24 years,Female,NA
-2015,Quebec,Care of household children under 18 years,25 to 54 years,Male,2.1
-2015,Quebec,Care of household children under 18 years,25 to 54 years,Female,3.8
-2015,Quebec,Care of household children under 18 years,25 to 34 years,Male,2.5
-2015,Quebec,Care of household children under 18 years,25 to 34 years,Female,5.8
-2015,Quebec,Care of household children under 18 years,35 to 44 years,Male,2.9
-2015,Quebec,Care of household children under 18 years,35 to 44 years,Female,5
-2015,Quebec,Care of household children under 18 years,45 to 54 years,Male,0.8
-2015,Quebec,Care of household children under 18 years,45 to 54 years,Female,0.8
-2015,Quebec,Care of household children under 18 years,55 to 64 years,Male,NA
-2015,Quebec,Care of household children under 18 years,55 to 64 years,Female,NA
-2015,Quebec,Care of household children under 18 years,65 years and over,Male,NA
-2015,Quebec,Care of household children under 18 years,65 years and over,Female,NA
-2015,Quebec,Care of household adults,"Total, 15 years and over",Male,NA
-2015,Quebec,Care of household adults,"Total, 15 years and over",Female,NA
-2015,Quebec,Care of household adults,15 to 24 years,Male,NA
-2015,Quebec,Care of household adults,15 to 24 years,Female,0
-2015,Quebec,Care of household adults,25 to 54 years,Male,NA
-2015,Quebec,Care of household adults,25 to 54 years,Female,NA
-2015,Quebec,Care of household adults,25 to 34 years,Male,NA
-2015,Quebec,Care of household adults,25 to 34 years,Female,NA
-2015,Quebec,Care of household adults,35 to 44 years,Male,NA
-2015,Quebec,Care of household adults,35 to 44 years,Female,NA
-2015,Quebec,Care of household adults,45 to 54 years,Male,NA
-2015,Quebec,Care of household adults,45 to 54 years,Female,NA
-2015,Quebec,Care of household adults,55 to 64 years,Male,NA
-2015,Quebec,Care of household adults,55 to 64 years,Female,NA
-2015,Quebec,Care of household adults,65 years and over,Male,NA
-2015,Quebec,Care of household adults,65 years and over,Female,NA
-2015,Quebec,Shopping for goods or services,"Total, 15 years and over",Male,1.7
-2015,Quebec,Shopping for goods or services,"Total, 15 years and over",Female,2.5
-2015,Quebec,Shopping for goods or services,15 to 24 years,Male,0.8
-2015,Quebec,Shopping for goods or services,15 to 24 years,Female,1.7
-2015,Quebec,Shopping for goods or services,25 to 54 years,Male,1.3
-2015,Quebec,Shopping for goods or services,25 to 54 years,Female,2.1
-2015,Quebec,Shopping for goods or services,25 to 34 years,Male,1.3
-2015,Quebec,Shopping for goods or services,25 to 34 years,Female,2.1
-2015,Quebec,Shopping for goods or services,35 to 44 years,Male,1.3
-2015,Quebec,Shopping for goods or services,35 to 44 years,Female,2.1
-2015,Quebec,Shopping for goods or services,45 to 54 years,Male,1.3
-2015,Quebec,Shopping for goods or services,45 to 54 years,Female,2.9
-2015,Quebec,Shopping for goods or services,55 to 64 years,Male,2.1
-2015,Quebec,Shopping for goods or services,55 to 64 years,Female,2.5
-2015,Quebec,Shopping for goods or services,65 years and over,Male,2.1
-2015,Quebec,Shopping for goods or services,65 years and over,Female,2.5
-2015,Ontario,Unpaid work activities,"Total, 15 years and over",Male,10
-2015,Ontario,Unpaid work activities,"Total, 15 years and over",Female,15
-2015,Ontario,Unpaid work activities,15 to 24 years,Male,4.6
-2015,Ontario,Unpaid work activities,15 to 24 years,Female,6.3
-2015,Ontario,Unpaid work activities,25 to 54 years,Male,10
-2015,Ontario,Unpaid work activities,25 to 54 years,Female,16.3
-2015,Ontario,Unpaid work activities,25 to 34 years,Male,7.1
-2015,Ontario,Unpaid work activities,25 to 34 years,Female,15.8
-2015,Ontario,Unpaid work activities,35 to 44 years,Male,11.7
-2015,Ontario,Unpaid work activities,35 to 44 years,Female,18.3
-2015,Ontario,Unpaid work activities,45 to 54 years,Male,10.4
-2015,Ontario,Unpaid work activities,45 to 54 years,Female,15
-2015,Ontario,Unpaid work activities,55 to 64 years,Male,11.7
-2015,Ontario,Unpaid work activities,55 to 64 years,Female,17.5
-2015,Ontario,Unpaid work activities,65 years and over,Male,13.3
-2015,Ontario,Unpaid work activities,65 years and over,Female,17.5
-2015,Ontario,Household chores,"Total, 15 years and over",Male,7.1
-2015,Ontario,Household chores,"Total, 15 years and over",Female,10
-2015,Ontario,Household chores,15 to 24 years,Male,2.9
-2015,Ontario,Household chores,15 to 24 years,Female,3.8
-2015,Ontario,Household chores,25 to 54 years,Male,6.3
-2015,Ontario,Household chores,25 to 54 years,Female,9.6
-2015,Ontario,Household chores,25 to 34 years,Male,4.2
-2015,Ontario,Household chores,25 to 34 years,Female,7.9
-2015,Ontario,Household chores,35 to 44 years,Male,6.7
-2015,Ontario,Household chores,35 to 44 years,Female,10.4
-2015,Ontario,Household chores,45 to 54 years,Male,7.5
-2015,Ontario,Household chores,45 to 54 years,Female,10.8
-2015,Ontario,Household chores,55 to 64 years,Male,9.6
-2015,Ontario,Household chores,55 to 64 years,Female,12.9
-2015,Ontario,Household chores,65 years and over,Male,10.4
-2015,Ontario,Household chores,65 years and over,Female,13.8
-2015,Ontario,Care of household children under 18 years,"Total, 15 years and over",Male,1.3
-2015,Ontario,Care of household children under 18 years,"Total, 15 years and over",Female,2.1
-2015,Ontario,Care of household children under 18 years,15 to 24 years,Male,NA
-2015,Ontario,Care of household children under 18 years,15 to 24 years,Female,NA
-2015,Ontario,Care of household children under 18 years,25 to 54 years,Male,2.1
-2015,Ontario,Care of household children under 18 years,25 to 54 years,Female,3.8
-2015,Ontario,Care of household children under 18 years,25 to 34 years,Male,1.7
-2015,Ontario,Care of household children under 18 years,25 to 34 years,Female,5
-2015,Ontario,Care of household children under 18 years,35 to 44 years,Male,3.3
-2015,Ontario,Care of household children under 18 years,35 to 44 years,Female,5.8
-2015,Ontario,Care of household children under 18 years,45 to 54 years,Male,1.3
-2015,Ontario,Care of household children under 18 years,45 to 54 years,Female,1.3
-2015,Ontario,Care of household children under 18 years,55 to 64 years,Male,NA
-2015,Ontario,Care of household children under 18 years,55 to 64 years,Female,0.4
-2015,Ontario,Care of household children under 18 years,65 years and over,Male,NA
-2015,Ontario,Care of household children under 18 years,65 years and over,Female,NA
-2015,Ontario,Care of household adults,"Total, 15 years and over",Male,NA
-2015,Ontario,Care of household adults,"Total, 15 years and over",Female,NA
-2015,Ontario,Care of household adults,15 to 24 years,Male,NA
-2015,Ontario,Care of household adults,15 to 24 years,Female,0
-2015,Ontario,Care of household adults,25 to 54 years,Male,NA
-2015,Ontario,Care of household adults,25 to 54 years,Female,NA
-2015,Ontario,Care of household adults,25 to 34 years,Male,NA
-2015,Ontario,Care of household adults,25 to 34 years,Female,NA
-2015,Ontario,Care of household adults,35 to 44 years,Male,NA
-2015,Ontario,Care of household adults,35 to 44 years,Female,NA
-2015,Ontario,Care of household adults,45 to 54 years,Male,NA
-2015,Ontario,Care of household adults,45 to 54 years,Female,NA
-2015,Ontario,Care of household adults,55 to 64 years,Male,NA
-2015,Ontario,Care of household adults,55 to 64 years,Female,NA
-2015,Ontario,Care of household adults,65 years and over,Male,NA
-2015,Ontario,Care of household adults,65 years and over,Female,NA
-2015,Ontario,Shopping for goods or services,"Total, 15 years and over",Male,1.7
-2015,Ontario,Shopping for goods or services,"Total, 15 years and over",Female,2.5
-2015,Ontario,Shopping for goods or services,15 to 24 years,Male,0.8
-2015,Ontario,Shopping for goods or services,15 to 24 years,Female,1.7
-2015,Ontario,Shopping for goods or services,25 to 54 years,Male,1.3
-2015,Ontario,Shopping for goods or services,25 to 54 years,Female,2.1
-2015,Ontario,Shopping for goods or services,25 to 34 years,Male,1.3
-2015,Ontario,Shopping for goods or services,25 to 34 years,Female,2.5
-2015,Ontario,Shopping for goods or services,35 to 44 years,Male,1.7
-2015,Ontario,Shopping for goods or services,35 to 44 years,Female,2.1
-2015,Ontario,Shopping for goods or services,45 to 54 years,Male,1.7
-2015,Ontario,Shopping for goods or services,45 to 54 years,Female,2.5
-2015,Ontario,Shopping for goods or services,55 to 64 years,Male,1.7
-2015,Ontario,Shopping for goods or services,55 to 64 years,Female,2.9
-2015,Ontario,Shopping for goods or services,65 years and over,Male,2.5
-2015,Ontario,Shopping for goods or services,65 years and over,Female,2.9
-2015,Prairies,Unpaid work activities,"Total, 15 years and over",Male,10.4
-2015,Prairies,Unpaid work activities,"Total, 15 years and over",Female,15.8
-2015,Prairies,Unpaid work activities,15 to 24 years,Male,5
-2015,Prairies,Unpaid work activities,15 to 24 years,Female,8.3
-2015,Prairies,Unpaid work activities,25 to 54 years,Male,10.4
-2015,Prairies,Unpaid work activities,25 to 54 years,Female,17.9
-2015,Prairies,Unpaid work activities,25 to 34 years,Male,7.9
-2015,Prairies,Unpaid work activities,25 to 34 years,Female,17.5
-2015,Prairies,Unpaid work activities,35 to 44 years,Male,11.3
-2015,Prairies,Unpaid work activities,35 to 44 years,Female,20
-2015,Prairies,Unpaid work activities,45 to 54 years,Male,12.1
-2015,Prairies,Unpaid work activities,45 to 54 years,Female,16.3
-2015,Prairies,Unpaid work activities,55 to 64 years,Male,11.7
-2015,Prairies,Unpaid work activities,55 to 64 years,Female,15.4
-2015,Prairies,Unpaid work activities,65 years and over,Male,15
-2015,Prairies,Unpaid work activities,65 years and over,Female,17.1
-2015,Prairies,Household chores,"Total, 15 years and over",Male,7.5
-2015,Prairies,Household chores,"Total, 15 years and over",Female,10.4
-2015,Prairies,Household chores,15 to 24 years,Male,3.3
-2015,Prairies,Household chores,15 to 24 years,Female,6.3
-2015,Prairies,Household chores,25 to 54 years,Male,7.1
-2015,Prairies,Household chores,25 to 54 years,Female,10.4
-2015,Prairies,Household chores,25 to 34 years,Male,5.4
-2015,Prairies,Household chores,25 to 34 years,Female,9.2
-2015,Prairies,Household chores,35 to 44 years,Male,6.3
-2015,Prairies,Household chores,35 to 44 years,Female,10.8
-2015,Prairies,Household chores,45 to 54 years,Male,9.6
-2015,Prairies,Household chores,45 to 54 years,Female,11.7
-2015,Prairies,Household chores,55 to 64 years,Male,9.2
-2015,Prairies,Household chores,55 to 64 years,Female,11.3
-2015,Prairies,Household chores,65 years and over,Male,11.7
-2015,Prairies,Household chores,65 years and over,Female,13.3
-2015,Prairies,Care of household children under 18 years,"Total, 15 years and over",Male,0.8
-2015,Prairies,Care of household children under 18 years,"Total, 15 years and over",Female,2.9
-2015,Prairies,Care of household children under 18 years,15 to 24 years,Male,NA
-2015,Prairies,Care of household children under 18 years,15 to 24 years,Female,0.8
-2015,Prairies,Care of household children under 18 years,25 to 54 years,Male,1.7
-2015,Prairies,Care of household children under 18 years,25 to 54 years,Female,5
-2015,Prairies,Care of household children under 18 years,25 to 34 years,Male,1.3
-2015,Prairies,Care of household children under 18 years,25 to 34 years,Female,5.8
-2015,Prairies,Care of household children under 18 years,35 to 44 years,Male,2.9
-2015,Prairies,Care of household children under 18 years,35 to 44 years,Female,7.1
-2015,Prairies,Care of household children under 18 years,45 to 54 years,Male,0.8
-2015,Prairies,Care of household children under 18 years,45 to 54 years,Female,1.3
-2015,Prairies,Care of household children under 18 years,55 to 64 years,Male,NA
-2015,Prairies,Care of household children under 18 years,55 to 64 years,Female,NA
-2015,Prairies,Care of household children under 18 years,65 years and over,Male,NA
-2015,Prairies,Care of household children under 18 years,65 years and over,Female,NA
-2015,Prairies,Care of household adults,"Total, 15 years and over",Male,NA
-2015,Prairies,Care of household adults,"Total, 15 years and over",Female,NA
-2015,Prairies,Care of household adults,15 to 24 years,Male,NA
-2015,Prairies,Care of household adults,15 to 24 years,Female,0
-2015,Prairies,Care of household adults,25 to 54 years,Male,NA
-2015,Prairies,Care of household adults,25 to 54 years,Female,NA
-2015,Prairies,Care of household adults,25 to 34 years,Male,NA
-2015,Prairies,Care of household adults,25 to 34 years,Female,NA
-2015,Prairies,Care of household adults,35 to 44 years,Male,NA
-2015,Prairies,Care of household adults,35 to 44 years,Female,NA
-2015,Prairies,Care of household adults,45 to 54 years,Male,NA
-2015,Prairies,Care of household adults,45 to 54 years,Female,NA
-2015,Prairies,Care of household adults,55 to 64 years,Male,NA
-2015,Prairies,Care of household adults,55 to 64 years,Female,NA
-2015,Prairies,Care of household adults,65 years and over,Male,NA
-2015,Prairies,Care of household adults,65 years and over,Female,NA
-2015,Prairies,Shopping for goods or services,"Total, 15 years and over",Male,1.7
-2015,Prairies,Shopping for goods or services,"Total, 15 years and over",Female,2.1
-2015,Prairies,Shopping for goods or services,15 to 24 years,Male,1.7
-2015,Prairies,Shopping for goods or services,15 to 24 years,Female,0.8
-2015,Prairies,Shopping for goods or services,25 to 54 years,Male,1.3
-2015,Prairies,Shopping for goods or services,25 to 54 years,Female,2.1
-2015,Prairies,Shopping for goods or services,25 to 34 years,Male,0.8
-2015,Prairies,Shopping for goods or services,25 to 34 years,Female,2.1
-2015,Prairies,Shopping for goods or services,35 to 44 years,Male,2.1
-2015,Prairies,Shopping for goods or services,35 to 44 years,Female,2.1
-2015,Prairies,Shopping for goods or services,45 to 54 years,Male,1.3
-2015,Prairies,Shopping for goods or services,45 to 54 years,Female,2.5
-2015,Prairies,Shopping for goods or services,55 to 64 years,Male,2.1
-2015,Prairies,Shopping for goods or services,55 to 64 years,Female,2.5
-2015,Prairies,Shopping for goods or services,65 years and over,Male,2.9
-2015,Prairies,Shopping for goods or services,65 years and over,Female,2.9
-2015,British Columbia,Unpaid work activities,"Total, 15 years and over",Male,10.4
-2015,British Columbia,Unpaid work activities,"Total, 15 years and over",Female,14.2
-2015,British Columbia,Unpaid work activities,15 to 24 years,Male,3.3
-2015,British Columbia,Unpaid work activities,15 to 24 years,Female,7.9
-2015,British Columbia,Unpaid work activities,25 to 54 years,Male,10.8
-2015,British Columbia,Unpaid work activities,25 to 54 years,Female,15.4
-2015,British Columbia,Unpaid work activities,25 to 34 years,Male,8.3
-2015,British Columbia,Unpaid work activities,25 to 34 years,Female,14.2
-2015,British Columbia,Unpaid work activities,35 to 44 years,Male,10.8
-2015,British Columbia,Unpaid work activities,35 to 44 years,Female,16.3
-2015,British Columbia,Unpaid work activities,45 to 54 years,Male,13.3
-2015,British Columbia,Unpaid work activities,45 to 54 years,Female,16.3
-2015,British Columbia,Unpaid work activities,55 to 64 years,Male,12.5
-2015,British Columbia,Unpaid work activities,55 to 64 years,Female,14.6
-2015,British Columbia,Unpaid work activities,65 years and over,Male,13.3
-2015,British Columbia,Unpaid work activities,65 years and over,Female,15.8
-2015,British Columbia,Household chores,"Total, 15 years and over",Male,7.5
-2015,British Columbia,Household chores,"Total, 15 years and over",Female,9.6
-2015,British Columbia,Household chores,15 to 24 years,Male,2.1
-2015,British Columbia,Household chores,15 to 24 years,Female,3.8
-2015,British Columbia,Household chores,25 to 54 years,Male,7.1
-2015,British Columbia,Household chores,25 to 54 years,Female,9.6
-2015,British Columbia,Household chores,25 to 34 years,Male,5
-2015,British Columbia,Household chores,25 to 34 years,Female,8.3
-2015,British Columbia,Household chores,35 to 44 years,Male,5.8
-2015,British Columbia,Household chores,35 to 44 years,Female,8.8
-2015,British Columbia,Household chores,45 to 54 years,Male,10.4
-2015,British Columbia,Household chores,45 to 54 years,Female,12.1
-2015,British Columbia,Household chores,55 to 64 years,Male,9.6
-2015,British Columbia,Household chores,55 to 64 years,Female,10.8
-2015,British Columbia,Household chores,65 years and over,Male,10
-2015,British Columbia,Household chores,65 years and over,Female,12.5
-2015,British Columbia,Care of household children under 18 years,"Total, 15 years and over",Male,1.3
-2015,British Columbia,Care of household children under 18 years,"Total, 15 years and over",Female,1.7
-2015,British Columbia,Care of household children under 18 years,15 to 24 years,Male,0
-2015,British Columbia,Care of household children under 18 years,15 to 24 years,Female,NA
-2015,British Columbia,Care of household children under 18 years,25 to 54 years,Male,2.1
-2015,British Columbia,Care of household children under 18 years,25 to 54 years,Female,2.9
-2015,British Columbia,Care of household children under 18 years,25 to 34 years,Male,1.7
-2015,British Columbia,Care of household children under 18 years,25 to 34 years,Female,3.3
-2015,British Columbia,Care of household children under 18 years,35 to 44 years,Male,3.8
-2015,British Columbia,Care of household children under 18 years,35 to 44 years,Female,5
-2015,British Columbia,Care of household children under 18 years,45 to 54 years,Male,0.8
-2015,British Columbia,Care of household children under 18 years,45 to 54 years,Female,1.3
-2015,British Columbia,Care of household children under 18 years,55 to 64 years,Male,NA
-2015,British Columbia,Care of household children under 18 years,55 to 64 years,Female,NA
-2015,British Columbia,Care of household children under 18 years,65 years and over,Male,NA
-2015,British Columbia,Care of household children under 18 years,65 years and over,Female,NA
-2015,British Columbia,Care of household adults,"Total, 15 years and over",Male,NA
-2015,British Columbia,Care of household adults,"Total, 15 years and over",Female,NA
-2015,British Columbia,Care of household adults,15 to 24 years,Male,NA
-2015,British Columbia,Care of household adults,15 to 24 years,Female,0
-2015,British Columbia,Care of household adults,25 to 54 years,Male,NA
-2015,British Columbia,Care of household adults,25 to 54 years,Female,NA
-2015,British Columbia,Care of household adults,25 to 34 years,Male,0
-2015,British Columbia,Care of household adults,25 to 34 years,Female,NA
-2015,British Columbia,Care of household adults,35 to 44 years,Male,NA
-2015,British Columbia,Care of household adults,35 to 44 years,Female,NA
-2015,British Columbia,Care of household adults,45 to 54 years,Male,NA
-2015,British Columbia,Care of household adults,45 to 54 years,Female,NA
-2015,British Columbia,Care of household adults,55 to 64 years,Male,NA
-2015,British Columbia,Care of household adults,55 to 64 years,Female,NA
-2015,British Columbia,Care of household adults,65 years and over,Male,NA
-2015,British Columbia,Care of household adults,65 years and over,Female,NA
-2015,British Columbia,Shopping for goods or services,"Total, 15 years and over",Male,1.7
-2015,British Columbia,Shopping for goods or services,"Total, 15 years and over",Female,2.5
-2015,British Columbia,Shopping for goods or services,15 to 24 years,Male,NA
-2015,British Columbia,Shopping for goods or services,15 to 24 years,Female,3.8
-2015,British Columbia,Shopping for goods or services,25 to 54 years,Male,1.3
-2015,British Columbia,Shopping for goods or services,25 to 54 years,Female,2.1
-2015,British Columbia,Shopping for goods or services,25 to 34 years,Male,1.3
-2015,British Columbia,Shopping for goods or services,25 to 34 years,Female,1.7
-2015,British Columbia,Shopping for goods or services,35 to 44 years,Male,0.8
-2015,British Columbia,Shopping for goods or services,35 to 44 years,Female,2.1
-2015,British Columbia,Shopping for goods or services,45 to 54 years,Male,2.1
-2015,British Columbia,Shopping for goods or services,45 to 54 years,Female,2.5
-2015,British Columbia,Shopping for goods or services,55 to 64 years,Male,2.5
-2015,British Columbia,Shopping for goods or services,55 to 64 years,Female,2.5
-2015,British Columbia,Shopping for goods or services,65 years and over,Male,2.5
-2015,British Columbia,Shopping for goods or services,65 years and over,Female,2.5
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-5-1.csv b/tests/assets/progress-calculation/data/temp/indicator_5-5-1.csv
deleted file mode 100644
index 1b313865..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_5-5-1.csv
+++ /dev/null
@@ -1,207 +0,0 @@
-Year,Geography,Government,Elected officials,Value
-2015,Canada,National,Members of Parliament,25.3
-2016,Canada,National,Members of Parliament,26.1
-2017,Canada,National,Members of Parliament,27.2
-2018,Canada,National,Members of Parliament,27
-2019,Canada,National,Members of Parliament,27.2
-2020,Canada,National,Members of Parliament,29
-2021,Canada,National,Members of Parliament,29.4
-2015,Canada,National,Members of Cabinet,30.8
-2016,Canada,National,Members of Cabinet,50
-2017,Canada,National,Members of Cabinet,50
-2018,Canada,National,Members of Cabinet,50
-2019,Canada,National,Members of Cabinet,48.6
-2020,Canada,National,Members of Cabinet,48.6
-2021,Canada,National,Members of Cabinet,48.6
-2015,Newfoundland and Labrador,National,Members of Parliament,28.6
-2016,Newfoundland and Labrador,National,Members of Parliament,42.9
-2017,Newfoundland and Labrador,National,Members of Parliament,42.9
-2018,Newfoundland and Labrador,National,Members of Parliament,28.6
-2019,Newfoundland and Labrador,National,Members of Parliament,28.6
-2020,Newfoundland and Labrador,National,Members of Parliament,28.6
-2021,Newfoundland and Labrador,National,Members of Parliament,28.6
-2015,Newfoundland and Labrador,National,Members of Cabinet,0
-2016,Newfoundland and Labrador,National,Members of Cabinet,100
-2017,Newfoundland and Labrador,National,Members of Cabinet,100
-2018,Newfoundland and Labrador,National,Members of Cabinet,0
-2019,Newfoundland and Labrador,National,Members of Cabinet,0
-2020,Newfoundland and Labrador,National,Members of Cabinet,0
-2021,Newfoundland and Labrador,National,Members of Cabinet,0
-2015,Prince Edward Island,National,Members of Parliament,25
-2016,Prince Edward Island,National,Members of Parliament,0
-2017,Prince Edward Island,National,Members of Parliament,0
-2018,Prince Edward Island,National,Members of Parliament,0
-2019,Prince Edward Island,National,Members of Parliament,0
-2020,Prince Edward Island,National,Members of Parliament,0
-2021,Prince Edward Island,National,Members of Parliament,0
-2015,Prince Edward Island,National,Members of Cabinet,100
-2016,Prince Edward Island,National,Members of Cabinet,0
-2017,Prince Edward Island,National,Members of Cabinet,0
-2018,Prince Edward Island,National,Members of Cabinet,0
-2019,Prince Edward Island,National,Members of Cabinet,0
-2020,Prince Edward Island,National,Members of Cabinet,0
-2021,Prince Edward Island,National,Members of Cabinet,0
-2015,Nova Scotia,National,Members of Parliament,9.1
-2016,Nova Scotia,National,Members of Parliament,9.1
-2017,Nova Scotia,National,Members of Parliament,9.1
-2018,Nova Scotia,National,Members of Parliament,9.1
-2019,Nova Scotia,National,Members of Parliament,10
-2020,Nova Scotia,National,Members of Parliament,18.2
-2021,Nova Scotia,National,Members of Parliament,18.2
-2015,Nova Scotia,National,Members of Cabinet,0
-2016,Nova Scotia,National,Members of Cabinet,0
-2017,Nova Scotia,National,Members of Cabinet,0
-2018,Nova Scotia,National,Members of Cabinet,0
-2019,Nova Scotia,National,Members of Cabinet,100
-2020,Nova Scotia,National,Members of Cabinet,100
-2021,Nova Scotia,National,Members of Cabinet,100
-2015,New Brunswick,National,Members of Parliament,10
-2016,New Brunswick,National,Members of Parliament,30
-2017,New Brunswick,National,Members of Parliament,30
-2018,New Brunswick,National,Members of Parliament,30
-2019,New Brunswick,National,Members of Parliament,30
-2020,New Brunswick,National,Members of Parliament,20
-2021,New Brunswick,National,Members of Parliament,20
-2015,New Brunswick,National,Members of Cabinet,0
-2016,New Brunswick,National,Members of Cabinet,0
-2017,New Brunswick,National,Members of Cabinet,0
-2018,New Brunswick,National,Members of Cabinet,50
-2019,New Brunswick,National,Members of Cabinet,50
-2020,New Brunswick,National,Members of Cabinet,0
-2021,New Brunswick,National,Members of Cabinet,0
-2015,Quebec,National,Members of Parliament,37.3
-2016,Quebec,National,Members of Parliament,24.4
-2017,Quebec,National,Members of Parliament,25.6
-2018,Quebec,National,Members of Parliament,25.6
-2019,Quebec,National,Members of Parliament,27.3
-2020,Quebec,National,Members of Parliament,33.3
-2021,Quebec,National,Members of Parliament,33.3
-2015,Quebec,National,Members of Cabinet,0
-2016,Quebec,National,Members of Cabinet,42.9
-2017,Quebec,National,Members of Cabinet,42.9
-2018,Quebec,National,Members of Cabinet,42.9
-2019,Quebec,National,Members of Cabinet,33.3
-2020,Quebec,National,Members of Cabinet,27.3
-2021,Quebec,National,Members of Cabinet,27.3
-2015,Ontario,National,Members of Parliament,19.6
-2016,Ontario,National,Members of Parliament,31.4
-2017,Ontario,National,Members of Parliament,33.1
-2018,Ontario,National,Members of Parliament,34.2
-2019,Ontario,National,Members of Parliament,33.9
-2020,Ontario,National,Members of Parliament,31.4
-2021,Ontario,National,Members of Parliament,32.5
-2015,Ontario,National,Members of Cabinet,20
-2016,Ontario,National,Members of Cabinet,72.7
-2017,Ontario,National,Members of Cabinet,75
-2018,Ontario,National,Members of Cabinet,75
-2019,Ontario,National,Members of Cabinet,71.4
-2020,Ontario,National,Members of Cabinet,70.6
-2021,Ontario,National,Members of Cabinet,75
-2015,Manitoba,National,Members of Parliament,35.7
-2016,Manitoba,National,Members of Parliament,21.4
-2017,Manitoba,National,Members of Parliament,21.4
-2018,Manitoba,National,Members of Parliament,21.4
-2019,Manitoba,National,Members of Parliament,21.4
-2020,Manitoba,National,Members of Parliament,28.6
-2021,Manitoba,National,Members of Parliament,28.6
-2015,Manitoba,National,Members of Cabinet,100
-2016,Manitoba,National,Members of Cabinet,50
-2017,Manitoba,National,Members of Cabinet,0
-2018,Manitoba,National,Members of Cabinet,0
-2019,Manitoba,National,Members of Cabinet,0
-2020,Manitoba,National,Members of Cabinet,0
-2021,Manitoba,National,Members of Cabinet,0
-2015,Saskatchewan,National,Members of Parliament,14.3
-2016,Saskatchewan,National,Members of Parliament,28.6
-2017,Saskatchewan,National,Members of Parliament,28.6
-2018,Saskatchewan,National,Members of Parliament,35.7
-2019,Saskatchewan,National,Members of Parliament,35.7
-2020,Saskatchewan,National,Members of Parliament,21.4
-2021,Saskatchewan,National,Members of Parliament,21.4
-2015,Saskatchewan,National,Members of Cabinet,50
-2016,Saskatchewan,National,Members of Cabinet,0
-2017,Saskatchewan,National,Members of Cabinet,0
-2018,Saskatchewan,National,Members of Cabinet,0
-2019,Saskatchewan,National,Members of Cabinet,0
-2020,Saskatchewan,National,Members of Cabinet,0
-2021,Saskatchewan,National,Members of Cabinet,0
-2015,Alberta,National,Members of Parliament,17.9
-2016,Alberta,National,Members of Parliament,15.2
-2017,Alberta,National,Members of Parliament,17.6
-2018,Alberta,National,Members of Parliament,14.7
-2019,Alberta,National,Members of Parliament,14.7
-2020,Alberta,National,Members of Parliament,17.6
-2021,Alberta,National,Members of Parliament,17.6
-2015,Alberta,National,Members of Cabinet,33.3
-2016,Alberta,National,Members of Cabinet,0
-2017,Alberta,National,Members of Cabinet,0
-2018,Alberta,National,Members of Cabinet,0
-2019,Alberta,National,Members of Cabinet,0
-2020,Alberta,National,Members of Cabinet,0
-2021,Alberta,National,Members of Cabinet,0
-2015,British Columbia,National,Members of Parliament,30.6
-2016,British Columbia,National,Members of Parliament,28.6
-2017,British Columbia,National,Members of Parliament,28.6
-2018,British Columbia,National,Members of Parliament,26.2
-2019,British Columbia,National,Members of Parliament,24.4
-2020,British Columbia,National,Members of Parliament,33.3
-2021,British Columbia,National,Members of Parliament,33.3
-2015,British Columbia,National,Members of Cabinet,40
-2016,British Columbia,National,Members of Cabinet,66.7
-2017,British Columbia,National,Members of Cabinet,66.7
-2018,British Columbia,National,Members of Cabinet,66.7
-2019,British Columbia,National,Members of Cabinet,50
-2020,British Columbia,National,Members of Cabinet,50
-2021,British Columbia,National,Members of Cabinet,50
-2015,Yukon,National,Members of Parliament,0
-2016,Yukon,National,Members of Parliament,0
-2017,Yukon,National,Members of Parliament,0
-2018,Yukon,National,Members of Parliament,0
-2019,Yukon,National,Members of Parliament,0
-2020,Yukon,National,Members of Parliament,0
-2021,Yukon,National,Members of Parliament,0
-2015,Yukon,National,Members of Cabinet,0
-2016,Yukon,National,Members of Cabinet,0
-2017,Yukon,National,Members of Cabinet,0
-2018,Yukon,National,Members of Cabinet,0
-2019,Yukon,National,Members of Cabinet,0
-2020,Yukon,National,Members of Cabinet,0
-2021,Yukon,National,Members of Cabinet,0
-2015,Northwest Territories,National,Members of Parliament,0
-2016,Northwest Territories,National,Members of Parliament,0
-2017,Northwest Territories,National,Members of Parliament,0
-2018,Northwest Territories,National,Members of Parliament,0
-2019,Northwest Territories,National,Members of Parliament,0
-2020,Northwest Territories,National,Members of Parliament,0
-2021,Northwest Territories,National,Members of Parliament,0
-2015,Northwest Territories,National,Members of Cabinet,0
-2016,Northwest Territories,National,Members of Cabinet,0
-2017,Northwest Territories,National,Members of Cabinet,0
-2018,Northwest Territories,National,Members of Cabinet,0
-2019,Northwest Territories,National,Members of Cabinet,0
-2020,Northwest Territories,National,Members of Cabinet,0
-2021,Northwest Territories,National,Members of Cabinet,0
-2015,Nunavut,National,Members of Parliament,100
-2016,Nunavut,National,Members of Parliament,0
-2017,Nunavut,National,Members of Parliament,0
-2018,Nunavut,National,Members of Parliament,0
-2019,Nunavut,National,Members of Parliament,0
-2020,Nunavut,National,Members of Parliament,100
-2021,Nunavut,National,Members of Parliament,100
-2015,Nunavut,National,Members of Cabinet,100
-2016,Nunavut,National,Members of Cabinet,0
-2017,Nunavut,National,Members of Cabinet,0
-2018,Nunavut,National,Members of Cabinet,0
-2019,Nunavut,National,Members of Cabinet,0
-2020,Nunavut,National,Members of Cabinet,0
-2021,Nunavut,National,Members of Cabinet,0
-2015,Canada,Local,Chiefs in First Nation communities,19.5
-2015,Canada,Local,First Nations council members,30.5
-2016,Canada,Local,Chiefs in First Nation communities,19.7
-2016,Canada,Local,First Nations council members,30.7
-2017,Canada,Local,Chiefs in First Nation communities,18.8
-2017,Canada,Local,First Nations council members,28.6
-2018,Canada,Local,Chiefs in First Nation communities,20.4
-2018,Canada,Local,First Nations council members,28.2
-2019,Canada,Local,Chiefs in First Nation communities,18.5
-2019,Canada,Local,First Nations council members,27.4
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-5-2.csv b/tests/assets/progress-calculation/data/temp/indicator_5-5-2.csv
deleted file mode 100644
index 72616c11..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_5-5-2.csv
+++ /dev/null
@@ -1,386 +0,0 @@
-Year,Geography,Occupation,Value
-2015,"","",35.1
-2016,"","",34.6
-2017,"","",34.4
-2018,"","",34.8
-2019,"","",35.2
-2020,"","",35.9
-2021,"","",35.6
-2015,Canada,Senior management occupations,31.5
-2015,Canada,Specialized middle management occupations,47.2
-2015,Canada,Middle management occupations in retail and wholesale trade and customer services,41.8
-2015,Canada,"Middle management occupations in trades, transportation, production and utilities",17
-2015,Newfoundland and Labrador,Management occupations,38.9
-2015,Newfoundland and Labrador,Senior management occupations,
-2015,Newfoundland and Labrador,Specialized middle management occupations,48.2
-2015,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,41
-2015,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",17.9
-2015,Prince Edward Island,Management occupations,35.4
-2015,Prince Edward Island,Senior management occupations,
-2015,Prince Edward Island,Specialized middle management occupations,50
-2015,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,44
-2015,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",13.6
-2015,Nova Scotia,Management occupations,37.9
-2015,Nova Scotia,Senior management occupations,
-2015,Nova Scotia,Specialized middle management occupations,47.1
-2015,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,44.6
-2015,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",14.3
-2015,New Brunswick,Management occupations,36.8
-2015,New Brunswick,Senior management occupations,
-2015,New Brunswick,Specialized middle management occupations,45.3
-2015,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,42.9
-2015,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",15.3
-2015,Quebec,Management occupations,33.7
-2015,Quebec,Senior management occupations,36
-2015,Quebec,Specialized middle management occupations,49.2
-2015,Quebec,Middle management occupations in retail and wholesale trade and customer services,35.9
-2015,Quebec,"Middle management occupations in trades, transportation, production and utilities",15.7
-2015,Ontario,Management occupations,36.9
-2015,Ontario,Senior management occupations,28.4
-2015,Ontario,Specialized middle management occupations,48.1
-2015,Ontario,Middle management occupations in retail and wholesale trade and customer services,43.2
-2015,Ontario,"Middle management occupations in trades, transportation, production and utilities",15.3
-2015,Manitoba,Management occupations,31.5
-2015,Manitoba,Senior management occupations,30
-2015,Manitoba,Specialized middle management occupations,47.9
-2015,Manitoba,Middle management occupations in retail and wholesale trade and customer services,39.6
-2015,Manitoba,"Middle management occupations in trades, transportation, production and utilities",17
-2015,Saskatchewan,Management occupations,30.5
-2015,Saskatchewan,Senior management occupations,
-2015,Saskatchewan,Specialized middle management occupations,50.4
-2015,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,45.1
-2015,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",19.6
-2015,Alberta,Management occupations,33.2
-2015,Alberta,Senior management occupations,37.5
-2015,Alberta,Specialized middle management occupations,41.8
-2015,Alberta,Middle management occupations in retail and wholesale trade and customer services,45.6
-2015,Alberta,"Middle management occupations in trades, transportation, production and utilities",19.1
-2015,British Columbia,Management occupations,35.9
-2015,British Columbia,Senior management occupations,28.6
-2015,British Columbia,Specialized middle management occupations,45.2
-2015,British Columbia,Middle management occupations in retail and wholesale trade and customer services,42.9
-2015,British Columbia,"Middle management occupations in trades, transportation, production and utilities",19.2
-2016,Canada,Senior management occupations,36.9
-2016,Canada,Specialized middle management occupations,46.8
-2016,Canada,Middle management occupations in retail and wholesale trade and customer services,40.3
-2016,Canada,"Middle management occupations in trades, transportation, production and utilities",16.7
-2016,Newfoundland and Labrador,Management occupations,37.9
-2016,Newfoundland and Labrador,Senior management occupations,
-2016,Newfoundland and Labrador,Specialized middle management occupations,44.2
-2016,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,40.4
-2016,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",23.3
-2016,Prince Edward Island,Management occupations,33.9
-2016,Prince Edward Island,Senior management occupations,
-2016,Prince Edward Island,Specialized middle management occupations,53.3
-2016,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,47.4
-2016,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",12.5
-2016,Nova Scotia,Management occupations,40.7
-2016,Nova Scotia,Senior management occupations,45.5
-2016,Nova Scotia,Specialized middle management occupations,53.9
-2016,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,45.1
-2016,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",15.5
-2016,New Brunswick,Management occupations,38.5
-2016,New Brunswick,Senior management occupations,
-2016,New Brunswick,Specialized middle management occupations,54.7
-2016,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,41.1
-2016,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",18.1
-2016,Quebec,Management occupations,35.5
-2016,Quebec,Senior management occupations,40.2
-2016,Quebec,Specialized middle management occupations,46.7
-2016,Quebec,Middle management occupations in retail and wholesale trade and customer services,41.6
-2016,Quebec,"Middle management occupations in trades, transportation, production and utilities",16.6
-2016,Ontario,Management occupations,35.1
-2016,Ontario,Senior management occupations,35.7
-2016,Ontario,Specialized middle management occupations,46
-2016,Ontario,Middle management occupations in retail and wholesale trade and customer services,38.7
-2016,Ontario,"Middle management occupations in trades, transportation, production and utilities",15.8
-2016,Manitoba,Management occupations,30
-2016,Manitoba,Senior management occupations,
-2016,Manitoba,Specialized middle management occupations,48.9
-2016,Manitoba,Middle management occupations in retail and wholesale trade and customer services,36.5
-2016,Manitoba,"Middle management occupations in trades, transportation, production and utilities",15.9
-2016,Saskatchewan,Management occupations,31
-2016,Saskatchewan,Senior management occupations,50
-2016,Saskatchewan,Specialized middle management occupations,53.5
-2016,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,43
-2016,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",19.6
-2016,Alberta,Management occupations,32.2
-2016,Alberta,Senior management occupations,38.6
-2016,Alberta,Specialized middle management occupations,43.9
-2016,Alberta,Middle management occupations in retail and wholesale trade and customer services,42.3
-2016,Alberta,"Middle management occupations in trades, transportation, production and utilities",16.3
-2016,British Columbia,Management occupations,34.8
-2016,British Columbia,Senior management occupations,32.8
-2016,British Columbia,Specialized middle management occupations,47.4
-2016,British Columbia,Middle management occupations in retail and wholesale trade and customer services,40
-2016,British Columbia,"Middle management occupations in trades, transportation, production and utilities",18.2
-2017,Canada,Senior management occupations,28.6
-2017,Canada,Specialized middle management occupations,47.4
-2017,Canada,Middle management occupations in retail and wholesale trade and customer services,38.5
-2017,Canada,"Middle management occupations in trades, transportation, production and utilities",17.6
-2017,Newfoundland and Labrador,Management occupations,39.3
-2017,Newfoundland and Labrador,Senior management occupations,
-2017,Newfoundland and Labrador,Specialized middle management occupations,47.9
-2017,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,48.4
-2017,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",17
-2017,Prince Edward Island,Management occupations,37.9
-2017,Prince Edward Island,Senior management occupations,
-2017,Prince Edward Island,Specialized middle management occupations,50
-2017,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,50
-2017,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",13
-2017,Nova Scotia,Management occupations,37.3
-2017,Nova Scotia,Senior management occupations,
-2017,Nova Scotia,Specialized middle management occupations,57.5
-2017,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,35.8
-2017,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",12.6
-2017,New Brunswick,Management occupations,35
-2017,New Brunswick,Senior management occupations,
-2017,New Brunswick,Specialized middle management occupations,46
-2017,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,41.8
-2017,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",12
-2017,Quebec,Management occupations,32.6
-2017,Quebec,Senior management occupations,36.4
-2017,Quebec,Specialized middle management occupations,41.4
-2017,Quebec,Middle management occupations in retail and wholesale trade and customer services,36.5
-2017,Quebec,"Middle management occupations in trades, transportation, production and utilities",18
-2017,Ontario,Management occupations,35.7
-2017,Ontario,Senior management occupations,25.2
-2017,Ontario,Specialized middle management occupations,47.9
-2017,Ontario,Middle management occupations in retail and wholesale trade and customer services,38
-2017,Ontario,"Middle management occupations in trades, transportation, production and utilities",17.6
-2017,Manitoba,Management occupations,29.6
-2017,Manitoba,Senior management occupations,
-2017,Manitoba,Specialized middle management occupations,43.2
-2017,Manitoba,Middle management occupations in retail and wholesale trade and customer services,39.6
-2017,Manitoba,"Middle management occupations in trades, transportation, production and utilities",17
-2017,Saskatchewan,Management occupations,31.5
-2017,Saskatchewan,Senior management occupations,55
-2017,Saskatchewan,Specialized middle management occupations,56.1
-2017,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,39.2
-2017,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",19.5
-2017,Alberta,Management occupations,32.1
-2017,Alberta,Senior management occupations,
-2017,Alberta,Specialized middle management occupations,47
-2017,Alberta,Middle management occupations in retail and wholesale trade and customer services,37.6
-2017,Alberta,"Middle management occupations in trades, transportation, production and utilities",18.2
-2017,British Columbia,Management occupations,36.8
-2017,British Columbia,Senior management occupations,
-2017,British Columbia,Specialized middle management occupations,55.4
-2017,British Columbia,Middle management occupations in retail and wholesale trade and customer services,41.8
-2017,British Columbia,"Middle management occupations in trades, transportation, production and utilities",17
-2018,Canada,Senior management occupations,32
-2018,Canada,Specialized middle management occupations,48.3
-2018,Canada,Middle management occupations in retail and wholesale trade and customer services,38.3
-2018,Canada,"Middle management occupations in trades, transportation, production and utilities",18
-2018,Newfoundland and Labrador,Management occupations,45.1
-2018,Newfoundland and Labrador,Senior management occupations,
-2018,Newfoundland and Labrador,Specialized middle management occupations,55.6
-2018,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,53.4
-2018,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",14.7
-2018,Prince Edward Island,Management occupations,35.4
-2018,Prince Edward Island,Senior management occupations,
-2018,Prince Edward Island,Specialized middle management occupations,53.3
-2018,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,45.5
-2018,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",14.3
-2018,Nova Scotia,Management occupations,39.9
-2018,Nova Scotia,Senior management occupations,
-2018,Nova Scotia,Specialized middle management occupations,55.9
-2018,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,46.1
-2018,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",16.5
-2018,New Brunswick,Management occupations,35.4
-2018,New Brunswick,Senior management occupations,
-2018,New Brunswick,Specialized middle management occupations,49.3
-2018,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,38
-2018,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",14.9
-2018,Quebec,Management occupations,36.1
-2018,Quebec,Senior management occupations,36.8
-2018,Quebec,Specialized middle management occupations,52
-2018,Quebec,Middle management occupations in retail and wholesale trade and customer services,36
-2018,Quebec,"Middle management occupations in trades, transportation, production and utilities",19.5
-2018,Ontario,Management occupations,35.5
-2018,Ontario,Senior management occupations,31.5
-2018,Ontario,Specialized middle management occupations,47.6
-2018,Ontario,Middle management occupations in retail and wholesale trade and customer services,37.4
-2018,Ontario,"Middle management occupations in trades, transportation, production and utilities",16.2
-2018,Manitoba,Management occupations,31.6
-2018,Manitoba,Senior management occupations,
-2018,Manitoba,Specialized middle management occupations,50.7
-2018,Manitoba,Middle management occupations in retail and wholesale trade and customer services,41.3
-2018,Manitoba,"Middle management occupations in trades, transportation, production and utilities",16
-2018,Saskatchewan,Management occupations,31.3
-2018,Saskatchewan,Senior management occupations,
-2018,Saskatchewan,Specialized middle management occupations,56.3
-2018,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,41.3
-2018,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",19.5
-2018,Alberta,Management occupations,32.1
-2018,Alberta,Senior management occupations,40.9
-2018,Alberta,Specialized middle management occupations,40.8
-2018,Alberta,Middle management occupations in retail and wholesale trade and customer services,40.7
-2018,Alberta,"Middle management occupations in trades, transportation, production and utilities",20.5
-2018,British Columbia,Management occupations,33.8
-2018,British Columbia,Senior management occupations,
-2018,British Columbia,Specialized middle management occupations,46.9
-2018,British Columbia,Middle management occupations in retail and wholesale trade and customer services,38.7
-2018,British Columbia,"Middle management occupations in trades, transportation, production and utilities",17.7
-2019,Canada,Senior management occupations,31.6
-2019,Canada,Specialized middle management occupations,51.3
-2019,Canada,Middle management occupations in retail and wholesale trade and customer services,39.2
-2019,Canada,"Middle management occupations in trades, transportation, production and utilities",16
-2019,Newfoundland and Labrador,Management occupations,36
-2019,Newfoundland and Labrador,Senior management occupations,
-2019,Newfoundland and Labrador,Specialized middle management occupations,50
-2019,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,41.2
-2019,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",
-2019,Prince Edward Island,Management occupations,35
-2019,Prince Edward Island,Senior management occupations,
-2019,Prince Edward Island,Specialized middle management occupations,46.2
-2019,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,50
-2019,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",23.1
-2019,Nova Scotia,Management occupations,39.2
-2019,Nova Scotia,Senior management occupations,
-2019,Nova Scotia,Specialized middle management occupations,56.1
-2019,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,42.5
-2019,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",16.5
-2019,New Brunswick,Management occupations,38
-2019,New Brunswick,Senior management occupations,
-2019,New Brunswick,Specialized middle management occupations,53.2
-2019,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,41.7
-2019,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",16.9
-2019,Quebec,Management occupations,35.8
-2019,Quebec,Senior management occupations,45.4
-2019,Quebec,Specialized middle management occupations,49.3
-2019,Quebec,Middle management occupations in retail and wholesale trade and customer services,38.6
-2019,Quebec,"Middle management occupations in trades, transportation, production and utilities",16.8
-2019,Ontario,Management occupations,36.2
-2019,Ontario,Senior management occupations,28.8
-2019,Ontario,Specialized middle management occupations,52.3
-2019,Ontario,Middle management occupations in retail and wholesale trade and customer services,38.9
-2019,Ontario,"Middle management occupations in trades, transportation, production and utilities",14.5
-2019,Manitoba,Management occupations,30.4
-2019,Manitoba,Senior management occupations,
-2019,Manitoba,Specialized middle management occupations,47.3
-2019,Manitoba,Middle management occupations in retail and wholesale trade and customer services,43.6
-2019,Manitoba,"Middle management occupations in trades, transportation, production and utilities",14.7
-2019,Saskatchewan,Management occupations,29.4
-2019,Saskatchewan,Senior management occupations,50
-2019,Saskatchewan,Specialized middle management occupations,51.1
-2019,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,36.8
-2019,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",18.7
-2019,Alberta,Management occupations,32.4
-2019,Alberta,Senior management occupations,28
-2019,Alberta,Specialized middle management occupations,52.7
-2019,Alberta,Middle management occupations in retail and wholesale trade and customer services,37.6
-2019,Alberta,"Middle management occupations in trades, transportation, production and utilities",16.1
-2019,British Columbia,Management occupations,35.6
-2019,British Columbia,Senior management occupations,
-2019,British Columbia,Specialized middle management occupations,49.8
-2019,British Columbia,Middle management occupations in retail and wholesale trade and customer services,40.3
-2019,British Columbia,"Middle management occupations in trades, transportation, production and utilities",17.9
-2020,Canada,Senior management occupations,28.6
-2020,Canada,Specialized middle management occupations,49.3
-2020,Canada,Middle management occupations in retail and wholesale trade and customer services,39.6
-2020,Canada,"Middle management occupations in trades, transportation, production and utilities",17.6
-2020,Newfoundland and Labrador,Management occupations,38.5
-2020,Newfoundland and Labrador,Senior management occupations,
-2020,Newfoundland and Labrador,Specialized middle management occupations,54.5
-2020,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,43.1
-2020,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",
-2020,Prince Edward Island,Management occupations,37.7
-2020,Prince Edward Island,Senior management occupations,
-2020,Prince Edward Island,Specialized middle management occupations,62.5
-2020,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,54.5
-2020,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",16.7
-2020,Nova Scotia,Management occupations,40.3
-2020,Nova Scotia,Senior management occupations,42.9
-2020,Nova Scotia,Specialized middle management occupations,54
-2020,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,46.8
-2020,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",17.6
-2020,New Brunswick,Management occupations,34.1
-2020,New Brunswick,Senior management occupations,
-2020,New Brunswick,Specialized middle management occupations,51.8
-2020,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,36.4
-2020,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",10.5
-2020,Quebec,Management occupations,36.2
-2020,Quebec,Senior management occupations,42.7
-2020,Quebec,Specialized middle management occupations,51.5
-2020,Quebec,Middle management occupations in retail and wholesale trade and customer services,35.1
-2020,Quebec,"Middle management occupations in trades, transportation, production and utilities",17.4
-2020,Ontario,Management occupations,36.1
-2020,Ontario,Senior management occupations,22.4
-2020,Ontario,Specialized middle management occupations,47.4
-2020,Ontario,Middle management occupations in retail and wholesale trade and customer services,40.4
-2020,Ontario,"Middle management occupations in trades, transportation, production and utilities",16.5
-2020,Manitoba,Management occupations,30.6
-2020,Manitoba,Senior management occupations,46.7
-2020,Manitoba,Specialized middle management occupations,47.3
-2020,Manitoba,Middle management occupations in retail and wholesale trade and customer services,40.2
-2020,Manitoba,"Middle management occupations in trades, transportation, production and utilities",16.4
-2020,Saskatchewan,Management occupations,32.7
-2020,Saskatchewan,Senior management occupations,50
-2020,Saskatchewan,Specialized middle management occupations,54.9
-2020,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,41
-2020,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",19.5
-2020,Alberta,Management occupations,33.2
-2020,Alberta,Senior management occupations,
-2020,Alberta,Specialized middle management occupations,49.1
-2020,Alberta,Middle management occupations in retail and wholesale trade and customer services,36.4
-2020,Alberta,"Middle management occupations in trades, transportation, production and utilities",20.2
-2020,British Columbia,Management occupations,38.6
-2020,British Columbia,Senior management occupations,32.2
-2020,British Columbia,Specialized middle management occupations,50.4
-2020,British Columbia,Middle management occupations in retail and wholesale trade and customer services,43.4
-2020,British Columbia,"Middle management occupations in trades, transportation, production and utilities",18.7
-2021,Canada,Senior management occupations,30.9
-2021,Canada,Specialized middle management occupations,49.1
-2021,Canada,Middle management occupations in retail and wholesale trade and customer services,40
-2021,Canada,"Middle management occupations in trades, transportation, production and utilities",17
-2021,Newfoundland and Labrador,Management occupations,36.2
-2021,Newfoundland and Labrador,Senior management occupations,
-2021,Newfoundland and Labrador,Specialized middle management occupations,45.5
-2021,Newfoundland and Labrador,Middle management occupations in retail and wholesale trade and customer services,37.3
-2021,Newfoundland and Labrador,"Middle management occupations in trades, transportation, production and utilities",
-2021,Prince Edward Island,Management occupations,35.3
-2021,Prince Edward Island,Senior management occupations,
-2021,Prince Edward Island,Specialized middle management occupations,50
-2021,Prince Edward Island,Middle management occupations in retail and wholesale trade and customer services,45.8
-2021,Prince Edward Island,"Middle management occupations in trades, transportation, production and utilities",16
-2021,Nova Scotia,Management occupations,45.7
-2021,Nova Scotia,Senior management occupations,
-2021,Nova Scotia,Specialized middle management occupations,55.9
-2021,Nova Scotia,Middle management occupations in retail and wholesale trade and customer services,52.8
-2021,Nova Scotia,"Middle management occupations in trades, transportation, production and utilities",22
-2021,New Brunswick,Management occupations,35.2
-2021,New Brunswick,Senior management occupations,
-2021,New Brunswick,Specialized middle management occupations,52.1
-2021,New Brunswick,Middle management occupations in retail and wholesale trade and customer services,36.5
-2021,New Brunswick,"Middle management occupations in trades, transportation, production and utilities",11
-2021,Quebec,Management occupations,35.9
-2021,Quebec,Senior management occupations,34.7
-2021,Quebec,Specialized middle management occupations,51.6
-2021,Quebec,Middle management occupations in retail and wholesale trade and customer services,36.1
-2021,Quebec,"Middle management occupations in trades, transportation, production and utilities",17.4
-2021,Ontario,Management occupations,36.5
-2021,Ontario,Senior management occupations,29
-2021,Ontario,Specialized middle management occupations,48.6
-2021,Ontario,Middle management occupations in retail and wholesale trade and customer services,39.5
-2021,Ontario,"Middle management occupations in trades, transportation, production and utilities",17.8
-2021,Manitoba,Management occupations,32.9
-2021,Manitoba,Senior management occupations,27.8
-2021,Manitoba,Specialized middle management occupations,50.6
-2021,Manitoba,Middle management occupations in retail and wholesale trade and customer services,40
-2021,Manitoba,"Middle management occupations in trades, transportation, production and utilities",18.8
-2021,Saskatchewan,Management occupations,29.9
-2021,Saskatchewan,Senior management occupations,
-2021,Saskatchewan,Specialized middle management occupations,49.6
-2021,Saskatchewan,Middle management occupations in retail and wholesale trade and customer services,38.1
-2021,Saskatchewan,"Middle management occupations in trades, transportation, production and utilities",17.6
-2021,Alberta,Management occupations,34.4
-2021,Alberta,Senior management occupations,39.3
-2021,Alberta,Specialized middle management occupations,50.3
-2021,Alberta,Middle management occupations in retail and wholesale trade and customer services,41.7
-2021,Alberta,"Middle management occupations in trades, transportation, production and utilities",15.3
-2021,British Columbia,Management occupations,34.2
-2021,British Columbia,Senior management occupations,22.9
-2021,British Columbia,Specialized middle management occupations,43.2
-2021,British Columbia,Middle management occupations in retail and wholesale trade and customer services,44
-2021,British Columbia,"Middle management occupations in trades, transportation, production and utilities",15.3
diff --git a/tests/assets/progress-calculation/data/temp/indicator_5-b-1.csv b/tests/assets/progress-calculation/data/temp/indicator_5-b-1.csv
deleted file mode 100644
index 729efc20..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_5-b-1.csv
+++ /dev/null
@@ -1,53 +0,0 @@
-Year,Geography,GeoCode,Value
-2015,,NA,86.1
-2015,Atlantic Region,NA,83.8
-2015,Newfoundland and Labrador,10,86.4
-2015,Prince Edward Island,11,83.8
-2015,Nova Scotia,12,83.2
-2015,New Brunswick,13,82.8
-2015,Quebec,24,79
-2015,Ontario,35,88.1
-2015,Prairie Region,NA,91.4
-2015,Manitoba,46,85.1
-2015,Saskatchewan,47,91.1
-2015,Alberta,48,93.4
-2015,British Columbia,59,88.5
-2016,,NA,87.9
-2016,Atlantic Region,NA,85.6
-2016,Newfoundland and Labrador,10,87.6
-2016,Prince Edward Island,11,85
-2016,Nova Scotia,12,86.8
-2016,New Brunswick,13,82.8
-2016,Quebec,24,82
-2016,Ontario,35,90.2
-2016,Prairie Region,NA,91.1
-2016,Manitoba,46,86
-2016,Saskatchewan,47,90.5
-2016,Alberta,48,92.9
-2016,British Columbia,59,89.7
-2017,,NA,89.4
-2017,Atlantic Region,NA,87.7
-2017,Newfoundland and Labrador,10,88.7
-2017,Prince Edward Island,11,87
-2017,Nova Scotia,12,87.3
-2017,New Brunswick,13,87.6
-2017,Quebec,24,84.5
-2017,Ontario,35,90.6
-2017,Prairie Region,NA,93
-2017,Manitoba,46,90.2
-2017,Saskatchewan,47,93.4
-2017,Alberta,48,93.7
-2017,British Columbia,59,91.8
-2019,,NA,91.3
-2019,Atlantic Region,NA,90.1
-2019,Newfoundland and Labrador,10,90.3
-2019,Prince Edward Island,11,90.2
-2019,Nova Scotia,12,90.6
-2019,New Brunswick,13,89.2
-2019,Quebec,24,87.6
-2019,Ontario,35,91.8
-2019,Prairie Region,NA,94.7
-2019,Manitoba,46,91.2
-2019,Saskatchewan,47,93.9
-2019,Alberta,48,96.1
-2019,British Columbia,59,92.9
diff --git a/tests/assets/progress-calculation/data/temp/indicator_6-1-1.csv b/tests/assets/progress-calculation/data/temp/indicator_6-1-1.csv
deleted file mode 100644
index 7b04462b..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_6-1-1.csv
+++ /dev/null
@@ -1,22 +0,0 @@
-Year,Value
-2000,98.17
-2001,98.18
-2002,98.18
-2003,98.18
-2004,98.18
-2005,98.24
-2006,98.30
-2007,98.36
-2008,98.42
-2009,98.48
-2010,98.54
-2011,98.60
-2012,98.65
-2013,98.71
-2014,98.76
-2015,98.82
-2016,98.87
-2017,98.93
-2018,98.98
-2019,99.04
-2020,99.04
diff --git a/tests/assets/progress-calculation/data/temp/indicator_7-2-1.csv b/tests/assets/progress-calculation/data/temp/indicator_7-2-1.csv
deleted file mode 100644
index c4497154..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_7-2-1.csv
+++ /dev/null
@@ -1,2 +0,0 @@
-Year,Value
-2018,16.3
diff --git a/tests/assets/progress-calculation/data/temp/indicator_7-3-1.csv b/tests/assets/progress-calculation/data/temp/indicator_7-3-1.csv
deleted file mode 100644
index e28fa63c..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_7-3-1.csv
+++ /dev/null
@@ -1,6 +0,0 @@
-Year,Value
-2015,6.441310972258255
-2016,6.1914493713636825
-2017,6.163151365418677
-2018,6.1738575817360735
-2019,6.075555474999031
diff --git a/tests/assets/progress-calculation/data/temp/indicator_8-10-1.csv b/tests/assets/progress-calculation/data/temp/indicator_8-10-1.csv
deleted file mode 100644
index dfb76bb4..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_8-10-1.csv
+++ /dev/null
@@ -1,11 +0,0 @@
-Year,Units,Value
-2016,"Number of commercial bank branches per 100,000 adults",22.25
-2017,"Number of commercial bank branches per 100,000 adults",20.75
-2018,"Number of commercial bank branches per 100,000 adults",20.13
-2019,"Number of commercial bank branches per 100,000 adults",19.73
-2020,"Number of commercial bank branches per 100,000 adults",20.17
-2016,"Number of automated teller machines (ATMs) per 100,000 adults",223.89
-2017,"Number of automated teller machines (ATMs) per 100,000 adults",228.42
-2018,"Number of automated teller machines (ATMs) per 100,000 adults",219.96
-2019,"Number of automated teller machines (ATMs) per 100,000 adults",214.12
-2020,"Number of automated teller machines (ATMs) per 100,000 adults",210.23
diff --git a/tests/assets/progress-calculation/data/temp/indicator_8-8-1.csv b/tests/assets/progress-calculation/data/temp/indicator_8-8-1.csv
deleted file mode 100644
index df51a751..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_8-8-1.csv
+++ /dev/null
@@ -1,19 +0,0 @@
-Year,Units,Sex,Value
-2017,"Number of fatality claims, by sex",Male,920
-2017,"Number of fatality claims, by sex",Female,31
-2017,"Number of fatality claims, by sex",Unknown,0
-2018,"Number of fatality claims, by sex",Male,997
-2018,"Number of fatality claims, by sex",Female,30
-2018,"Number of fatality claims, by sex",Unknown,0
-2019,"Number of fatality claims, by sex",Male,882
-2019,"Number of fatality claims, by sex",Female,43
-2019,"Number of fatality claims, by sex",Unknown,0
-2017,"Number of lost time claims, by sex",Male,152240
-2017,"Number of lost time claims, by sex",Female,99319
-2017,"Number of lost time claims, by sex",Unknown,66
-2018,"Number of lost time claims, by sex",Male,158969
-2018,"Number of lost time claims, by sex",Female,105443
-2018,"Number of lost time claims, by sex",Unknown,26
-2019,"Number of lost time claims, by sex",Male,160801
-2019,"Number of lost time claims, by sex",Female,110948
-2019,"Number of lost time claims, by sex",Unknown,57
diff --git a/tests/assets/progress-calculation/data/temp/indicator_9-2-2.csv b/tests/assets/progress-calculation/data/temp/indicator_9-2-2.csv
deleted file mode 100644
index e48e4af1..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_9-2-2.csv
+++ /dev/null
@@ -1,9775 +0,0 @@
-Year,Geography,Type of employee,Industry,GeoCode,Value
-2015,"","","",,9.49
-2016,"","","",,9.28
-2017,"","","",,9.27
-2018,"","","",,9.33
-2019,"","","",,9.31
-2020,"","","",,9.33
-2015,Canada,All employees,Non-durable goods,,3.85
-2015,Canada,All employees,Food manufacturing,,1.42
-2015,Canada,All employees,Animal food manufacturing,,0.06
-2015,Canada,All employees,Grain and oilseed milling,,0.05
-2015,Canada,All employees,Sugar and confectionery product manufacturing,,0.07
-2015,Canada,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.11
-2015,Canada,All employees,Dairy product manufacturing,,0.15
-2015,Canada,All employees,Meat product manufacturing,,0.36
-2015,Canada,All employees,Seafood product preparation and packaging,,0.15
-2015,Canada,All employees,Bakeries and tortilla manufacturing,,0.28
-2015,Canada,All employees,Other food manufacturing,,0.2
-2015,Canada,All employees,Beverage and tobacco product manufacturing,,0.22
-2015,Canada,All employees,Beverage manufacturing,,0.2
-2015,Canada,All employees,Tobacco manufacturing,,0.02
-2015,Canada,All employees,Cannabis product manufacturing,,
-2015,Canada,All employees,Textile mills,,0.05
-2015,Canada,All employees,"Fibre, yarn and thread mills",,0.01
-2015,Canada,All employees,Fabric mills,,0.03
-2015,Canada,All employees,Textile and fabric finishing and fabric coating,,0.01
-2015,Canada,All employees,Textile product mills,,0.06
-2015,Canada,All employees,Textile furnishings mills,,0.02
-2015,Canada,All employees,Other textile product mills,,0.04
-2015,Canada,All employees,Clothing manufacturing,,0.13
-2015,Canada,All employees,Clothing knitting mills,,0.01
-2015,Canada,All employees,Cut and sew clothing manufacturing,,0.1
-2015,Canada,All employees,Clothing accessories and other clothing manufacturing,,0.01
-2015,Canada,All employees,Leather and allied product manufacturing,,0.02
-2015,Canada,All employees,Leather and hide tanning and finishing,,0
-2015,Canada,All employees,Footwear manufacturing,,0.01
-2015,Canada,All employees,Other leather and allied product manufacturing,,0.01
-2015,Canada,All employees,Paper manufacturing,,0.35
-2015,Canada,All employees,"Pulp, paper and paperboard mills",,0.17
-2015,Canada,All employees,Converted paper product manufacturing,,0.18
-2015,Canada,All employees,Printing and related support activities,,0.31
-2015,Canada,All employees,Petroleum and coal product manufacturing,,0.12
-2015,Canada,All employees,Chemical manufacturing,,0.56
-2015,Canada,All employees,Basic chemical manufacturing,,0.08
-2015,Canada,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.04
-2015,Canada,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
-2015,Canada,All employees,Pharmaceutical and medicine manufacturing,,0.17
-2015,Canada,All employees,"Paint, coating and adhesive manufacturing",,0.05
-2015,Canada,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.1
-2015,Canada,All employees,Other chemical product manufacturing,,0.07
-2015,Canada,All employees,Plastics and rubber products manufacturing,,0.61
-2015,Canada,All employees,Plastic product manufacturing,,0.51
-2015,Canada,All employees,Rubber product manufacturing,,0.1
-2015,Canada,All employees,Durable goods,,5.64
-2015,Canada,All employees,Wood product manufacturing,,0.58
-2015,Canada,All employees,Sawmills and wood preservation,,0.23
-2015,Canada,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.11
-2015,Canada,All employees,Other wood product manufacturing,,0.24
-2015,Canada,All employees,Non-metallic mineral product manufacturing,,0.33
-2015,Canada,All employees,Clay product and refractory manufacturing,,0.01
-2015,Canada,All employees,Glass and glass product manufacturing,,0.05
-2015,Canada,All employees,Cement and concrete product manufacturing,,0.2
-2015,Canada,All employees,Lime and gypsum product manufacturing,,0.01
-2015,Canada,All employees,Other non-metallic mineral product manufacturing,,0.06
-2015,Canada,All employees,Primary metal manufacturing,,0.36
-2015,Canada,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.11
-2015,Canada,All employees,Steel product manufacturing from purchased steel,,0.05
-2015,Canada,All employees,Alumina and aluminum production and processing,,0.06
-2015,Canada,All employees,Non-ferrous metal (except aluminum) production and processing,,0.09
-2015,Canada,All employees,Foundries,,0.06
-2015,Canada,All employees,Fabricated metal product manufacturing,,0.98
-2015,Canada,All employees,Forging and stamping,,0.04
-2015,Canada,All employees,Cutlery and hand tool manufacturing,,0.02
-2015,Canada,All employees,Architectural and structural metals manufacturing,,0.38
-2015,Canada,All employees,"Boiler, tank and shipping container manufacturing",,0.08
-2015,Canada,All employees,Hardware manufacturing,,0.03
-2015,Canada,All employees,Spring and wire product manufacturing,,0.03
-2015,Canada,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.21
-2015,Canada,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2015,Canada,All employees,Other fabricated metal product manufacturing,,0.12
-2015,Canada,All employees,Machinery manufacturing,,0.84
-2015,Canada,All employees,"Agricultural, construction and mining machinery manufacturing",,0.2
-2015,Canada,All employees,Industrial machinery manufacturing,,0.09
-2015,Canada,All employees,Commercial and service industry machinery manufacturing,,0.09
-2015,Canada,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.09
-2015,Canada,All employees,Metalworking machinery manufacturing,,0.13
-2015,Canada,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.05
-2015,Canada,All employees,Other general-purpose machinery manufacturing,,0.19
-2015,Canada,All employees,Computer and electronic product manufacturing,,0.35
-2015,Canada,All employees,Computer and peripheral equipment manufacturing,,0.03
-2015,Canada,All employees,Communications equipment manufacturing,,0.09
-2015,Canada,All employees,Audio and video equipment manufacturing,,0.01
-2015,Canada,All employees,Semiconductor and other electronic component manufacturing,,0.08
-2015,Canada,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.13
-2015,Canada,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
-2015,Canada,All employees,"Electrical equipment, appliance and component manufacturing",,0.21
-2015,Canada,All employees,Electric lighting equipment manufacturing,,0.03
-2015,Canada,All employees,Household appliance manufacturing,,0.01
-2015,Canada,All employees,Electrical equipment manufacturing,,0.1
-2015,Canada,All employees,Other electrical equipment and component manufacturing,,0.07
-2015,Canada,All employees,Transportation equipment manufacturing,,1.21
-2015,Canada,All employees,Motor vehicle manufacturing,,0.26
-2015,Canada,All employees,Motor vehicle body and trailer manufacturing,,0.08
-2015,Canada,All employees,Motor vehicle parts manufacturing,,0.45
-2015,Canada,All employees,Aerospace product and parts manufacturing,,0.3
-2015,Canada,All employees,Railroad rolling stock manufacturing,,0.03
-2015,Canada,All employees,Ship and boat building,,0.04
-2015,Canada,All employees,Other transportation equipment manufacturing,,0.05
-2015,Canada,All employees,Furniture and related product manufacturing,,0.4
-2015,Canada,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.25
-2015,Canada,All employees,Office furniture (including fixtures) manufacturing,,0.13
-2015,Canada,All employees,Other furniture-related product manufacturing,,0.03
-2015,Canada,All employees,Miscellaneous manufacturing,,0.36
-2015,Canada,All employees,Medical equipment and supplies manufacturing,,0.11
-2015,Canada,All employees,Other miscellaneous manufacturing,,0.25
-2015,Canada,Salaried employees paid a fixed salary,Manufacturing,,2.61
-2015,Canada,Salaried employees paid a fixed salary,Non-durable goods,,1.15
-2015,Canada,Salaried employees paid a fixed salary,Food manufacturing,,0.27
-2015,Canada,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2015,Canada,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,0.02
-2015,Canada,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,0.03
-2015,Canada,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.05
-2015,Canada,Salaried employees paid a fixed salary,Other food manufacturing,,0.06
-2015,Canada,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Beverage manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Tobacco manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Textile mills,,0.01
-2015,Canada,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2015,Canada,Salaried employees paid a fixed salary,Fabric mills,,0.01
-2015,Canada,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
-2015,Canada,Salaried employees paid a fixed salary,Textile product mills,,
-2015,Canada,Salaried employees paid a fixed salary,Clothing manufacturing,,0.03
-2015,Canada,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
-2015,Canada,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2015,Canada,Salaried employees paid a fixed salary,Footwear manufacturing,,0
-2015,Canada,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,0
-2015,Canada,Salaried employees paid a fixed salary,Paper manufacturing,,0.11
-2015,Canada,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2015,Canada,Salaried employees paid a fixed salary,Printing and related support activities,,0.08
-2015,Canada,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Chemical manufacturing,,0.31
-2015,Canada,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2015,Canada,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2015,Canada,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,0.04
-2015,Canada,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Durable goods,,1.46
-2015,Canada,Salaried employees paid a fixed salary,Wood product manufacturing,,0.08
-2015,Canada,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.03
-2015,Canada,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,0.02
-2015,Canada,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.03
-2015,Canada,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.07
-2015,Canada,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,0.04
-2015,Canada,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.13
-2015,Canada,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2015,Canada,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2015,Canada,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2015,Canada,Salaried employees paid a fixed salary,Foundries,,0.01
-2015,Canada,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.18
-2015,Canada,Salaried employees paid a fixed salary,Forging and stamping,,
-2015,Canada,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.07
-2015,Canada,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,0.02
-2015,Canada,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2015,Canada,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,0.01
-2015,Canada,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,0.03
-2015,Canada,Salaried employees paid a fixed salary,Machinery manufacturing,,0.28
-2015,Canada,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,0.06
-2015,Canada,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,0.03
-2015,Canada,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2015,Canada,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,0.04
-2015,Canada,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2015,Canada,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.21
-2015,Canada,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Communications equipment manufacturing,,0.06
-2015,Canada,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,0.04
-2015,Canada,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Canada,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2015,Canada,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Ship and boat building,,
-2015,Canada,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.03
-2015,Canada,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.02
-2015,Canada,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.15
-2015,Canada,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2015,Canada,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.09
-2015,Canada,Employees paid by the hour,Manufacturing,,6.44
-2015,Canada,Employees paid by the hour,Non-durable goods,,2.56
-2015,Canada,Employees paid by the hour,Food manufacturing,,1.1
-2015,Canada,Employees paid by the hour,Animal food manufacturing,,
-2015,Canada,Employees paid by the hour,Grain and oilseed milling,,
-2015,Canada,Employees paid by the hour,Sugar and confectionery product manufacturing,,
-2015,Canada,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,0.09
-2015,Canada,Employees paid by the hour,Dairy product manufacturing,,
-2015,Canada,Employees paid by the hour,Meat product manufacturing,,
-2015,Canada,Employees paid by the hour,Seafood product preparation and packaging,,0.11
-2015,Canada,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.22
-2015,Canada,Employees paid by the hour,Other food manufacturing,,0.13
-2015,Canada,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2015,Canada,Employees paid by the hour,Beverage manufacturing,,
-2015,Canada,Employees paid by the hour,Tobacco manufacturing,,
-2015,Canada,Employees paid by the hour,Cannabis product manufacturing,,
-2015,Canada,Employees paid by the hour,Textile mills,,0.03
-2015,Canada,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2015,Canada,Employees paid by the hour,Fabric mills,,0.02
-2015,Canada,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
-2015,Canada,Employees paid by the hour,Textile product mills,,0.04
-2015,Canada,Employees paid by the hour,Clothing manufacturing,,0.08
-2015,Canada,Employees paid by the hour,Cut and sew clothing manufacturing,,0.06
-2015,Canada,Employees paid by the hour,Leather and allied product manufacturing,,0.02
-2015,Canada,Employees paid by the hour,Leather and hide tanning and finishing,,
-2015,Canada,Employees paid by the hour,Footwear manufacturing,,0.01
-2015,Canada,Employees paid by the hour,Other leather and allied product manufacturing,,0.01
-2015,Canada,Employees paid by the hour,Paper manufacturing,,0.24
-2015,Canada,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2015,Canada,Employees paid by the hour,Printing and related support activities,,0.21
-2015,Canada,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2015,Canada,Employees paid by the hour,Chemical manufacturing,,0.23
-2015,Canada,Employees paid by the hour,Basic chemical manufacturing,,
-2015,Canada,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2015,Canada,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2015,Canada,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2015,Canada,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,0.05
-2015,Canada,Employees paid by the hour,Other chemical product manufacturing,,
-2015,Canada,Employees paid by the hour,Rubber product manufacturing,,
-2015,Canada,Employees paid by the hour,Durable goods,,3.88
-2015,Canada,Employees paid by the hour,Wood product manufacturing,,0.46
-2015,Canada,Employees paid by the hour,Sawmills and wood preservation,,0.19
-2015,Canada,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.09
-2015,Canada,Employees paid by the hour,Other wood product manufacturing,,0.19
-2015,Canada,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.24
-2015,Canada,Employees paid by the hour,Clay product and refractory manufacturing,,
-2015,Canada,Employees paid by the hour,Glass and glass product manufacturing,,
-2015,Canada,Employees paid by the hour,Cement and concrete product manufacturing,,0.15
-2015,Canada,Employees paid by the hour,Lime and gypsum product manufacturing,,
-2015,Canada,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2015,Canada,Employees paid by the hour,Primary metal manufacturing,,0.22
-2015,Canada,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2015,Canada,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2015,Canada,Employees paid by the hour,Alumina and aluminum production and processing,,
-2015,Canada,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2015,Canada,Employees paid by the hour,Foundries,,0.04
-2015,Canada,Employees paid by the hour,Fabricated metal product manufacturing,,0.72
-2015,Canada,Employees paid by the hour,Forging and stamping,,
-2015,Canada,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2015,Canada,Employees paid by the hour,Architectural and structural metals manufacturing,,0.29
-2015,Canada,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,0.06
-2015,Canada,Employees paid by the hour,Hardware manufacturing,,
-2015,Canada,Employees paid by the hour,Spring and wire product manufacturing,,
-2015,Canada,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2015,Canada,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,0.05
-2015,Canada,Employees paid by the hour,Other fabricated metal product manufacturing,,0.09
-2015,Canada,Employees paid by the hour,Machinery manufacturing,,0.53
-2015,Canada,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,0.14
-2015,Canada,Employees paid by the hour,Industrial machinery manufacturing,,0.05
-2015,Canada,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2015,Canada,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2015,Canada,Employees paid by the hour,Metalworking machinery manufacturing,,0.09
-2015,Canada,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2015,Canada,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2015,Canada,Employees paid by the hour,Computer and electronic product manufacturing,,0.13
-2015,Canada,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
-2015,Canada,Employees paid by the hour,Communications equipment manufacturing,,0.03
-2015,Canada,Employees paid by the hour,Audio and video equipment manufacturing,,
-2015,Canada,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,0.04
-2015,Canada,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Canada,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2015,Canada,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2015,Canada,Employees paid by the hour,Household appliance manufacturing,,
-2015,Canada,Employees paid by the hour,Electrical equipment manufacturing,,
-2015,Canada,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2015,Canada,Employees paid by the hour,Transportation equipment manufacturing,,
-2015,Canada,Employees paid by the hour,Motor vehicle manufacturing,,
-2015,Canada,Employees paid by the hour,Motor vehicle parts manufacturing,,
-2015,Canada,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2015,Canada,Employees paid by the hour,Ship and boat building,,0.04
-2015,Canada,Employees paid by the hour,Other transportation equipment manufacturing,,
-2015,Canada,Employees paid by the hour,Furniture and related product manufacturing,,0.34
-2015,Canada,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
-2015,Canada,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2015,Canada,Employees paid by the hour,Other furniture-related product manufacturing,,
-2015,Canada,Employees paid by the hour,Miscellaneous manufacturing,,0.18
-2015,Canada,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2015,Canada,Employees paid by the hour,Other miscellaneous manufacturing,,0.13
-2015,Newfoundland and Labrador,All employees,Manufacturing,10,5.86
-2015,Newfoundland and Labrador,All employees,Non-durable goods,,4.39
-2015,Newfoundland and Labrador,All employees,Food manufacturing,,3.44
-2015,Newfoundland and Labrador,All employees,Seafood product preparation and packaging,,2.89
-2015,Newfoundland and Labrador,All employees,Cannabis product manufacturing,,
-2015,Newfoundland and Labrador,All employees,Durable goods,,1.47
-2015,Newfoundland and Labrador,All employees,Sawmills and wood preservation,,
-2015,Newfoundland and Labrador,All employees,Ship and boat building,,0.2
-2015,Newfoundland and Labrador,All employees,Other miscellaneous manufacturing,,0.06
-2015,Newfoundland and Labrador,Salaried employees paid a fixed salary,Manufacturing,,
-2015,Newfoundland and Labrador,Salaried employees paid a fixed salary,Non-durable goods,,
-2015,Newfoundland and Labrador,Salaried employees paid a fixed salary,Food manufacturing,,
-2015,Newfoundland and Labrador,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,Newfoundland and Labrador,Salaried employees paid a fixed salary,Durable goods,,
-2015,Newfoundland and Labrador,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2015,Newfoundland and Labrador,Employees paid by the hour,Manufacturing,,
-2015,Newfoundland and Labrador,Employees paid by the hour,Non-durable goods,,
-2015,Newfoundland and Labrador,Employees paid by the hour,Food manufacturing,,
-2015,Newfoundland and Labrador,Employees paid by the hour,Cannabis product manufacturing,,
-2015,Newfoundland and Labrador,Employees paid by the hour,Durable goods,,
-2015,Newfoundland and Labrador,Employees paid by the hour,Other miscellaneous manufacturing,,
-2015,Prince Edward Island,All employees,Manufacturing,11,7.67
-2015,Prince Edward Island,All employees,Non-durable goods,,5.03
-2015,Prince Edward Island,All employees,Food manufacturing,,3.59
-2015,Prince Edward Island,All employees,Seafood product preparation and packaging,,
-2015,Prince Edward Island,All employees,Cannabis product manufacturing,,
-2015,Prince Edward Island,All employees,Printing and related support activities,,
-2015,Prince Edward Island,All employees,Durable goods,,2.64
-2015,Prince Edward Island,Salaried employees paid a fixed salary,Manufacturing,,2.34
-2015,Prince Edward Island,Salaried employees paid a fixed salary,Food manufacturing,,
-2015,Prince Edward Island,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2015,Prince Edward Island,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,Prince Edward Island,Salaried employees paid a fixed salary,Durable goods,,
-2015,Prince Edward Island,Employees paid by the hour,Manufacturing,,5.09
-2015,Prince Edward Island,Employees paid by the hour,Food manufacturing,,
-2015,Prince Edward Island,Employees paid by the hour,Seafood product preparation and packaging,,
-2015,Prince Edward Island,Employees paid by the hour,Cannabis product manufacturing,,
-2015,Prince Edward Island,Employees paid by the hour,Durable goods,,
-2015,Nova Scotia,All employees,Manufacturing,12,7.45
-2015,Nova Scotia,All employees,Non-durable goods,,4.56
-2015,Nova Scotia,All employees,Food manufacturing,,2.02
-2015,Nova Scotia,All employees,Animal food manufacturing,,
-2015,Nova Scotia,All employees,Dairy product manufacturing,,0.22
-2015,Nova Scotia,All employees,Meat product manufacturing,,
-2015,Nova Scotia,All employees,Seafood product preparation and packaging,,1.12
-2015,Nova Scotia,All employees,Bakeries and tortilla manufacturing,,0.24
-2015,Nova Scotia,All employees,Beverage and tobacco product manufacturing,,0.21
-2015,Nova Scotia,All employees,Cannabis product manufacturing,,
-2015,Nova Scotia,All employees,Fabric mills,,
-2015,Nova Scotia,All employees,Clothing manufacturing,,0.12
-2015,Nova Scotia,All employees,Paper manufacturing,,0.26
-2015,Nova Scotia,All employees,"Pulp, paper and paperboard mills",,
-2015,Nova Scotia,All employees,Printing and related support activities,,0.17
-2015,Nova Scotia,All employees,Plastics and rubber products manufacturing,,1.3
-2015,Nova Scotia,All employees,Durable goods,,2.89
-2015,Nova Scotia,All employees,Wood product manufacturing,,0.46
-2015,Nova Scotia,All employees,Sawmills and wood preservation,,0.23
-2015,Nova Scotia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.09
-2015,Nova Scotia,All employees,Other wood product manufacturing,,0.14
-2015,Nova Scotia,All employees,Non-metallic mineral product manufacturing,,0.17
-2015,Nova Scotia,All employees,Cement and concrete product manufacturing,,0.15
-2015,Nova Scotia,All employees,Other non-metallic mineral product manufacturing,,
-2015,Nova Scotia,All employees,Fabricated metal product manufacturing,,0.51
-2015,Nova Scotia,All employees,Spring and wire product manufacturing,,
-2015,Nova Scotia,All employees,Machinery manufacturing,,0.24
-2015,Nova Scotia,All employees,Commercial and service industry machinery manufacturing,,0.08
-2015,Nova Scotia,All employees,Other general-purpose machinery manufacturing,,0.03
-2015,Nova Scotia,All employees,Transportation equipment manufacturing,,0.98
-2015,Nova Scotia,All employees,Aerospace product and parts manufacturing,,0.46
-2015,Nova Scotia,All employees,Ship and boat building,,0.46
-2015,Nova Scotia,All employees,Miscellaneous manufacturing,,0.14
-2015,Nova Scotia,All employees,Medical equipment and supplies manufacturing,,0.04
-2015,Nova Scotia,All employees,Other miscellaneous manufacturing,,0.1
-2015,Nova Scotia,Salaried employees paid a fixed salary,Manufacturing,,1.82
-2015,Nova Scotia,Salaried employees paid a fixed salary,Non-durable goods,,1.1
-2015,Nova Scotia,Salaried employees paid a fixed salary,Food manufacturing,,0.41
-2015,Nova Scotia,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Paper manufacturing,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Printing and related support activities,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Durable goods,,0.72
-2015,Nova Scotia,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.18
-2015,Nova Scotia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2015,Nova Scotia,Salaried employees paid a fixed salary,Ship and boat building,,0.05
-2015,Nova Scotia,Employees paid by the hour,Manufacturing,,5.26
-2015,Nova Scotia,Employees paid by the hour,Non-durable goods,,3.26
-2015,Nova Scotia,Employees paid by the hour,Food manufacturing,,1.49
-2015,Nova Scotia,Employees paid by the hour,Animal food manufacturing,,
-2015,Nova Scotia,Employees paid by the hour,Seafood product preparation and packaging,,
-2015,Nova Scotia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2015,Nova Scotia,Employees paid by the hour,Cannabis product manufacturing,,
-2015,Nova Scotia,Employees paid by the hour,Paper manufacturing,,
-2015,Nova Scotia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2015,Nova Scotia,Employees paid by the hour,Printing and related support activities,,
-2015,Nova Scotia,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2015,Nova Scotia,Employees paid by the hour,Durable goods,,2.01
-2015,Nova Scotia,Employees paid by the hour,Wood product manufacturing,,
-2015,Nova Scotia,Employees paid by the hour,Sawmills and wood preservation,,
-2015,Nova Scotia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2015,Nova Scotia,Employees paid by the hour,Cement and concrete product manufacturing,,
-2015,Nova Scotia,Employees paid by the hour,Fabricated metal product manufacturing,,
-2015,Nova Scotia,Employees paid by the hour,Machinery manufacturing,,
-2015,Nova Scotia,Employees paid by the hour,Transportation equipment manufacturing,,0.76
-2015,Nova Scotia,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2015,Nova Scotia,Employees paid by the hour,Ship and boat building,,0.38
-2015,New Brunswick,All employees,Manufacturing,13,9.54
-2015,New Brunswick,All employees,Non-durable goods,,5.54
-2015,New Brunswick,All employees,Food manufacturing,,3.66
-2015,New Brunswick,All employees,Seafood product preparation and packaging,,1.48
-2015,New Brunswick,All employees,Beverage and tobacco product manufacturing,,0.22
-2015,New Brunswick,All employees,Cannabis product manufacturing,,
-2015,New Brunswick,All employees,"Fibre, yarn and thread mills",,
-2015,New Brunswick,All employees,Paper manufacturing,,0.85
-2015,New Brunswick,All employees,"Pulp, paper and paperboard mills",,0.7
-2015,New Brunswick,All employees,Converted paper product manufacturing,,0.15
-2015,New Brunswick,All employees,Printing and related support activities,,0.08
-2015,New Brunswick,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
-2015,New Brunswick,All employees,Durable goods,,4
-2015,New Brunswick,All employees,Wood product manufacturing,,1.42
-2015,New Brunswick,All employees,Sawmills and wood preservation,,0.82
-2015,New Brunswick,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.17
-2015,New Brunswick,All employees,Other wood product manufacturing,,0.44
-2015,New Brunswick,All employees,Non-metallic mineral product manufacturing,,0.3
-2015,New Brunswick,All employees,Other non-metallic mineral product manufacturing,,0.11
-2015,New Brunswick,All employees,Fabricated metal product manufacturing,,0.75
-2015,New Brunswick,All employees,Architectural and structural metals manufacturing,,0.48
-2015,New Brunswick,All employees,Machinery manufacturing,,0.31
-2015,New Brunswick,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.15
-2015,New Brunswick,All employees,Other general-purpose machinery manufacturing,,0.06
-2015,New Brunswick,All employees,Computer and electronic product manufacturing,,
-2015,New Brunswick,All employees,Furniture and related product manufacturing,,0.24
-2015,New Brunswick,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.22
-2015,New Brunswick,All employees,Miscellaneous manufacturing,,0.5
-2015,New Brunswick,All employees,Medical equipment and supplies manufacturing,,0.04
-2015,New Brunswick,All employees,Other miscellaneous manufacturing,,0.47
-2015,New Brunswick,Salaried employees paid a fixed salary,Manufacturing,,2.26
-2015,New Brunswick,Salaried employees paid a fixed salary,Non-durable goods,,
-2015,New Brunswick,Salaried employees paid a fixed salary,Food manufacturing,,
-2015,New Brunswick,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,New Brunswick,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2015,New Brunswick,Salaried employees paid a fixed salary,Paper manufacturing,,
-2015,New Brunswick,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2015,New Brunswick,Salaried employees paid a fixed salary,Durable goods,,1
-2015,New Brunswick,Salaried employees paid a fixed salary,Wood product manufacturing,,0.18
-2015,New Brunswick,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2015,New Brunswick,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2015,New Brunswick,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2015,New Brunswick,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2015,New Brunswick,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2015,New Brunswick,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2015,New Brunswick,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2015,New Brunswick,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2015,New Brunswick,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2015,New Brunswick,Employees paid by the hour,Manufacturing,,6.95
-2015,New Brunswick,Employees paid by the hour,Non-durable goods,,
-2015,New Brunswick,Employees paid by the hour,Food manufacturing,,
-2015,New Brunswick,Employees paid by the hour,Cannabis product manufacturing,,
-2015,New Brunswick,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2015,New Brunswick,Employees paid by the hour,Paper manufacturing,,
-2015,New Brunswick,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2015,New Brunswick,Employees paid by the hour,Durable goods,,2.84
-2015,New Brunswick,Employees paid by the hour,Wood product manufacturing,,1.19
-2015,New Brunswick,Employees paid by the hour,Sawmills and wood preservation,,
-2015,New Brunswick,Employees paid by the hour,Other wood product manufacturing,,
-2015,New Brunswick,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2015,New Brunswick,Employees paid by the hour,Fabricated metal product manufacturing,,
-2015,New Brunswick,Employees paid by the hour,Machinery manufacturing,,
-2015,New Brunswick,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2015,New Brunswick,Employees paid by the hour,Computer and electronic product manufacturing,,
-2015,New Brunswick,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2015,New Brunswick,Employees paid by the hour,Other miscellaneous manufacturing,,
-2015,Quebec,All employees,Manufacturing,24,11.57
-2015,Quebec,All employees,Non-durable goods,,4.86
-2015,Quebec,All employees,Food manufacturing,,1.61
-2015,Quebec,All employees,Animal food manufacturing,,0.07
-2015,Quebec,All employees,Grain and oilseed milling,,0.03
-2015,Quebec,All employees,Sugar and confectionery product manufacturing,,0.09
-2015,Quebec,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.13
-2015,Quebec,All employees,Dairy product manufacturing,,0.25
-2015,Quebec,All employees,Meat product manufacturing,,0.47
-2015,Quebec,All employees,Seafood product preparation and packaging,,0.04
-2015,Quebec,All employees,Bakeries and tortilla manufacturing,,0.32
-2015,Quebec,All employees,Other food manufacturing,,0.19
-2015,Quebec,All employees,Beverage and tobacco product manufacturing,,0.22
-2015,Quebec,All employees,Cannabis product manufacturing,,
-2015,Quebec,All employees,Textile mills,,0.11
-2015,Quebec,All employees,"Fibre, yarn and thread mills",,0.01
-2015,Quebec,All employees,Fabric mills,,0.08
-2015,Quebec,All employees,Textile and fabric finishing and fabric coating,,0.01
-2015,Quebec,All employees,Textile product mills,,0.09
-2015,Quebec,All employees,Textile furnishings mills,,0.04
-2015,Quebec,All employees,Other textile product mills,,0.05
-2015,Quebec,All employees,Clothing manufacturing,,0.31
-2015,Quebec,All employees,Clothing knitting mills,,0.03
-2015,Quebec,All employees,Cut and sew clothing manufacturing,,0.26
-2015,Quebec,All employees,Clothing accessories and other clothing manufacturing,,0.02
-2015,Quebec,All employees,Leather and allied product manufacturing,,0.04
-2015,Quebec,All employees,Leather and hide tanning and finishing,,0
-2015,Quebec,All employees,Footwear manufacturing,,0.03
-2015,Quebec,All employees,Other leather and allied product manufacturing,,0.01
-2015,Quebec,All employees,Paper manufacturing,,0.62
-2015,Quebec,All employees,"Pulp, paper and paperboard mills",,0.25
-2015,Quebec,All employees,Converted paper product manufacturing,,0.37
-2015,Quebec,All employees,Printing and related support activities,,0.35
-2015,Quebec,All employees,Petroleum and coal product manufacturing,,0.1
-2015,Quebec,All employees,Chemical manufacturing,,0.65
-2015,Quebec,All employees,Basic chemical manufacturing,,0.08
-2015,Quebec,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.03
-2015,Quebec,All employees,Pharmaceutical and medicine manufacturing,,0.22
-2015,Quebec,All employees,"Paint, coating and adhesive manufacturing",,0.07
-2015,Quebec,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.11
-2015,Quebec,All employees,Other chemical product manufacturing,,0.09
-2015,Quebec,All employees,Plastics and rubber products manufacturing,,0.77
-2015,Quebec,All employees,Plastic product manufacturing,,0.62
-2015,Quebec,All employees,Rubber product manufacturing,,0.15
-2015,Quebec,All employees,Durable goods,,6.7
-2015,Quebec,All employees,Wood product manufacturing,,0.8
-2015,Quebec,All employees,Sawmills and wood preservation,,0.28
-2015,Quebec,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
-2015,Quebec,All employees,Other wood product manufacturing,,0.38
-2015,Quebec,All employees,Non-metallic mineral product manufacturing,,0.42
-2015,Quebec,All employees,Clay product and refractory manufacturing,,0.02
-2015,Quebec,All employees,Glass and glass product manufacturing,,0.07
-2015,Quebec,All employees,Cement and concrete product manufacturing,,0.24
-2015,Quebec,All employees,Lime and gypsum product manufacturing,,0.02
-2015,Quebec,All employees,Other non-metallic mineral product manufacturing,,0.07
-2015,Quebec,All employees,Primary metal manufacturing,,0.46
-2015,Quebec,All employees,Iron and steel mills and ferro-alloy manufacturing,,
-2015,Quebec,All employees,Steel product manufacturing from purchased steel,,
-2015,Quebec,All employees,Alumina and aluminum production and processing,,0.17
-2015,Quebec,All employees,Non-ferrous metal (except aluminum) production and processing,,0.12
-2015,Quebec,All employees,Foundries,,0.09
-2015,Quebec,All employees,Fabricated metal product manufacturing,,1.16
-2015,Quebec,All employees,Forging and stamping,,0.07
-2015,Quebec,All employees,Cutlery and hand tool manufacturing,,0.03
-2015,Quebec,All employees,Architectural and structural metals manufacturing,,0.47
-2015,Quebec,All employees,"Boiler, tank and shipping container manufacturing",,0.07
-2015,Quebec,All employees,Hardware manufacturing,,0.01
-2015,Quebec,All employees,Spring and wire product manufacturing,,0.04
-2015,Quebec,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.26
-2015,Quebec,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2015,Quebec,All employees,Other fabricated metal product manufacturing,,0.15
-2015,Quebec,All employees,Machinery manufacturing,,0.83
-2015,Quebec,All employees,"Agricultural, construction and mining machinery manufacturing",,0.11
-2015,Quebec,All employees,Industrial machinery manufacturing,,0.13
-2015,Quebec,All employees,Commercial and service industry machinery manufacturing,,0.16
-2015,Quebec,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.13
-2015,Quebec,All employees,Metalworking machinery manufacturing,,0.06
-2015,Quebec,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.07
-2015,Quebec,All employees,Other general-purpose machinery manufacturing,,0.17
-2015,Quebec,All employees,Computer and electronic product manufacturing,,0.41
-2015,Quebec,All employees,Communications equipment manufacturing,,0.09
-2015,Quebec,All employees,Audio and video equipment manufacturing,,0.01
-2015,Quebec,All employees,Semiconductor and other electronic component manufacturing,,0.12
-2015,Quebec,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.15
-2015,Quebec,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
-2015,Quebec,All employees,"Electrical equipment, appliance and component manufacturing",,0.3
-2015,Quebec,All employees,Electric lighting equipment manufacturing,,0.06
-2015,Quebec,All employees,Household appliance manufacturing,,0.02
-2015,Quebec,All employees,Electrical equipment manufacturing,,0.13
-2015,Quebec,All employees,Other electrical equipment and component manufacturing,,0.08
-2015,Quebec,All employees,Transportation equipment manufacturing,,1.26
-2015,Quebec,All employees,Motor vehicle body and trailer manufacturing,,0.11
-2015,Quebec,All employees,Motor vehicle parts manufacturing,,0.1
-2015,Quebec,All employees,Aerospace product and parts manufacturing,,0.76
-2015,Quebec,All employees,Other transportation equipment manufacturing,,0.11
-2015,Quebec,All employees,Furniture and related product manufacturing,,0.6
-2015,Quebec,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.41
-2015,Quebec,All employees,Office furniture (including fixtures) manufacturing,,0.15
-2015,Quebec,All employees,Other furniture-related product manufacturing,,0.03
-2015,Quebec,All employees,Miscellaneous manufacturing,,0.47
-2015,Quebec,All employees,Medical equipment and supplies manufacturing,,0.13
-2015,Quebec,All employees,Other miscellaneous manufacturing,,0.35
-2015,Quebec,Salaried employees paid a fixed salary,Manufacturing,,2.98
-2015,Quebec,Salaried employees paid a fixed salary,Non-durable goods,,1.25
-2015,Quebec,Salaried employees paid a fixed salary,Food manufacturing,,0.29
-2015,Quebec,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2015,Quebec,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Other food manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Textile mills,,0.03
-2015,Quebec,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2015,Quebec,Salaried employees paid a fixed salary,Fabric mills,,
-2015,Quebec,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
-2015,Quebec,Salaried employees paid a fixed salary,Textile product mills,,
-2015,Quebec,Salaried employees paid a fixed salary,Textile furnishings mills,,
-2015,Quebec,Salaried employees paid a fixed salary,Other textile product mills,,
-2015,Quebec,Salaried employees paid a fixed salary,Clothing manufacturing,,0.08
-2015,Quebec,Salaried employees paid a fixed salary,Clothing knitting mills,,
-2015,Quebec,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Clothing accessories and other clothing manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2015,Quebec,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Paper manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2015,Quebec,Salaried employees paid a fixed salary,Printing and related support activities,,0.08
-2015,Quebec,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Chemical manufacturing,,0.3
-2015,Quebec,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2015,Quebec,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
-2015,Quebec,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2015,Quebec,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.13
-2015,Quebec,Salaried employees paid a fixed salary,Plastic product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Durable goods,,1.72
-2015,Quebec,Salaried employees paid a fixed salary,Wood product manufacturing,,0.1
-2015,Quebec,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2015,Quebec,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2015,Quebec,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.04
-2015,Quebec,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.1
-2015,Quebec,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2015,Quebec,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2015,Quebec,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2015,Quebec,Salaried employees paid a fixed salary,Foundries,,
-2015,Quebec,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.18
-2015,Quebec,Salaried employees paid a fixed salary,Forging and stamping,,
-2015,Quebec,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2015,Quebec,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Machinery manufacturing,,0.28
-2015,Quebec,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2015,Quebec,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2015,Quebec,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2015,Quebec,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Quebec,Salaried employees paid a fixed salary,Manufacturing and reproducing magnetic and optical media,,
-2015,Quebec,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2015,Quebec,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.39
-2015,Quebec,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2015,Quebec,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2015,Quebec,Employees paid by the hour,Manufacturing,,8.03
-2015,Quebec,Employees paid by the hour,Non-durable goods,,3.43
-2015,Quebec,Employees paid by the hour,Food manufacturing,,1.29
-2015,Quebec,Employees paid by the hour,Animal food manufacturing,,
-2015,Quebec,Employees paid by the hour,Grain and oilseed milling,,
-2015,Quebec,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2015,Quebec,Employees paid by the hour,Dairy product manufacturing,,
-2015,Quebec,Employees paid by the hour,Meat product manufacturing,,
-2015,Quebec,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2015,Quebec,Employees paid by the hour,Other food manufacturing,,
-2015,Quebec,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2015,Quebec,Employees paid by the hour,Cannabis product manufacturing,,
-2015,Quebec,Employees paid by the hour,Textile mills,,0.07
-2015,Quebec,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2015,Quebec,Employees paid by the hour,Fabric mills,,
-2015,Quebec,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
-2015,Quebec,Employees paid by the hour,Textile product mills,,
-2015,Quebec,Employees paid by the hour,Textile furnishings mills,,
-2015,Quebec,Employees paid by the hour,Other textile product mills,,
-2015,Quebec,Employees paid by the hour,Clothing manufacturing,,0.2
-2015,Quebec,Employees paid by the hour,Clothing knitting mills,,
-2015,Quebec,Employees paid by the hour,Cut and sew clothing manufacturing,,0.16
-2015,Quebec,Employees paid by the hour,Clothing accessories and other clothing manufacturing,,
-2015,Quebec,Employees paid by the hour,Leather and hide tanning and finishing,,
-2015,Quebec,Employees paid by the hour,Footwear manufacturing,,
-2015,Quebec,Employees paid by the hour,Other leather and allied product manufacturing,,
-2015,Quebec,Employees paid by the hour,Paper manufacturing,,
-2015,Quebec,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2015,Quebec,Employees paid by the hour,Printing and related support activities,,0.24
-2015,Quebec,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2015,Quebec,Employees paid by the hour,Chemical manufacturing,,0.33
-2015,Quebec,Employees paid by the hour,Basic chemical manufacturing,,
-2015,Quebec,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2015,Quebec,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2015,Quebec,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
-2015,Quebec,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2015,Quebec,Employees paid by the hour,Other chemical product manufacturing,,
-2015,Quebec,Employees paid by the hour,Plastics and rubber products manufacturing,,0.61
-2015,Quebec,Employees paid by the hour,Plastic product manufacturing,,
-2015,Quebec,Employees paid by the hour,Rubber product manufacturing,,
-2015,Quebec,Employees paid by the hour,Durable goods,,4.6
-2015,Quebec,Employees paid by the hour,Wood product manufacturing,,0.65
-2015,Quebec,Employees paid by the hour,Sawmills and wood preservation,,
-2015,Quebec,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.11
-2015,Quebec,Employees paid by the hour,Other wood product manufacturing,,0.3
-2015,Quebec,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.29
-2015,Quebec,Employees paid by the hour,Clay product and refractory manufacturing,,
-2015,Quebec,Employees paid by the hour,Glass and glass product manufacturing,,
-2015,Quebec,Employees paid by the hour,Cement and concrete product manufacturing,,
-2015,Quebec,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2015,Quebec,Employees paid by the hour,Primary metal manufacturing,,
-2015,Quebec,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2015,Quebec,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2015,Quebec,Employees paid by the hour,Alumina and aluminum production and processing,,
-2015,Quebec,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2015,Quebec,Employees paid by the hour,Foundries,,
-2015,Quebec,Employees paid by the hour,Fabricated metal product manufacturing,,0.88
-2015,Quebec,Employees paid by the hour,Forging and stamping,,
-2015,Quebec,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2015,Quebec,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2015,Quebec,Employees paid by the hour,Hardware manufacturing,,
-2015,Quebec,Employees paid by the hour,Spring and wire product manufacturing,,
-2015,Quebec,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2015,Quebec,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2015,Quebec,Employees paid by the hour,Machinery manufacturing,,0.51
-2015,Quebec,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2015,Quebec,Employees paid by the hour,Industrial machinery manufacturing,,
-2015,Quebec,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2015,Quebec,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2015,Quebec,Employees paid by the hour,Metalworking machinery manufacturing,,
-2015,Quebec,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2015,Quebec,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2015,Quebec,Employees paid by the hour,Communications equipment manufacturing,,
-2015,Quebec,Employees paid by the hour,Audio and video equipment manufacturing,,
-2015,Quebec,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2015,Quebec,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Quebec,Employees paid by the hour,Manufacturing and reproducing magnetic and optical media,,
-2015,Quebec,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2015,Quebec,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2015,Quebec,Employees paid by the hour,Household appliance manufacturing,,
-2015,Quebec,Employees paid by the hour,Electrical equipment manufacturing,,
-2015,Quebec,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2015,Quebec,Employees paid by the hour,Transportation equipment manufacturing,,0.84
-2015,Quebec,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2015,Quebec,Employees paid by the hour,Other transportation equipment manufacturing,,
-2015,Quebec,Employees paid by the hour,Furniture and related product manufacturing,,
-2015,Quebec,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2015,Quebec,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2015,Quebec,Employees paid by the hour,Miscellaneous manufacturing,,
-2015,Quebec,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2015,Quebec,Employees paid by the hour,Other miscellaneous manufacturing,,
-2015,Ontario,All employees,Manufacturing,35,10.95
-2015,Ontario,All employees,Non-durable goods,,4.11
-2015,Ontario,All employees,Food manufacturing,,1.35
-2015,Ontario,All employees,Animal food manufacturing,,0.06
-2015,Ontario,All employees,Grain and oilseed milling,,0.07
-2015,Ontario,All employees,Sugar and confectionery product manufacturing,,0.08
-2015,Ontario,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.11
-2015,Ontario,All employees,Dairy product manufacturing,,0.14
-2015,Ontario,All employees,Meat product manufacturing,,0.29
-2015,Ontario,All employees,Seafood product preparation and packaging,,0.01
-2015,Ontario,All employees,Bakeries and tortilla manufacturing,,0.35
-2015,Ontario,All employees,Other food manufacturing,,0.24
-2015,Ontario,All employees,Beverage and tobacco product manufacturing,,0.26
-2015,Ontario,All employees,Cannabis product manufacturing,,
-2015,Ontario,All employees,Textile mills,,0.05
-2015,Ontario,All employees,"Fibre, yarn and thread mills",,0.01
-2015,Ontario,All employees,Fabric mills,,0.02
-2015,Ontario,All employees,Textile and fabric finishing and fabric coating,,0.02
-2015,Ontario,All employees,Textile product mills,,0.07
-2015,Ontario,All employees,Textile furnishings mills,,0.02
-2015,Ontario,All employees,Other textile product mills,,0.05
-2015,Ontario,All employees,Clothing manufacturing,,0.08
-2015,Ontario,All employees,Clothing knitting mills,,0.01
-2015,Ontario,All employees,Cut and sew clothing manufacturing,,0.06
-2015,Ontario,All employees,Clothing accessories and other clothing manufacturing,,0.02
-2015,Ontario,All employees,Leather and allied product manufacturing,,0.02
-2015,Ontario,All employees,Leather and hide tanning and finishing,,0.01
-2015,Ontario,All employees,Footwear manufacturing,,0
-2015,Ontario,All employees,Other leather and allied product manufacturing,,0.01
-2015,Ontario,All employees,Paper manufacturing,,0.27
-2015,Ontario,All employees,"Pulp, paper and paperboard mills",,0.08
-2015,Ontario,All employees,Converted paper product manufacturing,,0.19
-2015,Ontario,All employees,Printing and related support activities,,0.38
-2015,Ontario,All employees,Petroleum and coal product manufacturing,,0.1
-2015,Ontario,All employees,Chemical manufacturing,,0.73
-2015,Ontario,All employees,Basic chemical manufacturing,,0.08
-2015,Ontario,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.07
-2015,Ontario,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
-2015,Ontario,All employees,Pharmaceutical and medicine manufacturing,,0.25
-2015,Ontario,All employees,"Paint, coating and adhesive manufacturing",,0.07
-2015,Ontario,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.17
-2015,Ontario,All employees,Other chemical product manufacturing,,0.09
-2015,Ontario,All employees,Plastics and rubber products manufacturing,,0.79
-2015,Ontario,All employees,Plastic product manufacturing,,0.69
-2015,Ontario,All employees,Rubber product manufacturing,,0.09
-2015,Ontario,All employees,Durable goods,,6.84
-2015,Ontario,All employees,Wood product manufacturing,,0.27
-2015,Ontario,All employees,Sawmills and wood preservation,,0.05
-2015,Ontario,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.05
-2015,Ontario,All employees,Other wood product manufacturing,,0.17
-2015,Ontario,All employees,Non-metallic mineral product manufacturing,,0.34
-2015,Ontario,All employees,Clay product and refractory manufacturing,,0.02
-2015,Ontario,All employees,Glass and glass product manufacturing,,0.06
-2015,Ontario,All employees,Cement and concrete product manufacturing,,0.19
-2015,Ontario,All employees,Lime and gypsum product manufacturing,,0.01
-2015,Ontario,All employees,Other non-metallic mineral product manufacturing,,0.06
-2015,Ontario,All employees,Primary metal manufacturing,,0.47
-2015,Ontario,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.22
-2015,Ontario,All employees,Steel product manufacturing from purchased steel,,0.06
-2015,Ontario,All employees,Alumina and aluminum production and processing,,0.05
-2015,Ontario,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
-2015,Ontario,All employees,Foundries,,0.07
-2015,Ontario,All employees,Fabricated metal product manufacturing,,1.09
-2015,Ontario,All employees,Forging and stamping,,0.06
-2015,Ontario,All employees,Cutlery and hand tool manufacturing,,0.03
-2015,Ontario,All employees,Architectural and structural metals manufacturing,,0.36
-2015,Ontario,All employees,"Boiler, tank and shipping container manufacturing",,0.07
-2015,Ontario,All employees,Hardware manufacturing,,0.06
-2015,Ontario,All employees,Spring and wire product manufacturing,,0.03
-2015,Ontario,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.24
-2015,Ontario,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.09
-2015,Ontario,All employees,Other fabricated metal product manufacturing,,0.15
-2015,Ontario,All employees,Machinery manufacturing,,1.01
-2015,Ontario,All employees,"Agricultural, construction and mining machinery manufacturing",,0.13
-2015,Ontario,All employees,Industrial machinery manufacturing,,0.11
-2015,Ontario,All employees,Commercial and service industry machinery manufacturing,,0.12
-2015,Ontario,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
-2015,Ontario,All employees,Metalworking machinery manufacturing,,0.27
-2015,Ontario,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.06
-2015,Ontario,All employees,Other general-purpose machinery manufacturing,,0.25
-2015,Ontario,All employees,Computer and electronic product manufacturing,,0.5
-2015,Ontario,All employees,Computer and peripheral equipment manufacturing,,0.05
-2015,Ontario,All employees,Communications equipment manufacturing,,0.15
-2015,Ontario,All employees,Audio and video equipment manufacturing,,0.01
-2015,Ontario,All employees,Semiconductor and other electronic component manufacturing,,0.1
-2015,Ontario,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.17
-2015,Ontario,All employees,"Electrical equipment, appliance and component manufacturing",,0.27
-2015,Ontario,All employees,Electric lighting equipment manufacturing,,0.03
-2015,Ontario,All employees,Household appliance manufacturing,,0.02
-2015,Ontario,All employees,Electrical equipment manufacturing,,0.13
-2015,Ontario,All employees,Other electrical equipment and component manufacturing,,0.09
-2015,Ontario,All employees,Transportation equipment manufacturing,,2.03
-2015,Ontario,All employees,Motor vehicle manufacturing,,0.59
-2015,Ontario,All employees,Motor vehicle body and trailer manufacturing,,0.06
-2015,Ontario,All employees,Motor vehicle parts manufacturing,,1.07
-2015,Ontario,All employees,Aerospace product and parts manufacturing,,0.19
-2015,Ontario,All employees,Railroad rolling stock manufacturing,,0.05
-2015,Ontario,All employees,Furniture and related product manufacturing,,0.46
-2015,Ontario,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
-2015,Ontario,All employees,Office furniture (including fixtures) manufacturing,,0.22
-2015,Ontario,All employees,Other furniture-related product manufacturing,,0.03
-2015,Ontario,All employees,Miscellaneous manufacturing,,0.4
-2015,Ontario,All employees,Medical equipment and supplies manufacturing,,0.14
-2015,Ontario,All employees,Other miscellaneous manufacturing,,0.26
-2015,Ontario,Salaried employees paid a fixed salary,Manufacturing,,3.08
-2015,Ontario,Salaried employees paid a fixed salary,Non-durable goods,,1.31
-2015,Ontario,Salaried employees paid a fixed salary,Food manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2015,Ontario,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Other food manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Textile mills,,0.01
-2015,Ontario,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2015,Ontario,Salaried employees paid a fixed salary,Fabric mills,,
-2015,Ontario,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0.01
-2015,Ontario,Salaried employees paid a fixed salary,Textile furnishings mills,,
-2015,Ontario,Salaried employees paid a fixed salary,Other textile product mills,,
-2015,Ontario,Salaried employees paid a fixed salary,Clothing manufacturing,,0.02
-2015,Ontario,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
-2015,Ontario,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2015,Ontario,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Paper manufacturing,,0.1
-2015,Ontario,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2015,Ontario,Salaried employees paid a fixed salary,Printing and related support activities,,0.1
-2015,Ontario,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Chemical manufacturing,,0.41
-2015,Ontario,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2015,Ontario,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2015,Ontario,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
-2015,Ontario,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2015,Ontario,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.18
-2015,Ontario,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.16
-2015,Ontario,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Durable goods,,1.77
-2015,Ontario,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2015,Ontario,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2015,Ontario,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.02
-2015,Ontario,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2015,Ontario,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2015,Ontario,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2015,Ontario,Salaried employees paid a fixed salary,Foundries,,
-2015,Ontario,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.21
-2015,Ontario,Salaried employees paid a fixed salary,Forging and stamping,,
-2015,Ontario,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2015,Ontario,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2015,Ontario,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
-2015,Ontario,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Machinery manufacturing,,0.33
-2015,Ontario,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2015,Ontario,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2015,Ontario,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2015,Ontario,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.32
-2015,Ontario,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Ontario,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2015,Ontario,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Railroad rolling stock manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2015,Ontario,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2015,Ontario,Employees paid by the hour,Manufacturing,,7.35
-2015,Ontario,Employees paid by the hour,Non-durable goods,,2.63
-2015,Ontario,Employees paid by the hour,Food manufacturing,,
-2015,Ontario,Employees paid by the hour,Animal food manufacturing,,
-2015,Ontario,Employees paid by the hour,Grain and oilseed milling,,
-2015,Ontario,Employees paid by the hour,Sugar and confectionery product manufacturing,,
-2015,Ontario,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2015,Ontario,Employees paid by the hour,Dairy product manufacturing,,
-2015,Ontario,Employees paid by the hour,Meat product manufacturing,,
-2015,Ontario,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2015,Ontario,Employees paid by the hour,Other food manufacturing,,
-2015,Ontario,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2015,Ontario,Employees paid by the hour,Cannabis product manufacturing,,
-2015,Ontario,Employees paid by the hour,Textile mills,,0.03
-2015,Ontario,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2015,Ontario,Employees paid by the hour,Fabric mills,,
-2015,Ontario,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
-2015,Ontario,Employees paid by the hour,Textile furnishings mills,,
-2015,Ontario,Employees paid by the hour,Other textile product mills,,
-2015,Ontario,Employees paid by the hour,Clothing manufacturing,,0.05
-2015,Ontario,Employees paid by the hour,Leather and allied product manufacturing,,0.01
-2015,Ontario,Employees paid by the hour,Leather and hide tanning and finishing,,
-2015,Ontario,Employees paid by the hour,Footwear manufacturing,,
-2015,Ontario,Employees paid by the hour,Other leather and allied product manufacturing,,
-2015,Ontario,Employees paid by the hour,Paper manufacturing,,0.17
-2015,Ontario,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2015,Ontario,Employees paid by the hour,Printing and related support activities,,0.25
-2015,Ontario,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2015,Ontario,Employees paid by the hour,Chemical manufacturing,,0.3
-2015,Ontario,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2015,Ontario,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2015,Ontario,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
-2015,Ontario,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2015,Ontario,Employees paid by the hour,Other chemical product manufacturing,,
-2015,Ontario,Employees paid by the hour,Plastics and rubber products manufacturing,,0.57
-2015,Ontario,Employees paid by the hour,Plastic product manufacturing,,0.5
-2015,Ontario,Employees paid by the hour,Rubber product manufacturing,,
-2015,Ontario,Employees paid by the hour,Durable goods,,4.72
-2015,Ontario,Employees paid by the hour,Wood product manufacturing,,
-2015,Ontario,Employees paid by the hour,Sawmills and wood preservation,,
-2015,Ontario,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2015,Ontario,Employees paid by the hour,Other wood product manufacturing,,0.13
-2015,Ontario,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2015,Ontario,Employees paid by the hour,Clay product and refractory manufacturing,,
-2015,Ontario,Employees paid by the hour,Glass and glass product manufacturing,,
-2015,Ontario,Employees paid by the hour,Cement and concrete product manufacturing,,
-2015,Ontario,Employees paid by the hour,Lime and gypsum product manufacturing,,
-2015,Ontario,Employees paid by the hour,Primary metal manufacturing,,
-2015,Ontario,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2015,Ontario,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2015,Ontario,Employees paid by the hour,Alumina and aluminum production and processing,,
-2015,Ontario,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2015,Ontario,Employees paid by the hour,Foundries,,
-2015,Ontario,Employees paid by the hour,Fabricated metal product manufacturing,,0.79
-2015,Ontario,Employees paid by the hour,Forging and stamping,,
-2015,Ontario,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2015,Ontario,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2015,Ontario,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2015,Ontario,Employees paid by the hour,Hardware manufacturing,,
-2015,Ontario,Employees paid by the hour,Spring and wire product manufacturing,,
-2015,Ontario,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2015,Ontario,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
-2015,Ontario,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2015,Ontario,Employees paid by the hour,Machinery manufacturing,,0.62
-2015,Ontario,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2015,Ontario,Employees paid by the hour,Industrial machinery manufacturing,,
-2015,Ontario,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2015,Ontario,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2015,Ontario,Employees paid by the hour,Metalworking machinery manufacturing,,
-2015,Ontario,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2015,Ontario,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2015,Ontario,Employees paid by the hour,Computer and electronic product manufacturing,,0.17
-2015,Ontario,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
-2015,Ontario,Employees paid by the hour,Communications equipment manufacturing,,
-2015,Ontario,Employees paid by the hour,Audio and video equipment manufacturing,,
-2015,Ontario,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2015,Ontario,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Ontario,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2015,Ontario,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2015,Ontario,Employees paid by the hour,Household appliance manufacturing,,
-2015,Ontario,Employees paid by the hour,Electrical equipment manufacturing,,
-2015,Ontario,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2015,Ontario,Employees paid by the hour,Transportation equipment manufacturing,,
-2015,Ontario,Employees paid by the hour,Motor vehicle manufacturing,,
-2015,Ontario,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2015,Ontario,Employees paid by the hour,Motor vehicle parts manufacturing,,
-2015,Ontario,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2015,Ontario,Employees paid by the hour,Railroad rolling stock manufacturing,,
-2015,Ontario,Employees paid by the hour,Furniture and related product manufacturing,,
-2015,Ontario,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2015,Ontario,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2015,Ontario,Employees paid by the hour,Miscellaneous manufacturing,,
-2015,Ontario,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2015,Ontario,Employees paid by the hour,Other miscellaneous manufacturing,,
-2015,Manitoba,All employees,Manufacturing,46,9.35
-2015,Manitoba,All employees,Non-durable goods,,3.86
-2015,Manitoba,All employees,Food manufacturing,,1.71
-2015,Manitoba,All employees,Animal food manufacturing,,
-2015,Manitoba,All employees,Meat product manufacturing,,0.89
-2015,Manitoba,All employees,Bakeries and tortilla manufacturing,,0.19
-2015,Manitoba,All employees,Beverage and tobacco product manufacturing,,0.14
-2015,Manitoba,All employees,Cannabis product manufacturing,,
-2015,Manitoba,All employees,Textile and fabric finishing and fabric coating,,
-2015,Manitoba,All employees,Other textile product mills,,
-2015,Manitoba,All employees,Cut and sew clothing manufacturing,,0.12
-2015,Manitoba,All employees,Leather and hide tanning and finishing,,
-2015,Manitoba,All employees,Paper manufacturing,,0.18
-2015,Manitoba,All employees,"Pulp, paper and paperboard mills",,
-2015,Manitoba,All employees,Printing and related support activities,,0.54
-2015,Manitoba,All employees,Chemical manufacturing,,0.44
-2015,Manitoba,All employees,Basic chemical manufacturing,,0.06
-2015,Manitoba,All employees,Durable goods,,5.49
-2015,Manitoba,All employees,Wood product manufacturing,,0.39
-2015,Manitoba,All employees,Sawmills and wood preservation,,
-2015,Manitoba,All employees,"Veneer, plywood and engineered wood product manufacturing",,
-2015,Manitoba,All employees,Other wood product manufacturing,,0.27
-2015,Manitoba,All employees,Non-metallic mineral product manufacturing,,0.24
-2015,Manitoba,All employees,Cement and concrete product manufacturing,,0.19
-2015,Manitoba,All employees,Other non-metallic mineral product manufacturing,,0.02
-2015,Manitoba,All employees,Primary metal manufacturing,,0.6
-2015,Manitoba,All employees,Foundries,,0.13
-2015,Manitoba,All employees,Fabricated metal product manufacturing,,0.75
-2015,Manitoba,All employees,Architectural and structural metals manufacturing,,0.31
-2015,Manitoba,All employees,"Boiler, tank and shipping container manufacturing",,0.13
-2015,Manitoba,All employees,Spring and wire product manufacturing,,0.02
-2015,Manitoba,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.05
-2015,Manitoba,All employees,Machinery manufacturing,,1.06
-2015,Manitoba,All employees,"Agricultural, construction and mining machinery manufacturing",,0.68
-2015,Manitoba,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
-2015,Manitoba,All employees,Other general-purpose machinery manufacturing,,0.16
-2015,Manitoba,All employees,Computer and electronic product manufacturing,,0.08
-2015,Manitoba,All employees,Semiconductor and other electronic component manufacturing,,0.03
-2015,Manitoba,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Manitoba,All employees,Electrical equipment manufacturing,,0.1
-2015,Manitoba,All employees,Transportation equipment manufacturing,,1.45
-2015,Manitoba,All employees,Motor vehicle body and trailer manufacturing,,0.22
-2015,Manitoba,All employees,Aerospace product and parts manufacturing,,0.73
-2015,Manitoba,All employees,Furniture and related product manufacturing,,0.52
-2015,Manitoba,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.46
-2015,Manitoba,All employees,Office furniture (including fixtures) manufacturing,,0.04
-2015,Manitoba,All employees,Other furniture-related product manufacturing,,0.01
-2015,Manitoba,All employees,Miscellaneous manufacturing,,0.3
-2015,Manitoba,All employees,Medical equipment and supplies manufacturing,,0.09
-2015,Manitoba,All employees,Other miscellaneous manufacturing,,0.22
-2015,Manitoba,Salaried employees paid a fixed salary,Manufacturing,,2.5
-2015,Manitoba,Salaried employees paid a fixed salary,Non-durable goods,,0.87
-2015,Manitoba,Salaried employees paid a fixed salary,Food manufacturing,,0.28
-2015,Manitoba,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
-2015,Manitoba,Salaried employees paid a fixed salary,Other textile product mills,,
-2015,Manitoba,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Paper manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2015,Manitoba,Salaried employees paid a fixed salary,Printing and related support activities,,
-2015,Manitoba,Salaried employees paid a fixed salary,Chemical manufacturing,,0.2
-2015,Manitoba,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Durable goods,,1.63
-2015,Manitoba,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2015,Manitoba,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2015,Manitoba,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.14
-2015,Manitoba,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Machinery manufacturing,,0.29
-2015,Manitoba,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2015,Manitoba,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2015,Manitoba,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Manitoba,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.62
-2015,Manitoba,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.05
-2015,Manitoba,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.04
-2015,Manitoba,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2015,Manitoba,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2015,Manitoba,Employees paid by the hour,Manufacturing,,6.48
-2015,Manitoba,Employees paid by the hour,Non-durable goods,,2.86
-2015,Manitoba,Employees paid by the hour,Food manufacturing,,1.39
-2015,Manitoba,Employees paid by the hour,Animal food manufacturing,,
-2015,Manitoba,Employees paid by the hour,Meat product manufacturing,,
-2015,Manitoba,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2015,Manitoba,Employees paid by the hour,Cannabis product manufacturing,,
-2015,Manitoba,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
-2015,Manitoba,Employees paid by the hour,Other textile product mills,,
-2015,Manitoba,Employees paid by the hour,Clothing manufacturing,,
-2015,Manitoba,Employees paid by the hour,Cut and sew clothing manufacturing,,
-2015,Manitoba,Employees paid by the hour,Leather and hide tanning and finishing,,
-2015,Manitoba,Employees paid by the hour,Paper manufacturing,,
-2015,Manitoba,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2015,Manitoba,Employees paid by the hour,Printing and related support activities,,
-2015,Manitoba,Employees paid by the hour,Chemical manufacturing,,0.22
-2015,Manitoba,Employees paid by the hour,Basic chemical manufacturing,,
-2015,Manitoba,Employees paid by the hour,Durable goods,,3.62
-2015,Manitoba,Employees paid by the hour,Wood product manufacturing,,
-2015,Manitoba,Employees paid by the hour,Sawmills and wood preservation,,
-2015,Manitoba,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2015,Manitoba,Employees paid by the hour,Other wood product manufacturing,,
-2015,Manitoba,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2015,Manitoba,Employees paid by the hour,Cement and concrete product manufacturing,,
-2015,Manitoba,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2015,Manitoba,Employees paid by the hour,Primary metal manufacturing,,
-2015,Manitoba,Employees paid by the hour,Fabricated metal product manufacturing,,0.54
-2015,Manitoba,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2015,Manitoba,Employees paid by the hour,Machinery manufacturing,,0.73
-2015,Manitoba,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2015,Manitoba,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2015,Manitoba,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2015,Manitoba,Employees paid by the hour,Computer and electronic product manufacturing,,
-2015,Manitoba,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Manitoba,Employees paid by the hour,Electrical equipment manufacturing,,
-2015,Manitoba,Employees paid by the hour,Transportation equipment manufacturing,,0.81
-2015,Manitoba,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2015,Manitoba,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2015,Manitoba,Employees paid by the hour,Furniture and related product manufacturing,,0.44
-2015,Manitoba,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.4
-2015,Manitoba,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2015,Manitoba,Employees paid by the hour,Other furniture-related product manufacturing,,
-2015,Manitoba,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2015,Manitoba,Employees paid by the hour,Other miscellaneous manufacturing,,
-2015,Saskatchewan,All employees,Manufacturing,47,5.1
-2015,Saskatchewan,All employees,Non-durable goods,,1.78
-2015,Saskatchewan,All employees,Food manufacturing,,0.82
-2015,Saskatchewan,All employees,Animal food manufacturing,,0.09
-2015,Saskatchewan,All employees,Grain and oilseed milling,,0.18
-2015,Saskatchewan,All employees,Meat product manufacturing,,0.33
-2015,Saskatchewan,All employees,Beverage and tobacco product manufacturing,,0.13
-2015,Saskatchewan,All employees,Cannabis product manufacturing,,
-2015,Saskatchewan,All employees,Printing and related support activities,,0.13
-2015,Saskatchewan,All employees,Chemical manufacturing,,0.28
-2015,Saskatchewan,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.14
-2015,Saskatchewan,All employees,Durable goods,,3.32
-2015,Saskatchewan,All employees,Wood product manufacturing,,0.32
-2015,Saskatchewan,All employees,Sawmills and wood preservation,,0.1
-2015,Saskatchewan,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.12
-2015,Saskatchewan,All employees,Other wood product manufacturing,,0.1
-2015,Saskatchewan,All employees,Cement and concrete product manufacturing,,0.19
-2015,Saskatchewan,All employees,Fabricated metal product manufacturing,,0.7
-2015,Saskatchewan,All employees,Architectural and structural metals manufacturing,,0.3
-2015,Saskatchewan,All employees,"Coating, engraving, cold and heat treating and allied activities",,
-2015,Saskatchewan,All employees,Machinery manufacturing,,1.13
-2015,Saskatchewan,All employees,"Agricultural, construction and mining machinery manufacturing",,0.81
-2015,Saskatchewan,All employees,Computer and electronic product manufacturing,,
-2015,Saskatchewan,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Saskatchewan,All employees,Motor vehicle body and trailer manufacturing,,0.17
-2015,Saskatchewan,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.15
-2015,Saskatchewan,All employees,Miscellaneous manufacturing,,0.14
-2015,Saskatchewan,All employees,Medical equipment and supplies manufacturing,,0.06
-2015,Saskatchewan,All employees,Other miscellaneous manufacturing,,0.08
-2015,Saskatchewan,Salaried employees paid a fixed salary,Manufacturing,,1.41
-2015,Saskatchewan,Salaried employees paid a fixed salary,Non-durable goods,,0.59
-2015,Saskatchewan,Salaried employees paid a fixed salary,Food manufacturing,,0.16
-2015,Saskatchewan,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2015,Saskatchewan,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2015,Saskatchewan,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,Saskatchewan,Salaried employees paid a fixed salary,Printing and related support activities,,
-2015,Saskatchewan,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2015,Saskatchewan,Salaried employees paid a fixed salary,Durable goods,,0.82
-2015,Saskatchewan,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.12
-2015,Saskatchewan,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2015,Saskatchewan,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2015,Saskatchewan,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2015,Saskatchewan,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2015,Saskatchewan,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Saskatchewan,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.04
-2015,Saskatchewan,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2015,Saskatchewan,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2015,Saskatchewan,Employees paid by the hour,Manufacturing,,3.47
-2015,Saskatchewan,Employees paid by the hour,Non-durable goods,,1.11
-2015,Saskatchewan,Employees paid by the hour,Food manufacturing,,0.62
-2015,Saskatchewan,Employees paid by the hour,Grain and oilseed milling,,
-2015,Saskatchewan,Employees paid by the hour,Meat product manufacturing,,
-2015,Saskatchewan,Employees paid by the hour,Cannabis product manufacturing,,
-2015,Saskatchewan,Employees paid by the hour,Printing and related support activities,,
-2015,Saskatchewan,Employees paid by the hour,Chemical manufacturing,,
-2015,Saskatchewan,Employees paid by the hour,Durable goods,,2.37
-2015,Saskatchewan,Employees paid by the hour,Fabricated metal product manufacturing,,0.54
-2015,Saskatchewan,Employees paid by the hour,Machinery manufacturing,,
-2015,Saskatchewan,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2015,Saskatchewan,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2015,Saskatchewan,Employees paid by the hour,Computer and electronic product manufacturing,,
-2015,Saskatchewan,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Saskatchewan,Employees paid by the hour,Transportation equipment manufacturing,,0.17
-2015,Saskatchewan,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2015,Saskatchewan,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2015,Alberta,All employees,Manufacturing,48,6.44
-2015,Alberta,All employees,Non-durable goods,,2.54
-2015,Alberta,All employees,Food manufacturing,,0.91
-2015,Alberta,All employees,Animal food manufacturing,,0.07
-2015,Alberta,All employees,Grain and oilseed milling,,0.04
-2015,Alberta,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.04
-2015,Alberta,All employees,Meat product manufacturing,,0.43
-2015,Alberta,All employees,Bakeries and tortilla manufacturing,,0.14
-2015,Alberta,All employees,Other food manufacturing,,0.13
-2015,Alberta,All employees,Beverage and tobacco product manufacturing,,0.12
-2015,Alberta,All employees,Cannabis product manufacturing,,
-2015,Alberta,All employees,Cut and sew clothing manufacturing,,
-2015,Alberta,All employees,Other leather and allied product manufacturing,,
-2015,Alberta,All employees,Paper manufacturing,,0.17
-2015,Alberta,All employees,"Pulp, paper and paperboard mills",,0.14
-2015,Alberta,All employees,Converted paper product manufacturing,,0.03
-2015,Alberta,All employees,Printing and related support activities,,0.23
-2015,Alberta,All employees,Petroleum and coal product manufacturing,,0.29
-2015,Alberta,All employees,Chemical manufacturing,,0.5
-2015,Alberta,All employees,Basic chemical manufacturing,,0.14
-2015,Alberta,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.14
-2015,Alberta,All employees,Other chemical product manufacturing,,0.09
-2015,Alberta,All employees,Plastics and rubber products manufacturing,,0.28
-2015,Alberta,All employees,Durable goods,,3.9
-2015,Alberta,All employees,Wood product manufacturing,,0.51
-2015,Alberta,All employees,Sawmills and wood preservation,,0.18
-2015,Alberta,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
-2015,Alberta,All employees,Other wood product manufacturing,,0.19
-2015,Alberta,All employees,Non-metallic mineral product manufacturing,,0.31
-2015,Alberta,All employees,Glass and glass product manufacturing,,
-2015,Alberta,All employees,Cement and concrete product manufacturing,,0.2
-2015,Alberta,All employees,Other non-metallic mineral product manufacturing,,0.06
-2015,Alberta,All employees,Primary metal manufacturing,,0.15
-2015,Alberta,All employees,Fabricated metal product manufacturing,,1.17
-2015,Alberta,All employees,Forging and stamping,,
-2015,Alberta,All employees,Architectural and structural metals manufacturing,,0.48
-2015,Alberta,All employees,"Boiler, tank and shipping container manufacturing",,0.18
-2015,Alberta,All employees,Spring and wire product manufacturing,,0.03
-2015,Alberta,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.21
-2015,Alberta,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.09
-2015,Alberta,All employees,Other fabricated metal product manufacturing,,0.17
-2015,Alberta,All employees,Machinery manufacturing,,0.96
-2015,Alberta,All employees,"Agricultural, construction and mining machinery manufacturing",,0.53
-2015,Alberta,All employees,Industrial machinery manufacturing,,0.02
-2015,Alberta,All employees,Commercial and service industry machinery manufacturing,,0.02
-2015,Alberta,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
-2015,Alberta,All employees,Metalworking machinery manufacturing,,0.04
-2015,Alberta,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.02
-2015,Alberta,All employees,Other general-purpose machinery manufacturing,,0.26
-2015,Alberta,All employees,Computer and electronic product manufacturing,,0.16
-2015,Alberta,All employees,Computer and peripheral equipment manufacturing,,0.02
-2015,Alberta,All employees,Communications equipment manufacturing,,0.02
-2015,Alberta,All employees,Semiconductor and other electronic component manufacturing,,0.03
-2015,Alberta,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.09
-2015,Alberta,All employees,"Electrical equipment, appliance and component manufacturing",,0.12
-2015,Alberta,All employees,Electrical equipment manufacturing,,0.07
-2015,Alberta,All employees,Other electrical equipment and component manufacturing,,0.04
-2015,Alberta,All employees,Transportation equipment manufacturing,,0.11
-2015,Alberta,All employees,Motor vehicle body and trailer manufacturing,,0.06
-2015,Alberta,All employees,Motor vehicle parts manufacturing,,0.02
-2015,Alberta,All employees,Aerospace product and parts manufacturing,,
-2015,Alberta,All employees,Furniture and related product manufacturing,,0.19
-2015,Alberta,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.12
-2015,Alberta,All employees,Office furniture (including fixtures) manufacturing,,0.04
-2015,Alberta,All employees,Other furniture-related product manufacturing,,0.03
-2015,Alberta,All employees,Miscellaneous manufacturing,,0.23
-2015,Alberta,All employees,Medical equipment and supplies manufacturing,,0.09
-2015,Alberta,All employees,Other miscellaneous manufacturing,,0.14
-2015,Alberta,Salaried employees paid a fixed salary,Manufacturing,,2.24
-2015,Alberta,Salaried employees paid a fixed salary,Non-durable goods,,
-2015,Alberta,Salaried employees paid a fixed salary,Food manufacturing,,0.18
-2015,Alberta,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2015,Alberta,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Paper manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2015,Alberta,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Printing and related support activities,,
-2015,Alberta,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2015,Alberta,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.07
-2015,Alberta,Salaried employees paid a fixed salary,Durable goods,,1.07
-2015,Alberta,Salaried employees paid a fixed salary,Wood product manufacturing,,0.08
-2015,Alberta,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2015,Alberta,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.03
-2015,Alberta,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.25
-2015,Alberta,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.1
-2015,Alberta,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2015,Alberta,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2015,Alberta,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2015,Alberta,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2015,Alberta,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Alberta,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2015,Alberta,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2015,Alberta,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2015,Alberta,Employees paid by the hour,Manufacturing,,3.98
-2015,Alberta,Employees paid by the hour,Non-durable goods,,
-2015,Alberta,Employees paid by the hour,Food manufacturing,,0.7
-2015,Alberta,Employees paid by the hour,Grain and oilseed milling,,
-2015,Alberta,Employees paid by the hour,Meat product manufacturing,,
-2015,Alberta,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2015,Alberta,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2015,Alberta,Employees paid by the hour,Cannabis product manufacturing,,
-2015,Alberta,Employees paid by the hour,Paper manufacturing,,
-2015,Alberta,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2015,Alberta,Employees paid by the hour,Converted paper product manufacturing,,
-2015,Alberta,Employees paid by the hour,Printing and related support activities,,
-2015,Alberta,Employees paid by the hour,Chemical manufacturing,,
-2015,Alberta,Employees paid by the hour,Basic chemical manufacturing,,
-2015,Alberta,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2015,Alberta,Employees paid by the hour,Other chemical product manufacturing,,
-2015,Alberta,Employees paid by the hour,Plastics and rubber products manufacturing,,0.2
-2015,Alberta,Employees paid by the hour,Durable goods,,2.62
-2015,Alberta,Employees paid by the hour,Wood product manufacturing,,0.4
-2015,Alberta,Employees paid by the hour,Sawmills and wood preservation,,
-2015,Alberta,Employees paid by the hour,Other wood product manufacturing,,0.15
-2015,Alberta,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2015,Alberta,Employees paid by the hour,Cement and concrete product manufacturing,,
-2015,Alberta,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2015,Alberta,Employees paid by the hour,Fabricated metal product manufacturing,,0.85
-2015,Alberta,Employees paid by the hour,Architectural and structural metals manufacturing,,0.35
-2015,Alberta,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2015,Alberta,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2015,Alberta,Employees paid by the hour,Machinery manufacturing,,
-2015,Alberta,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2015,Alberta,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2015,Alberta,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2015,Alberta,Employees paid by the hour,Computer and electronic product manufacturing,,
-2015,Alberta,Employees paid by the hour,Communications equipment manufacturing,,
-2015,Alberta,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,Alberta,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2015,Alberta,Employees paid by the hour,Electrical equipment manufacturing,,
-2015,Alberta,Employees paid by the hour,Transportation equipment manufacturing,,
-2015,Alberta,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2015,Alberta,Employees paid by the hour,Motor vehicle parts manufacturing,,
-2015,Alberta,Employees paid by the hour,Furniture and related product manufacturing,,
-2015,Alberta,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2015,Alberta,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2015,Alberta,Employees paid by the hour,Other furniture-related product manufacturing,,
-2015,Alberta,Employees paid by the hour,Miscellaneous manufacturing,,
-2015,Alberta,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2015,Alberta,Employees paid by the hour,Other miscellaneous manufacturing,,
-2015,British Columbia,All employees,Manufacturing,59,6.9
-2015,British Columbia,All employees,Non-durable goods,,2.8
-2015,British Columbia,All employees,Food manufacturing,,1.2
-2015,British Columbia,All employees,Animal food manufacturing,,0.04
-2015,British Columbia,All employees,Grain and oilseed milling,,0.01
-2015,British Columbia,All employees,Sugar and confectionery product manufacturing,,0.06
-2015,British Columbia,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.07
-2015,British Columbia,All employees,Dairy product manufacturing,,0.11
-2015,British Columbia,All employees,Meat product manufacturing,,0.23
-2015,British Columbia,All employees,Seafood product preparation and packaging,,0.18
-2015,British Columbia,All employees,Bakeries and tortilla manufacturing,,0.28
-2015,British Columbia,All employees,Other food manufacturing,,0.22
-2015,British Columbia,All employees,Beverage and tobacco product manufacturing,,0.26
-2015,British Columbia,All employees,Cannabis product manufacturing,,
-2015,British Columbia,All employees,Fabric mills,,
-2015,British Columbia,All employees,Textile product mills,,0.04
-2015,British Columbia,All employees,Textile furnishings mills,,0.01
-2015,British Columbia,All employees,Other textile product mills,,0.03
-2015,British Columbia,All employees,Clothing manufacturing,,0.1
-2015,British Columbia,All employees,Cut and sew clothing manufacturing,,0.08
-2015,British Columbia,All employees,Other leather and allied product manufacturing,,0
-2015,British Columbia,All employees,Paper manufacturing,,0.41
-2015,British Columbia,All employees,"Pulp, paper and paperboard mills",,0.31
-2015,British Columbia,All employees,Converted paper product manufacturing,,0.1
-2015,British Columbia,All employees,Printing and related support activities,,0.21
-2015,British Columbia,All employees,Petroleum and coal product manufacturing,,0.04
-2015,British Columbia,All employees,Chemical manufacturing,,0.27
-2015,British Columbia,All employees,Basic chemical manufacturing,,0.03
-2015,British Columbia,All employees,Pharmaceutical and medicine manufacturing,,0.1
-2015,British Columbia,All employees,"Paint, coating and adhesive manufacturing",,0.03
-2015,British Columbia,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.05
-2015,British Columbia,All employees,Other chemical product manufacturing,,0.03
-2015,British Columbia,All employees,Plastics and rubber products manufacturing,,0.26
-2015,British Columbia,All employees,Plastic product manufacturing,,
-2015,British Columbia,All employees,Durable goods,,4.1
-2015,British Columbia,All employees,Wood product manufacturing,,1.27
-2015,British Columbia,All employees,Sawmills and wood preservation,,0.72
-2015,British Columbia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.22
-2015,British Columbia,All employees,Other wood product manufacturing,,0.33
-2015,British Columbia,All employees,Non-metallic mineral product manufacturing,,0.28
-2015,British Columbia,All employees,Glass and glass product manufacturing,,0.06
-2015,British Columbia,All employees,Cement and concrete product manufacturing,,0.16
-2015,British Columbia,All employees,Other non-metallic mineral product manufacturing,,0.03
-2015,British Columbia,All employees,Primary metal manufacturing,,0.19
-2015,British Columbia,All employees,Fabricated metal product manufacturing,,0.56
-2015,British Columbia,All employees,Forging and stamping,,0.01
-2015,British Columbia,All employees,Cutlery and hand tool manufacturing,,0.01
-2015,British Columbia,All employees,Architectural and structural metals manufacturing,,0.29
-2015,British Columbia,All employees,"Boiler, tank and shipping container manufacturing",,0.03
-2015,British Columbia,All employees,Spring and wire product manufacturing,,0.01
-2015,British Columbia,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.1
-2015,British Columbia,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
-2015,British Columbia,All employees,Other fabricated metal product manufacturing,,0.06
-2015,British Columbia,All employees,Machinery manufacturing,,0.42
-2015,British Columbia,All employees,"Agricultural, construction and mining machinery manufacturing",,0.06
-2015,British Columbia,All employees,Industrial machinery manufacturing,,0.08
-2015,British Columbia,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
-2015,British Columbia,All employees,Metalworking machinery manufacturing,,0.04
-2015,British Columbia,All employees,Other general-purpose machinery manufacturing,,0.11
-2015,British Columbia,All employees,Computer and electronic product manufacturing,,0.27
-2015,British Columbia,All employees,Computer and peripheral equipment manufacturing,,0.04
-2015,British Columbia,All employees,Communications equipment manufacturing,,0.04
-2015,British Columbia,All employees,Semiconductor and other electronic component manufacturing,,0.07
-2015,British Columbia,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.11
-2015,British Columbia,All employees,"Electrical equipment, appliance and component manufacturing",,0.15
-2015,British Columbia,All employees,Electrical equipment manufacturing,,0.04
-2015,British Columbia,All employees,Other electrical equipment and component manufacturing,,0.08
-2015,British Columbia,All employees,Transportation equipment manufacturing,,0.34
-2015,British Columbia,All employees,Motor vehicle body and trailer manufacturing,,0.08
-2015,British Columbia,All employees,Aerospace product and parts manufacturing,,0.1
-2015,British Columbia,All employees,Ship and boat building,,0.08
-2015,British Columbia,All employees,Furniture and related product manufacturing,,0.3
-2015,British Columbia,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.24
-2015,British Columbia,All employees,Office furniture (including fixtures) manufacturing,,0.03
-2015,British Columbia,All employees,Other furniture-related product manufacturing,,0.03
-2015,British Columbia,All employees,Miscellaneous manufacturing,,0.32
-2015,British Columbia,All employees,Medical equipment and supplies manufacturing,,0.1
-2015,British Columbia,All employees,Other miscellaneous manufacturing,,0.22
-2015,British Columbia,Salaried employees paid a fixed salary,Manufacturing,,1.68
-2015,British Columbia,Salaried employees paid a fixed salary,Non-durable goods,,0.71
-2015,British Columbia,Salaried employees paid a fixed salary,Food manufacturing,,0.18
-2015,British Columbia,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2015,British Columbia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Paper manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2015,British Columbia,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Printing and related support activities,,
-2015,British Columbia,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2015,British Columbia,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Plastic product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Durable goods,,0.97
-2015,British Columbia,Salaried employees paid a fixed salary,Wood product manufacturing,,0.2
-2015,British Columbia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.11
-2015,British Columbia,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2015,British Columbia,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.1
-2015,British Columbia,Salaried employees paid a fixed salary,Forging and stamping,,
-2015,British Columbia,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2015,British Columbia,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2015,British Columbia,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2015,British Columbia,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,British Columbia,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.07
-2015,British Columbia,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Ship and boat building,,
-2015,British Columbia,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2015,British Columbia,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2015,British Columbia,Employees paid by the hour,Manufacturing,,4.87
-2015,British Columbia,Employees paid by the hour,Non-durable goods,,1.97
-2015,British Columbia,Employees paid by the hour,Food manufacturing,,0.98
-2015,British Columbia,Employees paid by the hour,Animal food manufacturing,,
-2015,British Columbia,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2015,British Columbia,Employees paid by the hour,Meat product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Seafood product preparation and packaging,,
-2015,British Columbia,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.22
-2015,British Columbia,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Cannabis product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Clothing manufacturing,,
-2015,British Columbia,Employees paid by the hour,Other leather and allied product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Paper manufacturing,,
-2015,British Columbia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2015,British Columbia,Employees paid by the hour,Converted paper product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Printing and related support activities,,
-2015,British Columbia,Employees paid by the hour,Basic chemical manufacturing,,
-2015,British Columbia,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2015,British Columbia,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2015,British Columbia,Employees paid by the hour,Other chemical product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2015,British Columbia,Employees paid by the hour,Plastic product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Durable goods,,2.9
-2015,British Columbia,Employees paid by the hour,Wood product manufacturing,,1.02
-2015,British Columbia,Employees paid by the hour,Sawmills and wood preservation,,0.58
-2015,British Columbia,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2015,British Columbia,Employees paid by the hour,Other wood product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Glass and glass product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Cement and concrete product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Primary metal manufacturing,,
-2015,British Columbia,Employees paid by the hour,Fabricated metal product manufacturing,,0.41
-2015,British Columbia,Employees paid by the hour,Forging and stamping,,
-2015,British Columbia,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2015,British Columbia,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2015,British Columbia,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2015,British Columbia,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2015,British Columbia,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Machinery manufacturing,,
-2015,British Columbia,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2015,British Columbia,Employees paid by the hour,Industrial machinery manufacturing,,
-2015,British Columbia,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2015,British Columbia,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2015,British Columbia,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2015,British Columbia,Employees paid by the hour,Electrical equipment manufacturing,,
-2015,British Columbia,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2015,British Columbia,Employees paid by the hour,Transportation equipment manufacturing,,0.26
-2015,British Columbia,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2015,British Columbia,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2015,British Columbia,Employees paid by the hour,Ship and boat building,,
-2015,British Columbia,Employees paid by the hour,Furniture and related product manufacturing,,
-2015,British Columbia,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2015,British Columbia,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2015,British Columbia,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2015,British Columbia,Employees paid by the hour,Other miscellaneous manufacturing,,
-2015,Yukon,All employees,Cannabis product manufacturing,,
-2015,Yukon,All employees,Durable goods,,
-2015,Yukon,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,Yukon,Salaried employees paid a fixed salary,Durable goods,,
-2015,Yukon,Employees paid by the hour,Cannabis product manufacturing,,
-2015,Yukon,Employees paid by the hour,Durable goods,,
-2015,Northwest Territories,All employees,Cannabis product manufacturing,,
-2015,Northwest Territories,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,Northwest Territories,Employees paid by the hour,Cannabis product manufacturing,,
-2015,Nunavut,All employees,Cannabis product manufacturing,,
-2015,Nunavut,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2015,Nunavut,Employees paid by the hour,Cannabis product manufacturing,,
-2016,Canada,All employees,Non-durable goods,,3.8
-2016,Canada,All employees,Food manufacturing,,1.39
-2016,Canada,All employees,Animal food manufacturing,,0.06
-2016,Canada,All employees,Grain and oilseed milling,,0.04
-2016,Canada,All employees,Sugar and confectionery product manufacturing,,0.06
-2016,Canada,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.11
-2016,Canada,All employees,Dairy product manufacturing,,0.14
-2016,Canada,All employees,Meat product manufacturing,,0.35
-2016,Canada,All employees,Seafood product preparation and packaging,,0.14
-2016,Canada,All employees,Bakeries and tortilla manufacturing,,0.28
-2016,Canada,All employees,Other food manufacturing,,0.19
-2016,Canada,All employees,Beverage and tobacco product manufacturing,,0.23
-2016,Canada,All employees,Beverage manufacturing,,0.22
-2016,Canada,All employees,Tobacco manufacturing,,0.02
-2016,Canada,All employees,Cannabis product manufacturing,,
-2016,Canada,All employees,Textile mills,,0.05
-2016,Canada,All employees,"Fibre, yarn and thread mills",,0.01
-2016,Canada,All employees,Fabric mills,,0.03
-2016,Canada,All employees,Textile and fabric finishing and fabric coating,,0.01
-2016,Canada,All employees,Textile product mills,,0.06
-2016,Canada,All employees,Textile furnishings mills,,0.02
-2016,Canada,All employees,Other textile product mills,,0.04
-2016,Canada,All employees,Clothing manufacturing,,0.12
-2016,Canada,All employees,Clothing knitting mills,,0.01
-2016,Canada,All employees,Cut and sew clothing manufacturing,,0.1
-2016,Canada,All employees,Clothing accessories and other clothing manufacturing,,0.01
-2016,Canada,All employees,Leather and allied product manufacturing,,0.02
-2016,Canada,All employees,Leather and hide tanning and finishing,,0
-2016,Canada,All employees,Footwear manufacturing,,0.01
-2016,Canada,All employees,Other leather and allied product manufacturing,,0.01
-2016,Canada,All employees,Paper manufacturing,,0.33
-2016,Canada,All employees,"Pulp, paper and paperboard mills",,0.15
-2016,Canada,All employees,Converted paper product manufacturing,,0.19
-2016,Canada,All employees,Printing and related support activities,,0.31
-2016,Canada,All employees,Petroleum and coal product manufacturing,,0.12
-2016,Canada,All employees,Chemical manufacturing,,0.56
-2016,Canada,All employees,Basic chemical manufacturing,,0.07
-2016,Canada,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.04
-2016,Canada,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
-2016,Canada,All employees,Pharmaceutical and medicine manufacturing,,0.18
-2016,Canada,All employees,"Paint, coating and adhesive manufacturing",,0.05
-2016,Canada,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.1
-2016,Canada,All employees,Other chemical product manufacturing,,0.07
-2016,Canada,All employees,Plastics and rubber products manufacturing,,0.61
-2016,Canada,All employees,Plastic product manufacturing,,0.51
-2016,Canada,All employees,Rubber product manufacturing,,0.1
-2016,Canada,All employees,Durable goods,,5.48
-2016,Canada,All employees,Wood product manufacturing,,0.58
-2016,Canada,All employees,Sawmills and wood preservation,,0.23
-2016,Canada,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.11
-2016,Canada,All employees,Other wood product manufacturing,,0.24
-2016,Canada,All employees,Non-metallic mineral product manufacturing,,0.31
-2016,Canada,All employees,Clay product and refractory manufacturing,,0.01
-2016,Canada,All employees,Glass and glass product manufacturing,,0.05
-2016,Canada,All employees,Cement and concrete product manufacturing,,0.18
-2016,Canada,All employees,Lime and gypsum product manufacturing,,0.01
-2016,Canada,All employees,Other non-metallic mineral product manufacturing,,0.06
-2016,Canada,All employees,Primary metal manufacturing,,0.34
-2016,Canada,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.1
-2016,Canada,All employees,Steel product manufacturing from purchased steel,,0.04
-2016,Canada,All employees,Alumina and aluminum production and processing,,0.06
-2016,Canada,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
-2016,Canada,All employees,Foundries,,0.06
-2016,Canada,All employees,Fabricated metal product manufacturing,,0.95
-2016,Canada,All employees,Forging and stamping,,0.04
-2016,Canada,All employees,Cutlery and hand tool manufacturing,,0.02
-2016,Canada,All employees,Architectural and structural metals manufacturing,,0.37
-2016,Canada,All employees,"Boiler, tank and shipping container manufacturing",,0.07
-2016,Canada,All employees,Hardware manufacturing,,0.03
-2016,Canada,All employees,Spring and wire product manufacturing,,0.03
-2016,Canada,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.2
-2016,Canada,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2016,Canada,All employees,Other fabricated metal product manufacturing,,0.13
-2016,Canada,All employees,Machinery manufacturing,,0.8
-2016,Canada,All employees,"Agricultural, construction and mining machinery manufacturing",,0.17
-2016,Canada,All employees,Industrial machinery manufacturing,,0.09
-2016,Canada,All employees,Commercial and service industry machinery manufacturing,,0.09
-2016,Canada,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.09
-2016,Canada,All employees,Metalworking machinery manufacturing,,0.13
-2016,Canada,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.04
-2016,Canada,All employees,Other general-purpose machinery manufacturing,,0.18
-2016,Canada,All employees,Computer and electronic product manufacturing,,0.35
-2016,Canada,All employees,Computer and peripheral equipment manufacturing,,0.03
-2016,Canada,All employees,Communications equipment manufacturing,,0.08
-2016,Canada,All employees,Audio and video equipment manufacturing,,0.01
-2016,Canada,All employees,Semiconductor and other electronic component manufacturing,,0.09
-2016,Canada,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.12
-2016,Canada,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
-2016,Canada,All employees,"Electrical equipment, appliance and component manufacturing",,0.2
-2016,Canada,All employees,Electric lighting equipment manufacturing,,0.03
-2016,Canada,All employees,Household appliance manufacturing,,0.01
-2016,Canada,All employees,Electrical equipment manufacturing,,0.09
-2016,Canada,All employees,Other electrical equipment and component manufacturing,,0.07
-2016,Canada,All employees,Transportation equipment manufacturing,,1.2
-2016,Canada,All employees,Motor vehicle manufacturing,,0.27
-2016,Canada,All employees,Motor vehicle body and trailer manufacturing,,0.08
-2016,Canada,All employees,Motor vehicle parts manufacturing,,0.45
-2016,Canada,All employees,Aerospace product and parts manufacturing,,0.29
-2016,Canada,All employees,Railroad rolling stock manufacturing,,0.02
-2016,Canada,All employees,Ship and boat building,,0.05
-2016,Canada,All employees,Other transportation equipment manufacturing,,0.05
-2016,Canada,All employees,Furniture and related product manufacturing,,0.41
-2016,Canada,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.25
-2016,Canada,All employees,Office furniture (including fixtures) manufacturing,,0.13
-2016,Canada,All employees,Other furniture-related product manufacturing,,0.03
-2016,Canada,All employees,Miscellaneous manufacturing,,0.35
-2016,Canada,All employees,Medical equipment and supplies manufacturing,,0.11
-2016,Canada,All employees,Other miscellaneous manufacturing,,0.24
-2016,Canada,Salaried employees paid a fixed salary,Manufacturing,,2.49
-2016,Canada,Salaried employees paid a fixed salary,Non-durable goods,,1.11
-2016,Canada,Salaried employees paid a fixed salary,Food manufacturing,,0.27
-2016,Canada,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2016,Canada,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,0.03
-2016,Canada,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.05
-2016,Canada,Salaried employees paid a fixed salary,Other food manufacturing,,0.04
-2016,Canada,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Beverage manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Tobacco manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Textile mills,,0.01
-2016,Canada,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,0
-2016,Canada,Salaried employees paid a fixed salary,Fabric mills,,0.01
-2016,Canada,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
-2016,Canada,Salaried employees paid a fixed salary,Textile product mills,,0.01
-2016,Canada,Salaried employees paid a fixed salary,Clothing manufacturing,,0.03
-2016,Canada,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,0.02
-2016,Canada,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
-2016,Canada,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2016,Canada,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Paper manufacturing,,0.13
-2016,Canada,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2016,Canada,Salaried employees paid a fixed salary,Printing and related support activities,,0.07
-2016,Canada,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Chemical manufacturing,,0.27
-2016,Canada,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2016,Canada,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2016,Canada,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,0.04
-2016,Canada,Salaried employees paid a fixed salary,Other chemical product manufacturing,,0.03
-2016,Canada,Salaried employees paid a fixed salary,Rubber product manufacturing,,0.02
-2016,Canada,Salaried employees paid a fixed salary,Durable goods,,1.38
-2016,Canada,Salaried employees paid a fixed salary,Wood product manufacturing,,0.08
-2016,Canada,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.03
-2016,Canada,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,0.02
-2016,Canada,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.02
-2016,Canada,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.07
-2016,Canada,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,0.04
-2016,Canada,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.09
-2016,Canada,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2016,Canada,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2016,Canada,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2016,Canada,Salaried employees paid a fixed salary,Foundries,,0.01
-2016,Canada,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.22
-2016,Canada,Salaried employees paid a fixed salary,Forging and stamping,,
-2016,Canada,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.09
-2016,Canada,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,0.02
-2016,Canada,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
-2016,Canada,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,0.02
-2016,Canada,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,0.03
-2016,Canada,Salaried employees paid a fixed salary,Machinery manufacturing,,0.23
-2016,Canada,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,0.04
-2016,Canada,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2016,Canada,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,0.03
-2016,Canada,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2016,Canada,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,0.05
-2016,Canada,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.18
-2016,Canada,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Communications equipment manufacturing,,0.04
-2016,Canada,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,0.04
-2016,Canada,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,0.07
-2016,Canada,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.09
-2016,Canada,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.25
-2016,Canada,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,0.09
-2016,Canada,Salaried employees paid a fixed salary,Ship and boat building,,
-2016,Canada,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.06
-2016,Canada,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.03
-2016,Canada,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,0.02
-2016,Canada,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.1
-2016,Canada,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2016,Canada,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.06
-2016,Canada,Employees paid by the hour,Manufacturing,,6.41
-2016,Canada,Employees paid by the hour,Non-durable goods,,2.57
-2016,Canada,Employees paid by the hour,Food manufacturing,,1.09
-2016,Canada,Employees paid by the hour,Animal food manufacturing,,
-2016,Canada,Employees paid by the hour,Grain and oilseed milling,,
-2016,Canada,Employees paid by the hour,Sugar and confectionery product manufacturing,,
-2016,Canada,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2016,Canada,Employees paid by the hour,Dairy product manufacturing,,
-2016,Canada,Employees paid by the hour,Meat product manufacturing,,0.29
-2016,Canada,Employees paid by the hour,Seafood product preparation and packaging,,0.11
-2016,Canada,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.22
-2016,Canada,Employees paid by the hour,Other food manufacturing,,0.14
-2016,Canada,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2016,Canada,Employees paid by the hour,Beverage manufacturing,,
-2016,Canada,Employees paid by the hour,Tobacco manufacturing,,
-2016,Canada,Employees paid by the hour,Cannabis product manufacturing,,
-2016,Canada,Employees paid by the hour,Textile mills,,0.03
-2016,Canada,Employees paid by the hour,"Fibre, yarn and thread mills",,0.01
-2016,Canada,Employees paid by the hour,Fabric mills,,0.02
-2016,Canada,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
-2016,Canada,Employees paid by the hour,Textile product mills,,0.04
-2016,Canada,Employees paid by the hour,Clothing manufacturing,,0.08
-2016,Canada,Employees paid by the hour,Cut and sew clothing manufacturing,,0.06
-2016,Canada,Employees paid by the hour,Leather and allied product manufacturing,,0.02
-2016,Canada,Employees paid by the hour,Leather and hide tanning and finishing,,
-2016,Canada,Employees paid by the hour,Footwear manufacturing,,0.01
-2016,Canada,Employees paid by the hour,Other leather and allied product manufacturing,,
-2016,Canada,Employees paid by the hour,Paper manufacturing,,0.2
-2016,Canada,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2016,Canada,Employees paid by the hour,Printing and related support activities,,0.22
-2016,Canada,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2016,Canada,Employees paid by the hour,Chemical manufacturing,,0.28
-2016,Canada,Employees paid by the hour,Basic chemical manufacturing,,
-2016,Canada,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2016,Canada,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2016,Canada,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2016,Canada,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,0.06
-2016,Canada,Employees paid by the hour,Other chemical product manufacturing,,0.04
-2016,Canada,Employees paid by the hour,Rubber product manufacturing,,0.08
-2016,Canada,Employees paid by the hour,Durable goods,,3.84
-2016,Canada,Employees paid by the hour,Wood product manufacturing,,0.47
-2016,Canada,Employees paid by the hour,Sawmills and wood preservation,,0.19
-2016,Canada,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.09
-2016,Canada,Employees paid by the hour,Other wood product manufacturing,,0.19
-2016,Canada,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.23
-2016,Canada,Employees paid by the hour,Clay product and refractory manufacturing,,
-2016,Canada,Employees paid by the hour,Glass and glass product manufacturing,,
-2016,Canada,Employees paid by the hour,Cement and concrete product manufacturing,,0.14
-2016,Canada,Employees paid by the hour,Lime and gypsum product manufacturing,,
-2016,Canada,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2016,Canada,Employees paid by the hour,Primary metal manufacturing,,0.24
-2016,Canada,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2016,Canada,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2016,Canada,Employees paid by the hour,Alumina and aluminum production and processing,,
-2016,Canada,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2016,Canada,Employees paid by the hour,Foundries,,0.04
-2016,Canada,Employees paid by the hour,Fabricated metal product manufacturing,,0.66
-2016,Canada,Employees paid by the hour,Forging and stamping,,
-2016,Canada,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2016,Canada,Employees paid by the hour,Architectural and structural metals manufacturing,,0.25
-2016,Canada,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,0.05
-2016,Canada,Employees paid by the hour,Hardware manufacturing,,
-2016,Canada,Employees paid by the hour,Spring and wire product manufacturing,,
-2016,Canada,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.15
-2016,Canada,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,0.05
-2016,Canada,Employees paid by the hour,Other fabricated metal product manufacturing,,0.08
-2016,Canada,Employees paid by the hour,Machinery manufacturing,,0.55
-2016,Canada,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,0.13
-2016,Canada,Employees paid by the hour,Industrial machinery manufacturing,,
-2016,Canada,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2016,Canada,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2016,Canada,Employees paid by the hour,Metalworking machinery manufacturing,,0.09
-2016,Canada,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2016,Canada,Employees paid by the hour,Other general-purpose machinery manufacturing,,0.12
-2016,Canada,Employees paid by the hour,Computer and electronic product manufacturing,,0.15
-2016,Canada,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
-2016,Canada,Employees paid by the hour,Communications equipment manufacturing,,0.04
-2016,Canada,Employees paid by the hour,Audio and video equipment manufacturing,,
-2016,Canada,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,0.04
-2016,Canada,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Canada,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.1
-2016,Canada,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2016,Canada,Employees paid by the hour,Household appliance manufacturing,,
-2016,Canada,Employees paid by the hour,Electrical equipment manufacturing,,
-2016,Canada,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2016,Canada,Employees paid by the hour,Transportation equipment manufacturing,,0.93
-2016,Canada,Employees paid by the hour,Motor vehicle manufacturing,,
-2016,Canada,Employees paid by the hour,Motor vehicle parts manufacturing,,
-2016,Canada,Employees paid by the hour,Aerospace product and parts manufacturing,,0.2
-2016,Canada,Employees paid by the hour,Ship and boat building,,
-2016,Canada,Employees paid by the hour,Other transportation equipment manufacturing,,
-2016,Canada,Employees paid by the hour,Furniture and related product manufacturing,,0.32
-2016,Canada,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.2
-2016,Canada,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,0.1
-2016,Canada,Employees paid by the hour,Other furniture-related product manufacturing,,
-2016,Canada,Employees paid by the hour,Miscellaneous manufacturing,,0.2
-2016,Canada,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2016,Canada,Employees paid by the hour,Other miscellaneous manufacturing,,0.14
-2016,Newfoundland and Labrador,All employees,Manufacturing,10,5.45
-2016,Newfoundland and Labrador,All employees,Non-durable goods,,4.28
-2016,Newfoundland and Labrador,All employees,Food manufacturing,,3.26
-2016,Newfoundland and Labrador,All employees,Seafood product preparation and packaging,,2.71
-2016,Newfoundland and Labrador,All employees,Cannabis product manufacturing,,
-2016,Newfoundland and Labrador,All employees,Durable goods,,1.17
-2016,Newfoundland and Labrador,All employees,Sawmills and wood preservation,,
-2016,Newfoundland and Labrador,All employees,Ship and boat building,,
-2016,Newfoundland and Labrador,All employees,Other miscellaneous manufacturing,,
-2016,Newfoundland and Labrador,Salaried employees paid a fixed salary,Manufacturing,,
-2016,Newfoundland and Labrador,Salaried employees paid a fixed salary,Non-durable goods,,
-2016,Newfoundland and Labrador,Salaried employees paid a fixed salary,Food manufacturing,,
-2016,Newfoundland and Labrador,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,Newfoundland and Labrador,Salaried employees paid a fixed salary,Durable goods,,0.23
-2016,Newfoundland and Labrador,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2016,Newfoundland and Labrador,Employees paid by the hour,Manufacturing,,
-2016,Newfoundland and Labrador,Employees paid by the hour,Non-durable goods,,
-2016,Newfoundland and Labrador,Employees paid by the hour,Food manufacturing,,
-2016,Newfoundland and Labrador,Employees paid by the hour,Cannabis product manufacturing,,
-2016,Newfoundland and Labrador,Employees paid by the hour,Durable goods,,0.88
-2016,Newfoundland and Labrador,Employees paid by the hour,Other miscellaneous manufacturing,,
-2016,Prince Edward Island,All employees,Manufacturing,11,7.58
-2016,Prince Edward Island,All employees,Non-durable goods,,5.06
-2016,Prince Edward Island,All employees,Food manufacturing,,3.56
-2016,Prince Edward Island,All employees,Seafood product preparation and packaging,,
-2016,Prince Edward Island,All employees,Cannabis product manufacturing,,
-2016,Prince Edward Island,All employees,Printing and related support activities,,0.15
-2016,Prince Edward Island,All employees,Durable goods,,2.52
-2016,Prince Edward Island,Salaried employees paid a fixed salary,Manufacturing,,2.72
-2016,Prince Edward Island,Salaried employees paid a fixed salary,Food manufacturing,,
-2016,Prince Edward Island,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2016,Prince Edward Island,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,Prince Edward Island,Salaried employees paid a fixed salary,Durable goods,,0.99
-2016,Prince Edward Island,Employees paid by the hour,Manufacturing,,4.67
-2016,Prince Edward Island,Employees paid by the hour,Food manufacturing,,
-2016,Prince Edward Island,Employees paid by the hour,Seafood product preparation and packaging,,
-2016,Prince Edward Island,Employees paid by the hour,Cannabis product manufacturing,,
-2016,Prince Edward Island,Employees paid by the hour,Durable goods,,1.38
-2016,Nova Scotia,All employees,Manufacturing,12,7.35
-2016,Nova Scotia,All employees,Non-durable goods,,4.58
-2016,Nova Scotia,All employees,Food manufacturing,,2.12
-2016,Nova Scotia,All employees,Animal food manufacturing,,
-2016,Nova Scotia,All employees,Dairy product manufacturing,,0.19
-2016,Nova Scotia,All employees,Meat product manufacturing,,0.12
-2016,Nova Scotia,All employees,Seafood product preparation and packaging,,1.28
-2016,Nova Scotia,All employees,Bakeries and tortilla manufacturing,,0.2
-2016,Nova Scotia,All employees,Beverage and tobacco product manufacturing,,0.24
-2016,Nova Scotia,All employees,Cannabis product manufacturing,,
-2016,Nova Scotia,All employees,Fabric mills,,
-2016,Nova Scotia,All employees,Clothing manufacturing,,0.09
-2016,Nova Scotia,All employees,Paper manufacturing,,0.24
-2016,Nova Scotia,All employees,"Pulp, paper and paperboard mills",,
-2016,Nova Scotia,All employees,Printing and related support activities,,0.19
-2016,Nova Scotia,All employees,Plastics and rubber products manufacturing,,1.18
-2016,Nova Scotia,All employees,Durable goods,,2.76
-2016,Nova Scotia,All employees,Wood product manufacturing,,0.47
-2016,Nova Scotia,All employees,Sawmills and wood preservation,,0.24
-2016,Nova Scotia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.1
-2016,Nova Scotia,All employees,Other wood product manufacturing,,0.12
-2016,Nova Scotia,All employees,Non-metallic mineral product manufacturing,,0.14
-2016,Nova Scotia,All employees,Cement and concrete product manufacturing,,0.11
-2016,Nova Scotia,All employees,Other non-metallic mineral product manufacturing,,
-2016,Nova Scotia,All employees,Fabricated metal product manufacturing,,0.49
-2016,Nova Scotia,All employees,Spring and wire product manufacturing,,0.02
-2016,Nova Scotia,All employees,Machinery manufacturing,,0.22
-2016,Nova Scotia,All employees,Commercial and service industry machinery manufacturing,,0.07
-2016,Nova Scotia,All employees,Other general-purpose machinery manufacturing,,0.04
-2016,Nova Scotia,All employees,Transportation equipment manufacturing,,0.95
-2016,Nova Scotia,All employees,Aerospace product and parts manufacturing,,0.41
-2016,Nova Scotia,All employees,Ship and boat building,,0.51
-2016,Nova Scotia,All employees,Miscellaneous manufacturing,,0.14
-2016,Nova Scotia,All employees,Medical equipment and supplies manufacturing,,0.04
-2016,Nova Scotia,All employees,Other miscellaneous manufacturing,,0.1
-2016,Nova Scotia,Salaried employees paid a fixed salary,Manufacturing,,1.81
-2016,Nova Scotia,Salaried employees paid a fixed salary,Non-durable goods,,0.98
-2016,Nova Scotia,Salaried employees paid a fixed salary,Food manufacturing,,0.29
-2016,Nova Scotia,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2016,Nova Scotia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2016,Nova Scotia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2016,Nova Scotia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,Nova Scotia,Salaried employees paid a fixed salary,Paper manufacturing,,
-2016,Nova Scotia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2016,Nova Scotia,Salaried employees paid a fixed salary,Printing and related support activities,,
-2016,Nova Scotia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2016,Nova Scotia,Salaried employees paid a fixed salary,Durable goods,,0.83
-2016,Nova Scotia,Salaried employees paid a fixed salary,Wood product manufacturing,,0.06
-2016,Nova Scotia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.04
-2016,Nova Scotia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2016,Nova Scotia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2016,Nova Scotia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.11
-2016,Nova Scotia,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2016,Nova Scotia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2016,Nova Scotia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2016,Nova Scotia,Salaried employees paid a fixed salary,Ship and boat building,,
-2016,Nova Scotia,Employees paid by the hour,Manufacturing,,5.17
-2016,Nova Scotia,Employees paid by the hour,Non-durable goods,,3.36
-2016,Nova Scotia,Employees paid by the hour,Food manufacturing,,1.69
-2016,Nova Scotia,Employees paid by the hour,Animal food manufacturing,,
-2016,Nova Scotia,Employees paid by the hour,Seafood product preparation and packaging,,
-2016,Nova Scotia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2016,Nova Scotia,Employees paid by the hour,Cannabis product manufacturing,,
-2016,Nova Scotia,Employees paid by the hour,Paper manufacturing,,
-2016,Nova Scotia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2016,Nova Scotia,Employees paid by the hour,Printing and related support activities,,
-2016,Nova Scotia,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2016,Nova Scotia,Employees paid by the hour,Durable goods,,1.81
-2016,Nova Scotia,Employees paid by the hour,Wood product manufacturing,,0.38
-2016,Nova Scotia,Employees paid by the hour,Sawmills and wood preservation,,0.2
-2016,Nova Scotia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2016,Nova Scotia,Employees paid by the hour,Cement and concrete product manufacturing,,
-2016,Nova Scotia,Employees paid by the hour,Fabricated metal product manufacturing,,0.35
-2016,Nova Scotia,Employees paid by the hour,Machinery manufacturing,,
-2016,Nova Scotia,Employees paid by the hour,Transportation equipment manufacturing,,
-2016,Nova Scotia,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2016,Nova Scotia,Employees paid by the hour,Ship and boat building,,
-2016,New Brunswick,All employees,Manufacturing,13,9.48
-2016,New Brunswick,All employees,Non-durable goods,,5.49
-2016,New Brunswick,All employees,Food manufacturing,,3.56
-2016,New Brunswick,All employees,Seafood product preparation and packaging,,1.45
-2016,New Brunswick,All employees,Beverage and tobacco product manufacturing,,0.23
-2016,New Brunswick,All employees,Cannabis product manufacturing,,
-2016,New Brunswick,All employees,"Fibre, yarn and thread mills",,
-2016,New Brunswick,All employees,Paper manufacturing,,0.87
-2016,New Brunswick,All employees,"Pulp, paper and paperboard mills",,0.71
-2016,New Brunswick,All employees,Converted paper product manufacturing,,0.17
-2016,New Brunswick,All employees,Printing and related support activities,,0.08
-2016,New Brunswick,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
-2016,New Brunswick,All employees,Durable goods,,3.99
-2016,New Brunswick,All employees,Wood product manufacturing,,1.48
-2016,New Brunswick,All employees,Sawmills and wood preservation,,0.79
-2016,New Brunswick,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.18
-2016,New Brunswick,All employees,Other wood product manufacturing,,0.51
-2016,New Brunswick,All employees,Non-metallic mineral product manufacturing,,0.28
-2016,New Brunswick,All employees,Other non-metallic mineral product manufacturing,,0.11
-2016,New Brunswick,All employees,Fabricated metal product manufacturing,,0.66
-2016,New Brunswick,All employees,Architectural and structural metals manufacturing,,0.43
-2016,New Brunswick,All employees,Machinery manufacturing,,0.3
-2016,New Brunswick,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.13
-2016,New Brunswick,All employees,Other general-purpose machinery manufacturing,,0.07
-2016,New Brunswick,All employees,Computer and electronic product manufacturing,,
-2016,New Brunswick,All employees,Furniture and related product manufacturing,,0.24
-2016,New Brunswick,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.22
-2016,New Brunswick,All employees,Miscellaneous manufacturing,,0.5
-2016,New Brunswick,All employees,Medical equipment and supplies manufacturing,,0.04
-2016,New Brunswick,All employees,Other miscellaneous manufacturing,,0.46
-2016,New Brunswick,Salaried employees paid a fixed salary,Manufacturing,,2.28
-2016,New Brunswick,Salaried employees paid a fixed salary,Non-durable goods,,
-2016,New Brunswick,Salaried employees paid a fixed salary,Food manufacturing,,
-2016,New Brunswick,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,New Brunswick,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2016,New Brunswick,Salaried employees paid a fixed salary,Paper manufacturing,,
-2016,New Brunswick,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2016,New Brunswick,Salaried employees paid a fixed salary,Durable goods,,0.87
-2016,New Brunswick,Salaried employees paid a fixed salary,Wood product manufacturing,,0.19
-2016,New Brunswick,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2016,New Brunswick,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.06
-2016,New Brunswick,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2016,New Brunswick,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.16
-2016,New Brunswick,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2016,New Brunswick,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2016,New Brunswick,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2016,New Brunswick,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2016,New Brunswick,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.22
-2016,New Brunswick,Employees paid by the hour,Manufacturing,,6.87
-2016,New Brunswick,Employees paid by the hour,Non-durable goods,,
-2016,New Brunswick,Employees paid by the hour,Food manufacturing,,
-2016,New Brunswick,Employees paid by the hour,Cannabis product manufacturing,,
-2016,New Brunswick,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2016,New Brunswick,Employees paid by the hour,Paper manufacturing,,
-2016,New Brunswick,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2016,New Brunswick,Employees paid by the hour,Durable goods,,2.9
-2016,New Brunswick,Employees paid by the hour,Wood product manufacturing,,1.21
-2016,New Brunswick,Employees paid by the hour,Sawmills and wood preservation,,
-2016,New Brunswick,Employees paid by the hour,Other wood product manufacturing,,0.42
-2016,New Brunswick,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2016,New Brunswick,Employees paid by the hour,Fabricated metal product manufacturing,,0.46
-2016,New Brunswick,Employees paid by the hour,Machinery manufacturing,,
-2016,New Brunswick,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2016,New Brunswick,Employees paid by the hour,Computer and electronic product manufacturing,,
-2016,New Brunswick,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2016,New Brunswick,Employees paid by the hour,Other miscellaneous manufacturing,,0.21
-2016,Quebec,All employees,Manufacturing,24,11.49
-2016,Quebec,All employees,Non-durable goods,,4.81
-2016,Quebec,All employees,Food manufacturing,,1.63
-2016,Quebec,All employees,Animal food manufacturing,,0.07
-2016,Quebec,All employees,Grain and oilseed milling,,0.03
-2016,Quebec,All employees,Sugar and confectionery product manufacturing,,0.1
-2016,Quebec,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.12
-2016,Quebec,All employees,Dairy product manufacturing,,0.24
-2016,Quebec,All employees,Meat product manufacturing,,0.48
-2016,Quebec,All employees,Seafood product preparation and packaging,,0.04
-2016,Quebec,All employees,Bakeries and tortilla manufacturing,,0.32
-2016,Quebec,All employees,Other food manufacturing,,0.21
-2016,Quebec,All employees,Beverage and tobacco product manufacturing,,0.23
-2016,Quebec,All employees,Cannabis product manufacturing,,
-2016,Quebec,All employees,Textile mills,,0.1
-2016,Quebec,All employees,"Fibre, yarn and thread mills",,0.01
-2016,Quebec,All employees,Fabric mills,,0.08
-2016,Quebec,All employees,Textile and fabric finishing and fabric coating,,0.01
-2016,Quebec,All employees,Textile product mills,,0.08
-2016,Quebec,All employees,Textile furnishings mills,,0.04
-2016,Quebec,All employees,Other textile product mills,,0.05
-2016,Quebec,All employees,Clothing manufacturing,,0.3
-2016,Quebec,All employees,Clothing knitting mills,,0.03
-2016,Quebec,All employees,Cut and sew clothing manufacturing,,0.24
-2016,Quebec,All employees,Clothing accessories and other clothing manufacturing,,0.02
-2016,Quebec,All employees,Leather and allied product manufacturing,,0.04
-2016,Quebec,All employees,Leather and hide tanning and finishing,,0
-2016,Quebec,All employees,Footwear manufacturing,,0.03
-2016,Quebec,All employees,Other leather and allied product manufacturing,,0.01
-2016,Quebec,All employees,Paper manufacturing,,0.58
-2016,Quebec,All employees,"Pulp, paper and paperboard mills",,0.22
-2016,Quebec,All employees,Converted paper product manufacturing,,0.36
-2016,Quebec,All employees,Printing and related support activities,,0.34
-2016,Quebec,All employees,Petroleum and coal product manufacturing,,0.11
-2016,Quebec,All employees,Chemical manufacturing,,0.65
-2016,Quebec,All employees,Basic chemical manufacturing,,0.08
-2016,Quebec,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.02
-2016,Quebec,All employees,Pharmaceutical and medicine manufacturing,,0.23
-2016,Quebec,All employees,"Paint, coating and adhesive manufacturing",,0.07
-2016,Quebec,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.11
-2016,Quebec,All employees,Other chemical product manufacturing,,0.09
-2016,Quebec,All employees,Plastics and rubber products manufacturing,,0.76
-2016,Quebec,All employees,Plastic product manufacturing,,0.61
-2016,Quebec,All employees,Rubber product manufacturing,,0.15
-2016,Quebec,All employees,Durable goods,,6.68
-2016,Quebec,All employees,Wood product manufacturing,,0.79
-2016,Quebec,All employees,Sawmills and wood preservation,,0.27
-2016,Quebec,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
-2016,Quebec,All employees,Other wood product manufacturing,,0.38
-2016,Quebec,All employees,Non-metallic mineral product manufacturing,,0.39
-2016,Quebec,All employees,Clay product and refractory manufacturing,,0.01
-2016,Quebec,All employees,Glass and glass product manufacturing,,0.07
-2016,Quebec,All employees,Cement and concrete product manufacturing,,0.22
-2016,Quebec,All employees,Lime and gypsum product manufacturing,,0.01
-2016,Quebec,All employees,Other non-metallic mineral product manufacturing,,0.07
-2016,Quebec,All employees,Primary metal manufacturing,,0.45
-2016,Quebec,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.07
-2016,Quebec,All employees,Steel product manufacturing from purchased steel,,0.02
-2016,Quebec,All employees,Alumina and aluminum production and processing,,0.16
-2016,Quebec,All employees,Non-ferrous metal (except aluminum) production and processing,,0.11
-2016,Quebec,All employees,Foundries,,0.09
-2016,Quebec,All employees,Fabricated metal product manufacturing,,1.19
-2016,Quebec,All employees,Forging and stamping,,0.06
-2016,Quebec,All employees,Cutlery and hand tool manufacturing,,0.03
-2016,Quebec,All employees,Architectural and structural metals manufacturing,,0.49
-2016,Quebec,All employees,"Boiler, tank and shipping container manufacturing",,0.07
-2016,Quebec,All employees,Hardware manufacturing,,0.02
-2016,Quebec,All employees,Spring and wire product manufacturing,,0.04
-2016,Quebec,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.26
-2016,Quebec,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2016,Quebec,All employees,Other fabricated metal product manufacturing,,0.16
-2016,Quebec,All employees,Machinery manufacturing,,0.83
-2016,Quebec,All employees,"Agricultural, construction and mining machinery manufacturing",,0.1
-2016,Quebec,All employees,Industrial machinery manufacturing,,0.14
-2016,Quebec,All employees,Commercial and service industry machinery manufacturing,,0.17
-2016,Quebec,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.14
-2016,Quebec,All employees,Metalworking machinery manufacturing,,0.06
-2016,Quebec,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.07
-2016,Quebec,All employees,Other general-purpose machinery manufacturing,,0.17
-2016,Quebec,All employees,Computer and electronic product manufacturing,,0.44
-2016,Quebec,All employees,Communications equipment manufacturing,,0.09
-2016,Quebec,All employees,Audio and video equipment manufacturing,,0.01
-2016,Quebec,All employees,Semiconductor and other electronic component manufacturing,,0.15
-2016,Quebec,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.16
-2016,Quebec,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
-2016,Quebec,All employees,"Electrical equipment, appliance and component manufacturing",,0.29
-2016,Quebec,All employees,Electric lighting equipment manufacturing,,0.06
-2016,Quebec,All employees,Household appliance manufacturing,,0.02
-2016,Quebec,All employees,Electrical equipment manufacturing,,0.11
-2016,Quebec,All employees,Other electrical equipment and component manufacturing,,0.1
-2016,Quebec,All employees,Transportation equipment manufacturing,,1.22
-2016,Quebec,All employees,Motor vehicle body and trailer manufacturing,,0.12
-2016,Quebec,All employees,Motor vehicle parts manufacturing,,0.1
-2016,Quebec,All employees,Aerospace product and parts manufacturing,,0.71
-2016,Quebec,All employees,Other transportation equipment manufacturing,,0.13
-2016,Quebec,All employees,Furniture and related product manufacturing,,0.61
-2016,Quebec,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.42
-2016,Quebec,All employees,Office furniture (including fixtures) manufacturing,,0.16
-2016,Quebec,All employees,Other furniture-related product manufacturing,,0.04
-2016,Quebec,All employees,Miscellaneous manufacturing,,0.46
-2016,Quebec,All employees,Medical equipment and supplies manufacturing,,0.13
-2016,Quebec,All employees,Other miscellaneous manufacturing,,0.34
-2016,Quebec,Salaried employees paid a fixed salary,Manufacturing,,2.92
-2016,Quebec,Salaried employees paid a fixed salary,Non-durable goods,,1.3
-2016,Quebec,Salaried employees paid a fixed salary,Food manufacturing,,0.3
-2016,Quebec,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2016,Quebec,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Other food manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Textile mills,,0.03
-2016,Quebec,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2016,Quebec,Salaried employees paid a fixed salary,Fabric mills,,0.02
-2016,Quebec,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
-2016,Quebec,Salaried employees paid a fixed salary,Textile product mills,,
-2016,Quebec,Salaried employees paid a fixed salary,Textile furnishings mills,,
-2016,Quebec,Salaried employees paid a fixed salary,Other textile product mills,,
-2016,Quebec,Salaried employees paid a fixed salary,Clothing manufacturing,,0.07
-2016,Quebec,Salaried employees paid a fixed salary,Clothing knitting mills,,
-2016,Quebec,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,0.06
-2016,Quebec,Salaried employees paid a fixed salary,Clothing accessories and other clothing manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2016,Quebec,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Paper manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2016,Quebec,Salaried employees paid a fixed salary,Printing and related support activities,,0.06
-2016,Quebec,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Chemical manufacturing,,0.29
-2016,Quebec,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2016,Quebec,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
-2016,Quebec,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2016,Quebec,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Plastic product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Durable goods,,1.62
-2016,Quebec,Salaried employees paid a fixed salary,Wood product manufacturing,,0.08
-2016,Quebec,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2016,Quebec,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2016,Quebec,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.03
-2016,Quebec,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2016,Quebec,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2016,Quebec,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2016,Quebec,Salaried employees paid a fixed salary,Foundries,,
-2016,Quebec,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.23
-2016,Quebec,Salaried employees paid a fixed salary,Forging and stamping,,
-2016,Quebec,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2016,Quebec,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Machinery manufacturing,,0.21
-2016,Quebec,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2016,Quebec,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2016,Quebec,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2016,Quebec,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Quebec,Salaried employees paid a fixed salary,Manufacturing and reproducing magnetic and optical media,,
-2016,Quebec,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.13
-2016,Quebec,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.34
-2016,Quebec,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.1
-2016,Quebec,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2016,Quebec,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2016,Quebec,Employees paid by the hour,Manufacturing,,8.05
-2016,Quebec,Employees paid by the hour,Non-durable goods,,3.33
-2016,Quebec,Employees paid by the hour,Food manufacturing,,1.29
-2016,Quebec,Employees paid by the hour,Animal food manufacturing,,
-2016,Quebec,Employees paid by the hour,Grain and oilseed milling,,
-2016,Quebec,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2016,Quebec,Employees paid by the hour,Dairy product manufacturing,,
-2016,Quebec,Employees paid by the hour,Meat product manufacturing,,
-2016,Quebec,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2016,Quebec,Employees paid by the hour,Other food manufacturing,,
-2016,Quebec,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2016,Quebec,Employees paid by the hour,Cannabis product manufacturing,,
-2016,Quebec,Employees paid by the hour,Textile mills,,0.07
-2016,Quebec,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2016,Quebec,Employees paid by the hour,Fabric mills,,0.05
-2016,Quebec,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
-2016,Quebec,Employees paid by the hour,Textile product mills,,
-2016,Quebec,Employees paid by the hour,Textile furnishings mills,,
-2016,Quebec,Employees paid by the hour,Other textile product mills,,
-2016,Quebec,Employees paid by the hour,Clothing manufacturing,,0.19
-2016,Quebec,Employees paid by the hour,Clothing knitting mills,,
-2016,Quebec,Employees paid by the hour,Cut and sew clothing manufacturing,,0.16
-2016,Quebec,Employees paid by the hour,Clothing accessories and other clothing manufacturing,,
-2016,Quebec,Employees paid by the hour,Leather and hide tanning and finishing,,
-2016,Quebec,Employees paid by the hour,Footwear manufacturing,,
-2016,Quebec,Employees paid by the hour,Other leather and allied product manufacturing,,
-2016,Quebec,Employees paid by the hour,Paper manufacturing,,
-2016,Quebec,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2016,Quebec,Employees paid by the hour,Printing and related support activities,,0.24
-2016,Quebec,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2016,Quebec,Employees paid by the hour,Chemical manufacturing,,0.35
-2016,Quebec,Employees paid by the hour,Basic chemical manufacturing,,
-2016,Quebec,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2016,Quebec,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2016,Quebec,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
-2016,Quebec,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2016,Quebec,Employees paid by the hour,Other chemical product manufacturing,,
-2016,Quebec,Employees paid by the hour,Plastics and rubber products manufacturing,,0.62
-2016,Quebec,Employees paid by the hour,Plastic product manufacturing,,0.5
-2016,Quebec,Employees paid by the hour,Rubber product manufacturing,,
-2016,Quebec,Employees paid by the hour,Durable goods,,4.73
-2016,Quebec,Employees paid by the hour,Wood product manufacturing,,0.65
-2016,Quebec,Employees paid by the hour,Sawmills and wood preservation,,
-2016,Quebec,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2016,Quebec,Employees paid by the hour,Other wood product manufacturing,,0.3
-2016,Quebec,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2016,Quebec,Employees paid by the hour,Clay product and refractory manufacturing,,
-2016,Quebec,Employees paid by the hour,Glass and glass product manufacturing,,
-2016,Quebec,Employees paid by the hour,Cement and concrete product manufacturing,,
-2016,Quebec,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2016,Quebec,Employees paid by the hour,Primary metal manufacturing,,0.33
-2016,Quebec,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2016,Quebec,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2016,Quebec,Employees paid by the hour,Alumina and aluminum production and processing,,
-2016,Quebec,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2016,Quebec,Employees paid by the hour,Foundries,,
-2016,Quebec,Employees paid by the hour,Fabricated metal product manufacturing,,0.88
-2016,Quebec,Employees paid by the hour,Forging and stamping,,
-2016,Quebec,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2016,Quebec,Employees paid by the hour,Architectural and structural metals manufacturing,,0.38
-2016,Quebec,Employees paid by the hour,Hardware manufacturing,,
-2016,Quebec,Employees paid by the hour,Spring and wire product manufacturing,,
-2016,Quebec,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2016,Quebec,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2016,Quebec,Employees paid by the hour,Machinery manufacturing,,0.59
-2016,Quebec,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2016,Quebec,Employees paid by the hour,Industrial machinery manufacturing,,
-2016,Quebec,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2016,Quebec,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2016,Quebec,Employees paid by the hour,Metalworking machinery manufacturing,,
-2016,Quebec,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2016,Quebec,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2016,Quebec,Employees paid by the hour,Communications equipment manufacturing,,
-2016,Quebec,Employees paid by the hour,Audio and video equipment manufacturing,,
-2016,Quebec,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2016,Quebec,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Quebec,Employees paid by the hour,Manufacturing and reproducing magnetic and optical media,,
-2016,Quebec,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.16
-2016,Quebec,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2016,Quebec,Employees paid by the hour,Household appliance manufacturing,,
-2016,Quebec,Employees paid by the hour,Electrical equipment manufacturing,,
-2016,Quebec,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2016,Quebec,Employees paid by the hour,Transportation equipment manufacturing,,0.86
-2016,Quebec,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2016,Quebec,Employees paid by the hour,Other transportation equipment manufacturing,,
-2016,Quebec,Employees paid by the hour,Furniture and related product manufacturing,,0.49
-2016,Quebec,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.34
-2016,Quebec,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2016,Quebec,Employees paid by the hour,Miscellaneous manufacturing,,0.31
-2016,Quebec,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2016,Quebec,Employees paid by the hour,Other miscellaneous manufacturing,,
-2016,Ontario,All employees,Manufacturing,35,10.68
-2016,Ontario,All employees,Non-durable goods,,4.02
-2016,Ontario,All employees,Food manufacturing,,1.25
-2016,Ontario,All employees,Animal food manufacturing,,0.06
-2016,Ontario,All employees,Grain and oilseed milling,,0.05
-2016,Ontario,All employees,Sugar and confectionery product manufacturing,,0.07
-2016,Ontario,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.1
-2016,Ontario,All employees,Dairy product manufacturing,,0.14
-2016,Ontario,All employees,Meat product manufacturing,,0.27
-2016,Ontario,All employees,Seafood product preparation and packaging,,0.01
-2016,Ontario,All employees,Bakeries and tortilla manufacturing,,0.33
-2016,Ontario,All employees,Other food manufacturing,,0.21
-2016,Ontario,All employees,Beverage and tobacco product manufacturing,,0.27
-2016,Ontario,All employees,Cannabis product manufacturing,,
-2016,Ontario,All employees,Textile mills,,0.05
-2016,Ontario,All employees,"Fibre, yarn and thread mills",,0.01
-2016,Ontario,All employees,Fabric mills,,0.02
-2016,Ontario,All employees,Textile and fabric finishing and fabric coating,,0.02
-2016,Ontario,All employees,Textile product mills,,0.06
-2016,Ontario,All employees,Textile furnishings mills,,0.02
-2016,Ontario,All employees,Other textile product mills,,0.04
-2016,Ontario,All employees,Clothing manufacturing,,0.08
-2016,Ontario,All employees,Clothing knitting mills,,0.01
-2016,Ontario,All employees,Cut and sew clothing manufacturing,,0.06
-2016,Ontario,All employees,Clothing accessories and other clothing manufacturing,,0.02
-2016,Ontario,All employees,Leather and allied product manufacturing,,0.02
-2016,Ontario,All employees,Leather and hide tanning and finishing,,0
-2016,Ontario,All employees,Footwear manufacturing,,0
-2016,Ontario,All employees,Other leather and allied product manufacturing,,0.02
-2016,Ontario,All employees,Paper manufacturing,,0.27
-2016,Ontario,All employees,"Pulp, paper and paperboard mills",,0.07
-2016,Ontario,All employees,Converted paper product manufacturing,,0.2
-2016,Ontario,All employees,Printing and related support activities,,0.38
-2016,Ontario,All employees,Petroleum and coal product manufacturing,,0.1
-2016,Ontario,All employees,Chemical manufacturing,,0.72
-2016,Ontario,All employees,Basic chemical manufacturing,,0.08
-2016,Ontario,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.06
-2016,Ontario,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
-2016,Ontario,All employees,Pharmaceutical and medicine manufacturing,,0.25
-2016,Ontario,All employees,"Paint, coating and adhesive manufacturing",,0.06
-2016,Ontario,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.16
-2016,Ontario,All employees,Other chemical product manufacturing,,0.09
-2016,Ontario,All employees,Plastics and rubber products manufacturing,,0.81
-2016,Ontario,All employees,Plastic product manufacturing,,0.72
-2016,Ontario,All employees,Rubber product manufacturing,,0.09
-2016,Ontario,All employees,Durable goods,,6.65
-2016,Ontario,All employees,Wood product manufacturing,,0.27
-2016,Ontario,All employees,Sawmills and wood preservation,,0.05
-2016,Ontario,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.06
-2016,Ontario,All employees,Other wood product manufacturing,,0.16
-2016,Ontario,All employees,Non-metallic mineral product manufacturing,,0.32
-2016,Ontario,All employees,Clay product and refractory manufacturing,,0.02
-2016,Ontario,All employees,Glass and glass product manufacturing,,0.05
-2016,Ontario,All employees,Cement and concrete product manufacturing,,0.18
-2016,Ontario,All employees,Lime and gypsum product manufacturing,,0.01
-2016,Ontario,All employees,Other non-metallic mineral product manufacturing,,0.06
-2016,Ontario,All employees,Primary metal manufacturing,,0.43
-2016,Ontario,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.2
-2016,Ontario,All employees,Steel product manufacturing from purchased steel,,0.06
-2016,Ontario,All employees,Alumina and aluminum production and processing,,0.04
-2016,Ontario,All employees,Non-ferrous metal (except aluminum) production and processing,,0.07
-2016,Ontario,All employees,Foundries,,0.07
-2016,Ontario,All employees,Fabricated metal product manufacturing,,1.06
-2016,Ontario,All employees,Forging and stamping,,0.05
-2016,Ontario,All employees,Cutlery and hand tool manufacturing,,0.04
-2016,Ontario,All employees,Architectural and structural metals manufacturing,,0.34
-2016,Ontario,All employees,"Boiler, tank and shipping container manufacturing",,0.06
-2016,Ontario,All employees,Hardware manufacturing,,0.06
-2016,Ontario,All employees,Spring and wire product manufacturing,,0.03
-2016,Ontario,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.23
-2016,Ontario,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.1
-2016,Ontario,All employees,Other fabricated metal product manufacturing,,0.15
-2016,Ontario,All employees,Machinery manufacturing,,1
-2016,Ontario,All employees,"Agricultural, construction and mining machinery manufacturing",,0.13
-2016,Ontario,All employees,Industrial machinery manufacturing,,0.11
-2016,Ontario,All employees,Commercial and service industry machinery manufacturing,,0.11
-2016,Ontario,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
-2016,Ontario,All employees,Metalworking machinery manufacturing,,0.27
-2016,Ontario,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.05
-2016,Ontario,All employees,Other general-purpose machinery manufacturing,,0.24
-2016,Ontario,All employees,Computer and electronic product manufacturing,,0.46
-2016,Ontario,All employees,Computer and peripheral equipment manufacturing,,0.05
-2016,Ontario,All employees,Communications equipment manufacturing,,0.13
-2016,Ontario,All employees,Audio and video equipment manufacturing,,0.01
-2016,Ontario,All employees,Semiconductor and other electronic component manufacturing,,0.11
-2016,Ontario,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.15
-2016,Ontario,All employees,"Electrical equipment, appliance and component manufacturing",,0.26
-2016,Ontario,All employees,Electric lighting equipment manufacturing,,0.03
-2016,Ontario,All employees,Household appliance manufacturing,,0.02
-2016,Ontario,All employees,Electrical equipment manufacturing,,0.12
-2016,Ontario,All employees,Other electrical equipment and component manufacturing,,0.09
-2016,Ontario,All employees,Transportation equipment manufacturing,,2.03
-2016,Ontario,All employees,Motor vehicle manufacturing,,0.61
-2016,Ontario,All employees,Motor vehicle body and trailer manufacturing,,0.06
-2016,Ontario,All employees,Motor vehicle parts manufacturing,,1.06
-2016,Ontario,All employees,Aerospace product and parts manufacturing,,0.19
-2016,Ontario,All employees,Railroad rolling stock manufacturing,,0.05
-2016,Ontario,All employees,Furniture and related product manufacturing,,0.45
-2016,Ontario,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
-2016,Ontario,All employees,Office furniture (including fixtures) manufacturing,,0.22
-2016,Ontario,All employees,Other furniture-related product manufacturing,,0.03
-2016,Ontario,All employees,Miscellaneous manufacturing,,0.38
-2016,Ontario,All employees,Medical equipment and supplies manufacturing,,0.14
-2016,Ontario,All employees,Other miscellaneous manufacturing,,0.25
-2016,Ontario,Salaried employees paid a fixed salary,Manufacturing,,2.98
-2016,Ontario,Salaried employees paid a fixed salary,Non-durable goods,,1.25
-2016,Ontario,Salaried employees paid a fixed salary,Food manufacturing,,0.29
-2016,Ontario,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2016,Ontario,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Other food manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Textile mills,,0.01
-2016,Ontario,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2016,Ontario,Salaried employees paid a fixed salary,Fabric mills,,
-2016,Ontario,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0.01
-2016,Ontario,Salaried employees paid a fixed salary,Textile furnishings mills,,
-2016,Ontario,Salaried employees paid a fixed salary,Other textile product mills,,
-2016,Ontario,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
-2016,Ontario,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2016,Ontario,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Paper manufacturing,,0.09
-2016,Ontario,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2016,Ontario,Salaried employees paid a fixed salary,Printing and related support activities,,0.08
-2016,Ontario,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2016,Ontario,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2016,Ontario,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
-2016,Ontario,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2016,Ontario,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.17
-2016,Ontario,Salaried employees paid a fixed salary,Plastic product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Durable goods,,1.73
-2016,Ontario,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2016,Ontario,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2016,Ontario,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.02
-2016,Ontario,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2016,Ontario,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2016,Ontario,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2016,Ontario,Salaried employees paid a fixed salary,Foundries,,
-2016,Ontario,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.25
-2016,Ontario,Salaried employees paid a fixed salary,Forging and stamping,,
-2016,Ontario,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.1
-2016,Ontario,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2016,Ontario,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
-2016,Ontario,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
-2016,Ontario,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Machinery manufacturing,,0.29
-2016,Ontario,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2016,Ontario,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2016,Ontario,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2016,Ontario,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.24
-2016,Ontario,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Ontario,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.12
-2016,Ontario,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,0.05
-2016,Ontario,Salaried employees paid a fixed salary,Railroad rolling stock manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.08
-2016,Ontario,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2016,Ontario,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2016,Ontario,Employees paid by the hour,Manufacturing,,7.28
-2016,Ontario,Employees paid by the hour,Non-durable goods,,2.65
-2016,Ontario,Employees paid by the hour,Food manufacturing,,0.93
-2016,Ontario,Employees paid by the hour,Animal food manufacturing,,
-2016,Ontario,Employees paid by the hour,Grain and oilseed milling,,
-2016,Ontario,Employees paid by the hour,Sugar and confectionery product manufacturing,,
-2016,Ontario,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2016,Ontario,Employees paid by the hour,Dairy product manufacturing,,
-2016,Ontario,Employees paid by the hour,Meat product manufacturing,,
-2016,Ontario,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2016,Ontario,Employees paid by the hour,Other food manufacturing,,
-2016,Ontario,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2016,Ontario,Employees paid by the hour,Cannabis product manufacturing,,
-2016,Ontario,Employees paid by the hour,Textile mills,,0.04
-2016,Ontario,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2016,Ontario,Employees paid by the hour,Fabric mills,,
-2016,Ontario,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
-2016,Ontario,Employees paid by the hour,Textile furnishings mills,,
-2016,Ontario,Employees paid by the hour,Other textile product mills,,
-2016,Ontario,Employees paid by the hour,Clothing manufacturing,,
-2016,Ontario,Employees paid by the hour,Leather and allied product manufacturing,,0.02
-2016,Ontario,Employees paid by the hour,Leather and hide tanning and finishing,,
-2016,Ontario,Employees paid by the hour,Footwear manufacturing,,
-2016,Ontario,Employees paid by the hour,Other leather and allied product manufacturing,,
-2016,Ontario,Employees paid by the hour,Paper manufacturing,,0.17
-2016,Ontario,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2016,Ontario,Employees paid by the hour,Printing and related support activities,,0.27
-2016,Ontario,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2016,Ontario,Employees paid by the hour,Chemical manufacturing,,
-2016,Ontario,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2016,Ontario,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2016,Ontario,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
-2016,Ontario,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2016,Ontario,Employees paid by the hour,Other chemical product manufacturing,,
-2016,Ontario,Employees paid by the hour,Plastics and rubber products manufacturing,,0.61
-2016,Ontario,Employees paid by the hour,Plastic product manufacturing,,
-2016,Ontario,Employees paid by the hour,Rubber product manufacturing,,
-2016,Ontario,Employees paid by the hour,Durable goods,,4.63
-2016,Ontario,Employees paid by the hour,Wood product manufacturing,,
-2016,Ontario,Employees paid by the hour,Sawmills and wood preservation,,
-2016,Ontario,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2016,Ontario,Employees paid by the hour,Other wood product manufacturing,,0.12
-2016,Ontario,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2016,Ontario,Employees paid by the hour,Clay product and refractory manufacturing,,
-2016,Ontario,Employees paid by the hour,Glass and glass product manufacturing,,
-2016,Ontario,Employees paid by the hour,Cement and concrete product manufacturing,,
-2016,Ontario,Employees paid by the hour,Lime and gypsum product manufacturing,,
-2016,Ontario,Employees paid by the hour,Primary metal manufacturing,,
-2016,Ontario,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2016,Ontario,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2016,Ontario,Employees paid by the hour,Alumina and aluminum production and processing,,
-2016,Ontario,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2016,Ontario,Employees paid by the hour,Foundries,,
-2016,Ontario,Employees paid by the hour,Fabricated metal product manufacturing,,0.71
-2016,Ontario,Employees paid by the hour,Forging and stamping,,
-2016,Ontario,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2016,Ontario,Employees paid by the hour,Architectural and structural metals manufacturing,,0.21
-2016,Ontario,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2016,Ontario,Employees paid by the hour,Hardware manufacturing,,
-2016,Ontario,Employees paid by the hour,Spring and wire product manufacturing,,
-2016,Ontario,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.17
-2016,Ontario,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
-2016,Ontario,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2016,Ontario,Employees paid by the hour,Machinery manufacturing,,0.68
-2016,Ontario,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2016,Ontario,Employees paid by the hour,Industrial machinery manufacturing,,
-2016,Ontario,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2016,Ontario,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2016,Ontario,Employees paid by the hour,Metalworking machinery manufacturing,,
-2016,Ontario,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2016,Ontario,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2016,Ontario,Employees paid by the hour,Computer and electronic product manufacturing,,0.2
-2016,Ontario,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
-2016,Ontario,Employees paid by the hour,Communications equipment manufacturing,,
-2016,Ontario,Employees paid by the hour,Audio and video equipment manufacturing,,
-2016,Ontario,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2016,Ontario,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Ontario,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.13
-2016,Ontario,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2016,Ontario,Employees paid by the hour,Household appliance manufacturing,,
-2016,Ontario,Employees paid by the hour,Electrical equipment manufacturing,,
-2016,Ontario,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2016,Ontario,Employees paid by the hour,Transportation equipment manufacturing,,
-2016,Ontario,Employees paid by the hour,Motor vehicle manufacturing,,
-2016,Ontario,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2016,Ontario,Employees paid by the hour,Motor vehicle parts manufacturing,,
-2016,Ontario,Employees paid by the hour,Aerospace product and parts manufacturing,,0.14
-2016,Ontario,Employees paid by the hour,Railroad rolling stock manufacturing,,
-2016,Ontario,Employees paid by the hour,Furniture and related product manufacturing,,0.35
-2016,Ontario,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2016,Ontario,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2016,Ontario,Employees paid by the hour,Miscellaneous manufacturing,,
-2016,Ontario,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2016,Ontario,Employees paid by the hour,Other miscellaneous manufacturing,,
-2016,Manitoba,All employees,Manufacturing,46,9.08
-2016,Manitoba,All employees,Non-durable goods,,3.73
-2016,Manitoba,All employees,Food manufacturing,,1.62
-2016,Manitoba,All employees,Animal food manufacturing,,
-2016,Manitoba,All employees,Meat product manufacturing,,0.78
-2016,Manitoba,All employees,Bakeries and tortilla manufacturing,,0.2
-2016,Manitoba,All employees,Beverage and tobacco product manufacturing,,0.14
-2016,Manitoba,All employees,Cannabis product manufacturing,,
-2016,Manitoba,All employees,Textile and fabric finishing and fabric coating,,
-2016,Manitoba,All employees,Other textile product mills,,
-2016,Manitoba,All employees,Cut and sew clothing manufacturing,,
-2016,Manitoba,All employees,Leather and hide tanning and finishing,,
-2016,Manitoba,All employees,Paper manufacturing,,0.19
-2016,Manitoba,All employees,"Pulp, paper and paperboard mills",,
-2016,Manitoba,All employees,Printing and related support activities,,0.52
-2016,Manitoba,All employees,Chemical manufacturing,,0.43
-2016,Manitoba,All employees,Basic chemical manufacturing,,0.06
-2016,Manitoba,All employees,Durable goods,,5.35
-2016,Manitoba,All employees,Wood product manufacturing,,0.41
-2016,Manitoba,All employees,Sawmills and wood preservation,,
-2016,Manitoba,All employees,"Veneer, plywood and engineered wood product manufacturing",,
-2016,Manitoba,All employees,Other wood product manufacturing,,0.27
-2016,Manitoba,All employees,Non-metallic mineral product manufacturing,,0.21
-2016,Manitoba,All employees,Cement and concrete product manufacturing,,0.16
-2016,Manitoba,All employees,Other non-metallic mineral product manufacturing,,0.03
-2016,Manitoba,All employees,Primary metal manufacturing,,0.57
-2016,Manitoba,All employees,Foundries,,0.16
-2016,Manitoba,All employees,Fabricated metal product manufacturing,,0.69
-2016,Manitoba,All employees,Architectural and structural metals manufacturing,,0.3
-2016,Manitoba,All employees,"Boiler, tank and shipping container manufacturing",,0.1
-2016,Manitoba,All employees,Spring and wire product manufacturing,,
-2016,Manitoba,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.05
-2016,Manitoba,All employees,Machinery manufacturing,,0.99
-2016,Manitoba,All employees,"Agricultural, construction and mining machinery manufacturing",,0.62
-2016,Manitoba,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
-2016,Manitoba,All employees,Other general-purpose machinery manufacturing,,0.15
-2016,Manitoba,All employees,Computer and electronic product manufacturing,,0.09
-2016,Manitoba,All employees,Semiconductor and other electronic component manufacturing,,0.03
-2016,Manitoba,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Manitoba,All employees,Electrical equipment manufacturing,,
-2016,Manitoba,All employees,Transportation equipment manufacturing,,1.41
-2016,Manitoba,All employees,Motor vehicle body and trailer manufacturing,,0.19
-2016,Manitoba,All employees,Aerospace product and parts manufacturing,,0.69
-2016,Manitoba,All employees,Furniture and related product manufacturing,,0.57
-2016,Manitoba,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.5
-2016,Manitoba,All employees,Office furniture (including fixtures) manufacturing,,
-2016,Manitoba,All employees,Other furniture-related product manufacturing,,
-2016,Manitoba,All employees,Miscellaneous manufacturing,,0.29
-2016,Manitoba,All employees,Medical equipment and supplies manufacturing,,0.09
-2016,Manitoba,All employees,Other miscellaneous manufacturing,,0.2
-2016,Manitoba,Salaried employees paid a fixed salary,Manufacturing,,1.8
-2016,Manitoba,Salaried employees paid a fixed salary,Non-durable goods,,0.78
-2016,Manitoba,Salaried employees paid a fixed salary,Food manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
-2016,Manitoba,Salaried employees paid a fixed salary,Other textile product mills,,
-2016,Manitoba,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Paper manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2016,Manitoba,Salaried employees paid a fixed salary,Printing and related support activities,,0.11
-2016,Manitoba,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Durable goods,,1.02
-2016,Manitoba,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2016,Manitoba,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2016,Manitoba,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.13
-2016,Manitoba,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2016,Manitoba,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2016,Manitoba,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Manitoba,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.21
-2016,Manitoba,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.08
-2016,Manitoba,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2016,Manitoba,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2016,Manitoba,Employees paid by the hour,Manufacturing,,6.97
-2016,Manitoba,Employees paid by the hour,Non-durable goods,,2.84
-2016,Manitoba,Employees paid by the hour,Food manufacturing,,
-2016,Manitoba,Employees paid by the hour,Animal food manufacturing,,
-2016,Manitoba,Employees paid by the hour,Meat product manufacturing,,
-2016,Manitoba,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2016,Manitoba,Employees paid by the hour,Cannabis product manufacturing,,
-2016,Manitoba,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
-2016,Manitoba,Employees paid by the hour,Other textile product mills,,
-2016,Manitoba,Employees paid by the hour,Clothing manufacturing,,
-2016,Manitoba,Employees paid by the hour,Cut and sew clothing manufacturing,,
-2016,Manitoba,Employees paid by the hour,Leather and hide tanning and finishing,,
-2016,Manitoba,Employees paid by the hour,Paper manufacturing,,
-2016,Manitoba,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2016,Manitoba,Employees paid by the hour,Printing and related support activities,,0.38
-2016,Manitoba,Employees paid by the hour,Chemical manufacturing,,
-2016,Manitoba,Employees paid by the hour,Basic chemical manufacturing,,
-2016,Manitoba,Employees paid by the hour,Durable goods,,4.12
-2016,Manitoba,Employees paid by the hour,Wood product manufacturing,,
-2016,Manitoba,Employees paid by the hour,Sawmills and wood preservation,,
-2016,Manitoba,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2016,Manitoba,Employees paid by the hour,Other wood product manufacturing,,
-2016,Manitoba,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2016,Manitoba,Employees paid by the hour,Cement and concrete product manufacturing,,
-2016,Manitoba,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2016,Manitoba,Employees paid by the hour,Primary metal manufacturing,,
-2016,Manitoba,Employees paid by the hour,Fabricated metal product manufacturing,,0.51
-2016,Manitoba,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2016,Manitoba,Employees paid by the hour,Machinery manufacturing,,
-2016,Manitoba,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2016,Manitoba,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2016,Manitoba,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2016,Manitoba,Employees paid by the hour,Computer and electronic product manufacturing,,
-2016,Manitoba,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Manitoba,Employees paid by the hour,Electrical equipment manufacturing,,
-2016,Manitoba,Employees paid by the hour,Transportation equipment manufacturing,,1.18
-2016,Manitoba,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2016,Manitoba,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2016,Manitoba,Employees paid by the hour,Furniture and related product manufacturing,,0.46
-2016,Manitoba,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2016,Manitoba,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2016,Manitoba,Employees paid by the hour,Other furniture-related product manufacturing,,
-2016,Manitoba,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2016,Manitoba,Employees paid by the hour,Other miscellaneous manufacturing,,
-2016,Saskatchewan,All employees,Manufacturing,47,4.89
-2016,Saskatchewan,All employees,Non-durable goods,,1.79
-2016,Saskatchewan,All employees,Food manufacturing,,0.85
-2016,Saskatchewan,All employees,Animal food manufacturing,,0.1
-2016,Saskatchewan,All employees,Grain and oilseed milling,,0.18
-2016,Saskatchewan,All employees,Meat product manufacturing,,0.36
-2016,Saskatchewan,All employees,Beverage and tobacco product manufacturing,,0.15
-2016,Saskatchewan,All employees,Cannabis product manufacturing,,
-2016,Saskatchewan,All employees,Printing and related support activities,,0.12
-2016,Saskatchewan,All employees,Chemical manufacturing,,0.27
-2016,Saskatchewan,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.13
-2016,Saskatchewan,All employees,Durable goods,,3.1
-2016,Saskatchewan,All employees,Wood product manufacturing,,0.34
-2016,Saskatchewan,All employees,Sawmills and wood preservation,,0.11
-2016,Saskatchewan,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.13
-2016,Saskatchewan,All employees,Other wood product manufacturing,,0.09
-2016,Saskatchewan,All employees,Cement and concrete product manufacturing,,0.18
-2016,Saskatchewan,All employees,Fabricated metal product manufacturing,,0.65
-2016,Saskatchewan,All employees,Architectural and structural metals manufacturing,,0.32
-2016,Saskatchewan,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.05
-2016,Saskatchewan,All employees,Machinery manufacturing,,1.03
-2016,Saskatchewan,All employees,"Agricultural, construction and mining machinery manufacturing",,0.77
-2016,Saskatchewan,All employees,Computer and electronic product manufacturing,,
-2016,Saskatchewan,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Saskatchewan,All employees,Motor vehicle body and trailer manufacturing,,0.12
-2016,Saskatchewan,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.13
-2016,Saskatchewan,All employees,Miscellaneous manufacturing,,0.13
-2016,Saskatchewan,All employees,Medical equipment and supplies manufacturing,,0.06
-2016,Saskatchewan,All employees,Other miscellaneous manufacturing,,0.08
-2016,Saskatchewan,Salaried employees paid a fixed salary,Manufacturing,,1.31
-2016,Saskatchewan,Salaried employees paid a fixed salary,Non-durable goods,,0.49
-2016,Saskatchewan,Salaried employees paid a fixed salary,Food manufacturing,,0.12
-2016,Saskatchewan,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2016,Saskatchewan,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2016,Saskatchewan,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,Saskatchewan,Salaried employees paid a fixed salary,Printing and related support activities,,
-2016,Saskatchewan,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2016,Saskatchewan,Salaried employees paid a fixed salary,Durable goods,,0.82
-2016,Saskatchewan,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2016,Saskatchewan,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2016,Saskatchewan,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2016,Saskatchewan,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2016,Saskatchewan,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2016,Saskatchewan,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Saskatchewan,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2016,Saskatchewan,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2016,Saskatchewan,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2016,Saskatchewan,Employees paid by the hour,Manufacturing,,3.38
-2016,Saskatchewan,Employees paid by the hour,Non-durable goods,,1.24
-2016,Saskatchewan,Employees paid by the hour,Food manufacturing,,0.7
-2016,Saskatchewan,Employees paid by the hour,Grain and oilseed milling,,
-2016,Saskatchewan,Employees paid by the hour,Meat product manufacturing,,
-2016,Saskatchewan,Employees paid by the hour,Cannabis product manufacturing,,
-2016,Saskatchewan,Employees paid by the hour,Printing and related support activities,,
-2016,Saskatchewan,Employees paid by the hour,Chemical manufacturing,,
-2016,Saskatchewan,Employees paid by the hour,Durable goods,,2.14
-2016,Saskatchewan,Employees paid by the hour,Fabricated metal product manufacturing,,
-2016,Saskatchewan,Employees paid by the hour,Machinery manufacturing,,
-2016,Saskatchewan,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2016,Saskatchewan,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2016,Saskatchewan,Employees paid by the hour,Computer and electronic product manufacturing,,
-2016,Saskatchewan,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Saskatchewan,Employees paid by the hour,Transportation equipment manufacturing,,
-2016,Saskatchewan,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.1
-2016,Saskatchewan,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2016,Alberta,All employees,Manufacturing,48,5.93
-2016,Alberta,All employees,Non-durable goods,,2.49
-2016,Alberta,All employees,Food manufacturing,,0.93
-2016,Alberta,All employees,Animal food manufacturing,,0.07
-2016,Alberta,All employees,Grain and oilseed milling,,0.03
-2016,Alberta,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.04
-2016,Alberta,All employees,Meat product manufacturing,,0.46
-2016,Alberta,All employees,Bakeries and tortilla manufacturing,,0.14
-2016,Alberta,All employees,Other food manufacturing,,0.13
-2016,Alberta,All employees,Beverage and tobacco product manufacturing,,0.13
-2016,Alberta,All employees,Cannabis product manufacturing,,
-2016,Alberta,All employees,Cut and sew clothing manufacturing,,
-2016,Alberta,All employees,Other leather and allied product manufacturing,,
-2016,Alberta,All employees,Paper manufacturing,,0.13
-2016,Alberta,All employees,"Pulp, paper and paperboard mills",,0.11
-2016,Alberta,All employees,Converted paper product manufacturing,,0.02
-2016,Alberta,All employees,Printing and related support activities,,0.22
-2016,Alberta,All employees,Petroleum and coal product manufacturing,,0.29
-2016,Alberta,All employees,Chemical manufacturing,,0.48
-2016,Alberta,All employees,Basic chemical manufacturing,,0.14
-2016,Alberta,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.16
-2016,Alberta,All employees,Other chemical product manufacturing,,0.07
-2016,Alberta,All employees,Plastics and rubber products manufacturing,,0.27
-2016,Alberta,All employees,Durable goods,,3.43
-2016,Alberta,All employees,Wood product manufacturing,,0.49
-2016,Alberta,All employees,Sawmills and wood preservation,,0.19
-2016,Alberta,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
-2016,Alberta,All employees,Other wood product manufacturing,,0.16
-2016,Alberta,All employees,Non-metallic mineral product manufacturing,,0.32
-2016,Alberta,All employees,Glass and glass product manufacturing,,
-2016,Alberta,All employees,Cement and concrete product manufacturing,,0.21
-2016,Alberta,All employees,Other non-metallic mineral product manufacturing,,0.06
-2016,Alberta,All employees,Primary metal manufacturing,,0.11
-2016,Alberta,All employees,Fabricated metal product manufacturing,,1.04
-2016,Alberta,All employees,Forging and stamping,,
-2016,Alberta,All employees,Architectural and structural metals manufacturing,,0.46
-2016,Alberta,All employees,"Boiler, tank and shipping container manufacturing",,0.15
-2016,Alberta,All employees,Spring and wire product manufacturing,,0.03
-2016,Alberta,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.16
-2016,Alberta,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.08
-2016,Alberta,All employees,Other fabricated metal product manufacturing,,0.16
-2016,Alberta,All employees,Machinery manufacturing,,0.72
-2016,Alberta,All employees,"Agricultural, construction and mining machinery manufacturing",,0.37
-2016,Alberta,All employees,Industrial machinery manufacturing,,
-2016,Alberta,All employees,Commercial and service industry machinery manufacturing,,0.02
-2016,Alberta,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
-2016,Alberta,All employees,Metalworking machinery manufacturing,,0.03
-2016,Alberta,All employees,"Engine, turbine and power transmission equipment manufacturing",,
-2016,Alberta,All employees,Other general-purpose machinery manufacturing,,0.18
-2016,Alberta,All employees,Computer and electronic product manufacturing,,0.16
-2016,Alberta,All employees,Computer and peripheral equipment manufacturing,,
-2016,Alberta,All employees,Communications equipment manufacturing,,
-2016,Alberta,All employees,Semiconductor and other electronic component manufacturing,,0.03
-2016,Alberta,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.08
-2016,Alberta,All employees,"Electrical equipment, appliance and component manufacturing",,0.1
-2016,Alberta,All employees,Electrical equipment manufacturing,,0.06
-2016,Alberta,All employees,Other electrical equipment and component manufacturing,,0.03
-2016,Alberta,All employees,Transportation equipment manufacturing,,0.1
-2016,Alberta,All employees,Motor vehicle body and trailer manufacturing,,0.05
-2016,Alberta,All employees,Motor vehicle parts manufacturing,,0.02
-2016,Alberta,All employees,Aerospace product and parts manufacturing,,
-2016,Alberta,All employees,Furniture and related product manufacturing,,0.19
-2016,Alberta,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.12
-2016,Alberta,All employees,Office furniture (including fixtures) manufacturing,,0.04
-2016,Alberta,All employees,Other furniture-related product manufacturing,,0.03
-2016,Alberta,All employees,Miscellaneous manufacturing,,0.2
-2016,Alberta,All employees,Medical equipment and supplies manufacturing,,0.07
-2016,Alberta,All employees,Other miscellaneous manufacturing,,0.13
-2016,Alberta,Salaried employees paid a fixed salary,Manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Non-durable goods,,
-2016,Alberta,Salaried employees paid a fixed salary,Food manufacturing,,0.14
-2016,Alberta,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2016,Alberta,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Paper manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2016,Alberta,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Printing and related support activities,,0.06
-2016,Alberta,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2016,Alberta,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.07
-2016,Alberta,Salaried employees paid a fixed salary,Durable goods,,0.93
-2016,Alberta,Salaried employees paid a fixed salary,Wood product manufacturing,,0.07
-2016,Alberta,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2016,Alberta,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2016,Alberta,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2016,Alberta,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2016,Alberta,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2016,Alberta,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.09
-2016,Alberta,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Alberta,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2016,Alberta,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.03
-2016,Alberta,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2016,Alberta,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2016,Alberta,Employees paid by the hour,Manufacturing,,
-2016,Alberta,Employees paid by the hour,Non-durable goods,,
-2016,Alberta,Employees paid by the hour,Food manufacturing,,0.76
-2016,Alberta,Employees paid by the hour,Grain and oilseed milling,,
-2016,Alberta,Employees paid by the hour,Meat product manufacturing,,
-2016,Alberta,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2016,Alberta,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2016,Alberta,Employees paid by the hour,Cannabis product manufacturing,,
-2016,Alberta,Employees paid by the hour,Paper manufacturing,,
-2016,Alberta,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2016,Alberta,Employees paid by the hour,Converted paper product manufacturing,,
-2016,Alberta,Employees paid by the hour,Printing and related support activities,,0.15
-2016,Alberta,Employees paid by the hour,Chemical manufacturing,,
-2016,Alberta,Employees paid by the hour,Basic chemical manufacturing,,
-2016,Alberta,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2016,Alberta,Employees paid by the hour,Other chemical product manufacturing,,
-2016,Alberta,Employees paid by the hour,Plastics and rubber products manufacturing,,0.19
-2016,Alberta,Employees paid by the hour,Durable goods,,2.34
-2016,Alberta,Employees paid by the hour,Wood product manufacturing,,0.4
-2016,Alberta,Employees paid by the hour,Sawmills and wood preservation,,
-2016,Alberta,Employees paid by the hour,Other wood product manufacturing,,0.13
-2016,Alberta,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2016,Alberta,Employees paid by the hour,Cement and concrete product manufacturing,,
-2016,Alberta,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2016,Alberta,Employees paid by the hour,Fabricated metal product manufacturing,,
-2016,Alberta,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2016,Alberta,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2016,Alberta,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2016,Alberta,Employees paid by the hour,Machinery manufacturing,,
-2016,Alberta,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2016,Alberta,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2016,Alberta,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2016,Alberta,Employees paid by the hour,Computer and electronic product manufacturing,,0.06
-2016,Alberta,Employees paid by the hour,Communications equipment manufacturing,,
-2016,Alberta,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,Alberta,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2016,Alberta,Employees paid by the hour,Electrical equipment manufacturing,,
-2016,Alberta,Employees paid by the hour,Transportation equipment manufacturing,,
-2016,Alberta,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2016,Alberta,Employees paid by the hour,Motor vehicle parts manufacturing,,
-2016,Alberta,Employees paid by the hour,Furniture and related product manufacturing,,0.15
-2016,Alberta,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2016,Alberta,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2016,Alberta,Employees paid by the hour,Other furniture-related product manufacturing,,
-2016,Alberta,Employees paid by the hour,Miscellaneous manufacturing,,
-2016,Alberta,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2016,Alberta,Employees paid by the hour,Other miscellaneous manufacturing,,
-2016,British Columbia,All employees,Manufacturing,59,6.75
-2016,British Columbia,All employees,Non-durable goods,,2.77
-2016,British Columbia,All employees,Food manufacturing,,1.19
-2016,British Columbia,All employees,Animal food manufacturing,,0.04
-2016,British Columbia,All employees,Grain and oilseed milling,,0.02
-2016,British Columbia,All employees,Sugar and confectionery product manufacturing,,0.05
-2016,British Columbia,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.07
-2016,British Columbia,All employees,Dairy product manufacturing,,0.1
-2016,British Columbia,All employees,Meat product manufacturing,,0.22
-2016,British Columbia,All employees,Seafood product preparation and packaging,,0.17
-2016,British Columbia,All employees,Bakeries and tortilla manufacturing,,0.3
-2016,British Columbia,All employees,Other food manufacturing,,0.22
-2016,British Columbia,All employees,Beverage and tobacco product manufacturing,,0.29
-2016,British Columbia,All employees,Cannabis product manufacturing,,
-2016,British Columbia,All employees,Fabric mills,,
-2016,British Columbia,All employees,Textile product mills,,0.04
-2016,British Columbia,All employees,Textile furnishings mills,,0.01
-2016,British Columbia,All employees,Other textile product mills,,0.03
-2016,British Columbia,All employees,Clothing manufacturing,,0.09
-2016,British Columbia,All employees,Cut and sew clothing manufacturing,,0.07
-2016,British Columbia,All employees,Other leather and allied product manufacturing,,0
-2016,British Columbia,All employees,Paper manufacturing,,0.37
-2016,British Columbia,All employees,"Pulp, paper and paperboard mills",,0.27
-2016,British Columbia,All employees,Converted paper product manufacturing,,0.09
-2016,British Columbia,All employees,Printing and related support activities,,0.21
-2016,British Columbia,All employees,Petroleum and coal product manufacturing,,0.04
-2016,British Columbia,All employees,Chemical manufacturing,,0.29
-2016,British Columbia,All employees,Basic chemical manufacturing,,0.03
-2016,British Columbia,All employees,Pharmaceutical and medicine manufacturing,,0.11
-2016,British Columbia,All employees,"Paint, coating and adhesive manufacturing",,0.03
-2016,British Columbia,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.07
-2016,British Columbia,All employees,Other chemical product manufacturing,,0.02
-2016,British Columbia,All employees,Plastics and rubber products manufacturing,,0.26
-2016,British Columbia,All employees,Plastic product manufacturing,,
-2016,British Columbia,All employees,Durable goods,,3.98
-2016,British Columbia,All employees,Wood product manufacturing,,1.26
-2016,British Columbia,All employees,Sawmills and wood preservation,,0.71
-2016,British Columbia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.21
-2016,British Columbia,All employees,Other wood product manufacturing,,0.33
-2016,British Columbia,All employees,Non-metallic mineral product manufacturing,,0.28
-2016,British Columbia,All employees,Glass and glass product manufacturing,,0.06
-2016,British Columbia,All employees,Cement and concrete product manufacturing,,0.15
-2016,British Columbia,All employees,Other non-metallic mineral product manufacturing,,0.04
-2016,British Columbia,All employees,Primary metal manufacturing,,0.17
-2016,British Columbia,All employees,Fabricated metal product manufacturing,,0.54
-2016,British Columbia,All employees,Forging and stamping,,0.01
-2016,British Columbia,All employees,Cutlery and hand tool manufacturing,,0.01
-2016,British Columbia,All employees,Architectural and structural metals manufacturing,,0.29
-2016,British Columbia,All employees,"Boiler, tank and shipping container manufacturing",,0.03
-2016,British Columbia,All employees,Spring and wire product manufacturing,,0.01
-2016,British Columbia,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.09
-2016,British Columbia,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
-2016,British Columbia,All employees,Other fabricated metal product manufacturing,,0.06
-2016,British Columbia,All employees,Machinery manufacturing,,0.42
-2016,British Columbia,All employees,"Agricultural, construction and mining machinery manufacturing",,0.05
-2016,British Columbia,All employees,Industrial machinery manufacturing,,0.09
-2016,British Columbia,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.07
-2016,British Columbia,All employees,Metalworking machinery manufacturing,,0.04
-2016,British Columbia,All employees,Other general-purpose machinery manufacturing,,0.11
-2016,British Columbia,All employees,Computer and electronic product manufacturing,,0.25
-2016,British Columbia,All employees,Computer and peripheral equipment manufacturing,,0.04
-2016,British Columbia,All employees,Communications equipment manufacturing,,0.04
-2016,British Columbia,All employees,Semiconductor and other electronic component manufacturing,,0.06
-2016,British Columbia,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.09
-2016,British Columbia,All employees,"Electrical equipment, appliance and component manufacturing",,0.13
-2016,British Columbia,All employees,Electrical equipment manufacturing,,0.04
-2016,British Columbia,All employees,Other electrical equipment and component manufacturing,,0.07
-2016,British Columbia,All employees,Transportation equipment manufacturing,,0.32
-2016,British Columbia,All employees,Motor vehicle body and trailer manufacturing,,0.07
-2016,British Columbia,All employees,Aerospace product and parts manufacturing,,0.08
-2016,British Columbia,All employees,Ship and boat building,,0.09
-2016,British Columbia,All employees,Furniture and related product manufacturing,,0.28
-2016,British Columbia,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.23
-2016,British Columbia,All employees,Office furniture (including fixtures) manufacturing,,0.03
-2016,British Columbia,All employees,Other furniture-related product manufacturing,,0.02
-2016,British Columbia,All employees,Miscellaneous manufacturing,,0.33
-2016,British Columbia,All employees,Medical equipment and supplies manufacturing,,0.1
-2016,British Columbia,All employees,Other miscellaneous manufacturing,,0.22
-2016,British Columbia,Salaried employees paid a fixed salary,Manufacturing,,1.65
-2016,British Columbia,Salaried employees paid a fixed salary,Non-durable goods,,0.71
-2016,British Columbia,Salaried employees paid a fixed salary,Food manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2016,British Columbia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Clothing manufacturing,,0.03
-2016,British Columbia,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Paper manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2016,British Columbia,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Printing and related support activities,,
-2016,British Columbia,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2016,British Columbia,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Plastic product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Durable goods,,0.94
-2016,British Columbia,Salaried employees paid a fixed salary,Wood product manufacturing,,0.2
-2016,British Columbia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.12
-2016,British Columbia,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2016,British Columbia,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.03
-2016,British Columbia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.05
-2016,British Columbia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Forging and stamping,,
-2016,British Columbia,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2016,British Columbia,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2016,British Columbia,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Machinery manufacturing,,0.14
-2016,British Columbia,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2016,British Columbia,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,British Columbia,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Ship and boat building,,
-2016,British Columbia,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.04
-2016,British Columbia,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2016,British Columbia,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.07
-2016,British Columbia,Employees paid by the hour,Manufacturing,,4.77
-2016,British Columbia,Employees paid by the hour,Non-durable goods,,1.95
-2016,British Columbia,Employees paid by the hour,Food manufacturing,,
-2016,British Columbia,Employees paid by the hour,Animal food manufacturing,,
-2016,British Columbia,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2016,British Columbia,Employees paid by the hour,Meat product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Seafood product preparation and packaging,,
-2016,British Columbia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2016,British Columbia,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Cannabis product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Clothing manufacturing,,0.05
-2016,British Columbia,Employees paid by the hour,Other leather and allied product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Paper manufacturing,,
-2016,British Columbia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2016,British Columbia,Employees paid by the hour,Converted paper product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Printing and related support activities,,
-2016,British Columbia,Employees paid by the hour,Basic chemical manufacturing,,
-2016,British Columbia,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2016,British Columbia,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2016,British Columbia,Employees paid by the hour,Other chemical product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2016,British Columbia,Employees paid by the hour,Plastic product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Durable goods,,2.82
-2016,British Columbia,Employees paid by the hour,Wood product manufacturing,,1.02
-2016,British Columbia,Employees paid by the hour,Sawmills and wood preservation,,0.57
-2016,British Columbia,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2016,British Columbia,Employees paid by the hour,Other wood product manufacturing,,0.27
-2016,British Columbia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Glass and glass product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Cement and concrete product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Primary metal manufacturing,,0.12
-2016,British Columbia,Employees paid by the hour,Fabricated metal product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Forging and stamping,,
-2016,British Columbia,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2016,British Columbia,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2016,British Columbia,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2016,British Columbia,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2016,British Columbia,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2016,British Columbia,Employees paid by the hour,Machinery manufacturing,,0.26
-2016,British Columbia,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2016,British Columbia,Employees paid by the hour,Industrial machinery manufacturing,,
-2016,British Columbia,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2016,British Columbia,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2016,British Columbia,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2016,British Columbia,Employees paid by the hour,Electrical equipment manufacturing,,
-2016,British Columbia,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2016,British Columbia,Employees paid by the hour,Transportation equipment manufacturing,,
-2016,British Columbia,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2016,British Columbia,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2016,British Columbia,Employees paid by the hour,Ship and boat building,,
-2016,British Columbia,Employees paid by the hour,Furniture and related product manufacturing,,0.22
-2016,British Columbia,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2016,British Columbia,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2016,British Columbia,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2016,British Columbia,Employees paid by the hour,Other miscellaneous manufacturing,,0.13
-2016,Yukon,All employees,Cannabis product manufacturing,,
-2016,Yukon,All employees,Durable goods,,0.52
-2016,Yukon,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,Yukon,Salaried employees paid a fixed salary,Durable goods,,
-2016,Yukon,Employees paid by the hour,Cannabis product manufacturing,,
-2016,Yukon,Employees paid by the hour,Durable goods,,
-2016,Northwest Territories,All employees,Cannabis product manufacturing,,
-2016,Northwest Territories,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,Northwest Territories,Employees paid by the hour,Cannabis product manufacturing,,
-2016,Nunavut,All employees,Cannabis product manufacturing,,
-2016,Nunavut,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2016,Nunavut,Employees paid by the hour,Cannabis product manufacturing,,
-2017,Canada,All employees,Non-durable goods,,3.8
-2017,Canada,All employees,Food manufacturing,,1.39
-2017,Canada,All employees,Animal food manufacturing,,0.06
-2017,Canada,All employees,Grain and oilseed milling,,0.04
-2017,Canada,All employees,Sugar and confectionery product manufacturing,,0.06
-2017,Canada,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.11
-2017,Canada,All employees,Dairy product manufacturing,,0.14
-2017,Canada,All employees,Meat product manufacturing,,0.36
-2017,Canada,All employees,Seafood product preparation and packaging,,0.13
-2017,Canada,All employees,Bakeries and tortilla manufacturing,,0.28
-2017,Canada,All employees,Other food manufacturing,,0.2
-2017,Canada,All employees,Beverage and tobacco product manufacturing,,0.25
-2017,Canada,All employees,Beverage manufacturing,,0.24
-2017,Canada,All employees,Tobacco manufacturing,,0.02
-2017,Canada,All employees,Cannabis product manufacturing,,
-2017,Canada,All employees,Textile mills,,0.04
-2017,Canada,All employees,"Fibre, yarn and thread mills",,0.01
-2017,Canada,All employees,Fabric mills,,0.02
-2017,Canada,All employees,Textile and fabric finishing and fabric coating,,0.01
-2017,Canada,All employees,Textile product mills,,0.06
-2017,Canada,All employees,Textile furnishings mills,,0.02
-2017,Canada,All employees,Other textile product mills,,0.04
-2017,Canada,All employees,Clothing manufacturing,,0.12
-2017,Canada,All employees,Clothing knitting mills,,0.01
-2017,Canada,All employees,Cut and sew clothing manufacturing,,0.1
-2017,Canada,All employees,Clothing accessories and other clothing manufacturing,,0.01
-2017,Canada,All employees,Leather and allied product manufacturing,,0.02
-2017,Canada,All employees,Leather and hide tanning and finishing,,0
-2017,Canada,All employees,Footwear manufacturing,,0.01
-2017,Canada,All employees,Other leather and allied product manufacturing,,0.01
-2017,Canada,All employees,Paper manufacturing,,0.33
-2017,Canada,All employees,"Pulp, paper and paperboard mills",,0.14
-2017,Canada,All employees,Converted paper product manufacturing,,0.19
-2017,Canada,All employees,Printing and related support activities,,0.3
-2017,Canada,All employees,Petroleum and coal product manufacturing,,0.11
-2017,Canada,All employees,Chemical manufacturing,,0.57
-2017,Canada,All employees,Basic chemical manufacturing,,0.08
-2017,Canada,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.04
-2017,Canada,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
-2017,Canada,All employees,Pharmaceutical and medicine manufacturing,,0.18
-2017,Canada,All employees,"Paint, coating and adhesive manufacturing",,0.05
-2017,Canada,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.11
-2017,Canada,All employees,Other chemical product manufacturing,,0.07
-2017,Canada,All employees,Plastics and rubber products manufacturing,,0.6
-2017,Canada,All employees,Plastic product manufacturing,,0.5
-2017,Canada,All employees,Rubber product manufacturing,,0.1
-2017,Canada,All employees,Durable goods,,5.47
-2017,Canada,All employees,Wood product manufacturing,,0.57
-2017,Canada,All employees,Sawmills and wood preservation,,0.23
-2017,Canada,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.11
-2017,Canada,All employees,Other wood product manufacturing,,0.23
-2017,Canada,All employees,Non-metallic mineral product manufacturing,,0.31
-2017,Canada,All employees,Clay product and refractory manufacturing,,0.01
-2017,Canada,All employees,Glass and glass product manufacturing,,0.05
-2017,Canada,All employees,Cement and concrete product manufacturing,,0.18
-2017,Canada,All employees,Lime and gypsum product manufacturing,,0.01
-2017,Canada,All employees,Other non-metallic mineral product manufacturing,,0.06
-2017,Canada,All employees,Primary metal manufacturing,,0.34
-2017,Canada,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.1
-2017,Canada,All employees,Steel product manufacturing from purchased steel,,0.05
-2017,Canada,All employees,Alumina and aluminum production and processing,,0.06
-2017,Canada,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
-2017,Canada,All employees,Foundries,,0.06
-2017,Canada,All employees,Fabricated metal product manufacturing,,0.94
-2017,Canada,All employees,Forging and stamping,,0.03
-2017,Canada,All employees,Cutlery and hand tool manufacturing,,0.02
-2017,Canada,All employees,Architectural and structural metals manufacturing,,0.36
-2017,Canada,All employees,"Boiler, tank and shipping container manufacturing",,0.07
-2017,Canada,All employees,Hardware manufacturing,,0.03
-2017,Canada,All employees,Spring and wire product manufacturing,,0.03
-2017,Canada,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.19
-2017,Canada,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2017,Canada,All employees,Other fabricated metal product manufacturing,,0.13
-2017,Canada,All employees,Machinery manufacturing,,0.8
-2017,Canada,All employees,"Agricultural, construction and mining machinery manufacturing",,0.17
-2017,Canada,All employees,Industrial machinery manufacturing,,0.09
-2017,Canada,All employees,Commercial and service industry machinery manufacturing,,0.09
-2017,Canada,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.1
-2017,Canada,All employees,Metalworking machinery manufacturing,,0.13
-2017,Canada,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.04
-2017,Canada,All employees,Other general-purpose machinery manufacturing,,0.18
-2017,Canada,All employees,Computer and electronic product manufacturing,,0.34
-2017,Canada,All employees,Computer and peripheral equipment manufacturing,,0.04
-2017,Canada,All employees,Communications equipment manufacturing,,0.08
-2017,Canada,All employees,Audio and video equipment manufacturing,,0.01
-2017,Canada,All employees,Semiconductor and other electronic component manufacturing,,0.09
-2017,Canada,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.12
-2017,Canada,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
-2017,Canada,All employees,"Electrical equipment, appliance and component manufacturing",,0.2
-2017,Canada,All employees,Electric lighting equipment manufacturing,,0.03
-2017,Canada,All employees,Household appliance manufacturing,,0.01
-2017,Canada,All employees,Electrical equipment manufacturing,,0.09
-2017,Canada,All employees,Other electrical equipment and component manufacturing,,0.07
-2017,Canada,All employees,Transportation equipment manufacturing,,1.2
-2017,Canada,All employees,Motor vehicle manufacturing,,0.27
-2017,Canada,All employees,Motor vehicle body and trailer manufacturing,,0.08
-2017,Canada,All employees,Motor vehicle parts manufacturing,,0.45
-2017,Canada,All employees,Aerospace product and parts manufacturing,,0.27
-2017,Canada,All employees,Railroad rolling stock manufacturing,,0.02
-2017,Canada,All employees,Ship and boat building,,0.05
-2017,Canada,All employees,Other transportation equipment manufacturing,,0.06
-2017,Canada,All employees,Furniture and related product manufacturing,,0.41
-2017,Canada,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.25
-2017,Canada,All employees,Office furniture (including fixtures) manufacturing,,0.13
-2017,Canada,All employees,Other furniture-related product manufacturing,,0.03
-2017,Canada,All employees,Miscellaneous manufacturing,,0.35
-2017,Canada,All employees,Medical equipment and supplies manufacturing,,0.11
-2017,Canada,All employees,Other miscellaneous manufacturing,,0.24
-2017,Canada,Salaried employees paid a fixed salary,Manufacturing,,2.29
-2017,Canada,Salaried employees paid a fixed salary,Non-durable goods,,0.97
-2017,Canada,Salaried employees paid a fixed salary,Food manufacturing,,0.27
-2017,Canada,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2017,Canada,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Meat product manufacturing,,0.06
-2017,Canada,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2017,Canada,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Other food manufacturing,,0.04
-2017,Canada,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Beverage manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Tobacco manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Textile mills,,0.01
-2017,Canada,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,0
-2017,Canada,Salaried employees paid a fixed salary,Fabric mills,,
-2017,Canada,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
-2017,Canada,Salaried employees paid a fixed salary,Textile product mills,,0.01
-2017,Canada,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
-2017,Canada,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2017,Canada,Salaried employees paid a fixed salary,Footwear manufacturing,,0
-2017,Canada,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,0
-2017,Canada,Salaried employees paid a fixed salary,Paper manufacturing,,0.07
-2017,Canada,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2017,Canada,Salaried employees paid a fixed salary,Printing and related support activities,,0.08
-2017,Canada,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Chemical manufacturing,,0.23
-2017,Canada,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2017,Canada,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2017,Canada,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,0.07
-2017,Canada,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,0.04
-2017,Canada,Salaried employees paid a fixed salary,Other chemical product manufacturing,,0.03
-2017,Canada,Salaried employees paid a fixed salary,Rubber product manufacturing,,0.02
-2017,Canada,Salaried employees paid a fixed salary,Durable goods,,1.32
-2017,Canada,Salaried employees paid a fixed salary,Wood product manufacturing,,0.09
-2017,Canada,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.04
-2017,Canada,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,0.02
-2017,Canada,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.07
-2017,Canada,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,0.04
-2017,Canada,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.09
-2017,Canada,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2017,Canada,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2017,Canada,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2017,Canada,Salaried employees paid a fixed salary,Foundries,,0.01
-2017,Canada,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.18
-2017,Canada,Salaried employees paid a fixed salary,Forging and stamping,,
-2017,Canada,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.08
-2017,Canada,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,0.02
-2017,Canada,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.02
-2017,Canada,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,0.01
-2017,Canada,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,0.02
-2017,Canada,Salaried employees paid a fixed salary,Machinery manufacturing,,0.22
-2017,Canada,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2017,Canada,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,0.02
-2017,Canada,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,0.05
-2017,Canada,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2017,Canada,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2017,Canada,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,0.05
-2017,Canada,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.18
-2017,Canada,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Communications equipment manufacturing,,0.04
-2017,Canada,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,0.04
-2017,Canada,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,0.07
-2017,Canada,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.08
-2017,Canada,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,0.04
-2017,Canada,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,0.03
-2017,Canada,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Ship and boat building,,
-2017,Canada,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.06
-2017,Canada,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.03
-2017,Canada,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,0.02
-2017,Canada,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2017,Canada,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.09
-2017,Canada,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,0.03
-2017,Canada,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.06
-2017,Canada,Employees paid by the hour,Manufacturing,,6.56
-2017,Canada,Employees paid by the hour,Non-durable goods,,2.68
-2017,Canada,Employees paid by the hour,Food manufacturing,,1.09
-2017,Canada,Employees paid by the hour,Animal food manufacturing,,
-2017,Canada,Employees paid by the hour,Grain and oilseed milling,,
-2017,Canada,Employees paid by the hour,Sugar and confectionery product manufacturing,,
-2017,Canada,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2017,Canada,Employees paid by the hour,Dairy product manufacturing,,
-2017,Canada,Employees paid by the hour,Meat product manufacturing,,0.29
-2017,Canada,Employees paid by the hour,Seafood product preparation and packaging,,
-2017,Canada,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2017,Canada,Employees paid by the hour,Other food manufacturing,,0.14
-2017,Canada,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2017,Canada,Employees paid by the hour,Beverage manufacturing,,
-2017,Canada,Employees paid by the hour,Tobacco manufacturing,,
-2017,Canada,Employees paid by the hour,Cannabis product manufacturing,,
-2017,Canada,Employees paid by the hour,Textile mills,,0.03
-2017,Canada,Employees paid by the hour,"Fibre, yarn and thread mills",,0.01
-2017,Canada,Employees paid by the hour,Fabric mills,,
-2017,Canada,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
-2017,Canada,Employees paid by the hour,Textile product mills,,0.05
-2017,Canada,Employees paid by the hour,Clothing manufacturing,,0.08
-2017,Canada,Employees paid by the hour,Cut and sew clothing manufacturing,,
-2017,Canada,Employees paid by the hour,Leather and allied product manufacturing,,0.01
-2017,Canada,Employees paid by the hour,Leather and hide tanning and finishing,,
-2017,Canada,Employees paid by the hour,Footwear manufacturing,,0.01
-2017,Canada,Employees paid by the hour,Other leather and allied product manufacturing,,0.01
-2017,Canada,Employees paid by the hour,Paper manufacturing,,0.26
-2017,Canada,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2017,Canada,Employees paid by the hour,Printing and related support activities,,0.19
-2017,Canada,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2017,Canada,Employees paid by the hour,Chemical manufacturing,,0.33
-2017,Canada,Employees paid by the hour,Basic chemical manufacturing,,
-2017,Canada,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2017,Canada,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2017,Canada,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,0.11
-2017,Canada,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,0.06
-2017,Canada,Employees paid by the hour,Other chemical product manufacturing,,0.04
-2017,Canada,Employees paid by the hour,Rubber product manufacturing,,0.07
-2017,Canada,Employees paid by the hour,Durable goods,,3.88
-2017,Canada,Employees paid by the hour,Wood product manufacturing,,0.46
-2017,Canada,Employees paid by the hour,Sawmills and wood preservation,,0.18
-2017,Canada,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.09
-2017,Canada,Employees paid by the hour,Other wood product manufacturing,,0.18
-2017,Canada,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.22
-2017,Canada,Employees paid by the hour,Clay product and refractory manufacturing,,
-2017,Canada,Employees paid by the hour,Glass and glass product manufacturing,,
-2017,Canada,Employees paid by the hour,Cement and concrete product manufacturing,,0.14
-2017,Canada,Employees paid by the hour,Lime and gypsum product manufacturing,,
-2017,Canada,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2017,Canada,Employees paid by the hour,Primary metal manufacturing,,0.24
-2017,Canada,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2017,Canada,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2017,Canada,Employees paid by the hour,Alumina and aluminum production and processing,,
-2017,Canada,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2017,Canada,Employees paid by the hour,Foundries,,0.05
-2017,Canada,Employees paid by the hour,Fabricated metal product manufacturing,,0.7
-2017,Canada,Employees paid by the hour,Forging and stamping,,
-2017,Canada,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2017,Canada,Employees paid by the hour,Architectural and structural metals manufacturing,,0.26
-2017,Canada,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,0.05
-2017,Canada,Employees paid by the hour,Hardware manufacturing,,
-2017,Canada,Employees paid by the hour,Spring and wire product manufacturing,,
-2017,Canada,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.15
-2017,Canada,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,0.06
-2017,Canada,Employees paid by the hour,Other fabricated metal product manufacturing,,0.09
-2017,Canada,Employees paid by the hour,Machinery manufacturing,,0.55
-2017,Canada,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2017,Canada,Employees paid by the hour,Industrial machinery manufacturing,,0.06
-2017,Canada,Employees paid by the hour,Commercial and service industry machinery manufacturing,,0.04
-2017,Canada,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2017,Canada,Employees paid by the hour,Metalworking machinery manufacturing,,
-2017,Canada,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2017,Canada,Employees paid by the hour,Other general-purpose machinery manufacturing,,0.13
-2017,Canada,Employees paid by the hour,Computer and electronic product manufacturing,,0.14
-2017,Canada,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
-2017,Canada,Employees paid by the hour,Communications equipment manufacturing,,0.04
-2017,Canada,Employees paid by the hour,Audio and video equipment manufacturing,,
-2017,Canada,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,0.04
-2017,Canada,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,0.05
-2017,Canada,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.11
-2017,Canada,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2017,Canada,Employees paid by the hour,Household appliance manufacturing,,
-2017,Canada,Employees paid by the hour,Electrical equipment manufacturing,,0.05
-2017,Canada,Employees paid by the hour,Other electrical equipment and component manufacturing,,0.04
-2017,Canada,Employees paid by the hour,Transportation equipment manufacturing,,
-2017,Canada,Employees paid by the hour,Motor vehicle manufacturing,,
-2017,Canada,Employees paid by the hour,Motor vehicle parts manufacturing,,
-2017,Canada,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2017,Canada,Employees paid by the hour,Ship and boat building,,
-2017,Canada,Employees paid by the hour,Other transportation equipment manufacturing,,
-2017,Canada,Employees paid by the hour,Furniture and related product manufacturing,,0.32
-2017,Canada,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.2
-2017,Canada,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,0.1
-2017,Canada,Employees paid by the hour,Other furniture-related product manufacturing,,
-2017,Canada,Employees paid by the hour,Miscellaneous manufacturing,,0.2
-2017,Canada,Employees paid by the hour,Medical equipment and supplies manufacturing,,0.06
-2017,Canada,Employees paid by the hour,Other miscellaneous manufacturing,,0.14
-2017,Newfoundland and Labrador,All employees,Manufacturing,10,4.63
-2017,Newfoundland and Labrador,All employees,Non-durable goods,,3.52
-2017,Newfoundland and Labrador,All employees,Food manufacturing,,2.56
-2017,Newfoundland and Labrador,All employees,Seafood product preparation and packaging,,2.04
-2017,Newfoundland and Labrador,All employees,Cannabis product manufacturing,,
-2017,Newfoundland and Labrador,All employees,Durable goods,,1.12
-2017,Newfoundland and Labrador,All employees,Sawmills and wood preservation,,
-2017,Newfoundland and Labrador,All employees,Ship and boat building,,0.17
-2017,Newfoundland and Labrador,All employees,Other miscellaneous manufacturing,,0.07
-2017,Newfoundland and Labrador,Salaried employees paid a fixed salary,Manufacturing,,
-2017,Newfoundland and Labrador,Salaried employees paid a fixed salary,Non-durable goods,,
-2017,Newfoundland and Labrador,Salaried employees paid a fixed salary,Food manufacturing,,
-2017,Newfoundland and Labrador,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,Newfoundland and Labrador,Salaried employees paid a fixed salary,Durable goods,,0.22
-2017,Newfoundland and Labrador,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2017,Newfoundland and Labrador,Employees paid by the hour,Manufacturing,,
-2017,Newfoundland and Labrador,Employees paid by the hour,Non-durable goods,,
-2017,Newfoundland and Labrador,Employees paid by the hour,Food manufacturing,,
-2017,Newfoundland and Labrador,Employees paid by the hour,Cannabis product manufacturing,,
-2017,Newfoundland and Labrador,Employees paid by the hour,Durable goods,,0.81
-2017,Newfoundland and Labrador,Employees paid by the hour,Other miscellaneous manufacturing,,
-2017,Prince Edward Island,All employees,Manufacturing,11,7.77
-2017,Prince Edward Island,All employees,Non-durable goods,,4.92
-2017,Prince Edward Island,All employees,Food manufacturing,,3.33
-2017,Prince Edward Island,All employees,Seafood product preparation and packaging,,
-2017,Prince Edward Island,All employees,Cannabis product manufacturing,,
-2017,Prince Edward Island,All employees,Printing and related support activities,,0.15
-2017,Prince Edward Island,All employees,Durable goods,,2.85
-2017,Prince Edward Island,Salaried employees paid a fixed salary,Manufacturing,,2.17
-2017,Prince Edward Island,Salaried employees paid a fixed salary,Food manufacturing,,0.6
-2017,Prince Edward Island,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2017,Prince Edward Island,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,Prince Edward Island,Salaried employees paid a fixed salary,Durable goods,,1.12
-2017,Prince Edward Island,Employees paid by the hour,Manufacturing,,5.31
-2017,Prince Edward Island,Employees paid by the hour,Food manufacturing,,2.64
-2017,Prince Edward Island,Employees paid by the hour,Seafood product preparation and packaging,,
-2017,Prince Edward Island,Employees paid by the hour,Cannabis product manufacturing,,
-2017,Prince Edward Island,Employees paid by the hour,Durable goods,,1.6
-2017,Nova Scotia,All employees,Manufacturing,12,7.48
-2017,Nova Scotia,All employees,Non-durable goods,,4.74
-2017,Nova Scotia,All employees,Food manufacturing,,2.24
-2017,Nova Scotia,All employees,Animal food manufacturing,,
-2017,Nova Scotia,All employees,Dairy product manufacturing,,
-2017,Nova Scotia,All employees,Meat product manufacturing,,0.13
-2017,Nova Scotia,All employees,Seafood product preparation and packaging,,1.32
-2017,Nova Scotia,All employees,Bakeries and tortilla manufacturing,,0.2
-2017,Nova Scotia,All employees,Beverage and tobacco product manufacturing,,0.27
-2017,Nova Scotia,All employees,Cannabis product manufacturing,,
-2017,Nova Scotia,All employees,Fabric mills,,
-2017,Nova Scotia,All employees,Clothing manufacturing,,0.08
-2017,Nova Scotia,All employees,Paper manufacturing,,0.26
-2017,Nova Scotia,All employees,"Pulp, paper and paperboard mills",,
-2017,Nova Scotia,All employees,Printing and related support activities,,0.21
-2017,Nova Scotia,All employees,Plastics and rubber products manufacturing,,1.2
-2017,Nova Scotia,All employees,Durable goods,,2.73
-2017,Nova Scotia,All employees,Wood product manufacturing,,0.44
-2017,Nova Scotia,All employees,Sawmills and wood preservation,,0.23
-2017,Nova Scotia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.09
-2017,Nova Scotia,All employees,Other wood product manufacturing,,0.11
-2017,Nova Scotia,All employees,Non-metallic mineral product manufacturing,,0.18
-2017,Nova Scotia,All employees,Cement and concrete product manufacturing,,0.14
-2017,Nova Scotia,All employees,Other non-metallic mineral product manufacturing,,
-2017,Nova Scotia,All employees,Fabricated metal product manufacturing,,0.46
-2017,Nova Scotia,All employees,Spring and wire product manufacturing,,0.03
-2017,Nova Scotia,All employees,Machinery manufacturing,,0.21
-2017,Nova Scotia,All employees,Commercial and service industry machinery manufacturing,,0.06
-2017,Nova Scotia,All employees,Other general-purpose machinery manufacturing,,0.03
-2017,Nova Scotia,All employees,Transportation equipment manufacturing,,0.95
-2017,Nova Scotia,All employees,Aerospace product and parts manufacturing,,0.39
-2017,Nova Scotia,All employees,Ship and boat building,,0.53
-2017,Nova Scotia,All employees,Miscellaneous manufacturing,,0.15
-2017,Nova Scotia,All employees,Medical equipment and supplies manufacturing,,0.05
-2017,Nova Scotia,All employees,Other miscellaneous manufacturing,,0.1
-2017,Nova Scotia,Salaried employees paid a fixed salary,Manufacturing,,1.45
-2017,Nova Scotia,Salaried employees paid a fixed salary,Non-durable goods,,0.85
-2017,Nova Scotia,Salaried employees paid a fixed salary,Food manufacturing,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Paper manufacturing,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Printing and related support activities,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Durable goods,,0.6
-2017,Nova Scotia,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.16
-2017,Nova Scotia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2017,Nova Scotia,Salaried employees paid a fixed salary,Ship and boat building,,
-2017,Nova Scotia,Employees paid by the hour,Manufacturing,,5.74
-2017,Nova Scotia,Employees paid by the hour,Non-durable goods,,3.71
-2017,Nova Scotia,Employees paid by the hour,Food manufacturing,,
-2017,Nova Scotia,Employees paid by the hour,Animal food manufacturing,,
-2017,Nova Scotia,Employees paid by the hour,Seafood product preparation and packaging,,
-2017,Nova Scotia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2017,Nova Scotia,Employees paid by the hour,Cannabis product manufacturing,,
-2017,Nova Scotia,Employees paid by the hour,Paper manufacturing,,
-2017,Nova Scotia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2017,Nova Scotia,Employees paid by the hour,Printing and related support activities,,
-2017,Nova Scotia,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2017,Nova Scotia,Employees paid by the hour,Durable goods,,2.03
-2017,Nova Scotia,Employees paid by the hour,Wood product manufacturing,,
-2017,Nova Scotia,Employees paid by the hour,Sawmills and wood preservation,,
-2017,Nova Scotia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2017,Nova Scotia,Employees paid by the hour,Cement and concrete product manufacturing,,
-2017,Nova Scotia,Employees paid by the hour,Fabricated metal product manufacturing,,
-2017,Nova Scotia,Employees paid by the hour,Machinery manufacturing,,
-2017,Nova Scotia,Employees paid by the hour,Transportation equipment manufacturing,,0.76
-2017,Nova Scotia,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2017,Nova Scotia,Employees paid by the hour,Ship and boat building,,
-2017,New Brunswick,All employees,Manufacturing,13,9.28
-2017,New Brunswick,All employees,Non-durable goods,,5.27
-2017,New Brunswick,All employees,Food manufacturing,,3.31
-2017,New Brunswick,All employees,Seafood product preparation and packaging,,1.42
-2017,New Brunswick,All employees,Beverage and tobacco product manufacturing,,0.24
-2017,New Brunswick,All employees,Cannabis product manufacturing,,
-2017,New Brunswick,All employees,"Fibre, yarn and thread mills",,
-2017,New Brunswick,All employees,Paper manufacturing,,0.86
-2017,New Brunswick,All employees,"Pulp, paper and paperboard mills",,0.62
-2017,New Brunswick,All employees,Converted paper product manufacturing,,0.24
-2017,New Brunswick,All employees,Printing and related support activities,,0.07
-2017,New Brunswick,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.07
-2017,New Brunswick,All employees,Durable goods,,4.01
-2017,New Brunswick,All employees,Wood product manufacturing,,1.51
-2017,New Brunswick,All employees,Sawmills and wood preservation,,0.81
-2017,New Brunswick,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.22
-2017,New Brunswick,All employees,Other wood product manufacturing,,0.48
-2017,New Brunswick,All employees,Non-metallic mineral product manufacturing,,0.28
-2017,New Brunswick,All employees,Other non-metallic mineral product manufacturing,,
-2017,New Brunswick,All employees,Fabricated metal product manufacturing,,0.65
-2017,New Brunswick,All employees,Architectural and structural metals manufacturing,,0.42
-2017,New Brunswick,All employees,Machinery manufacturing,,0.35
-2017,New Brunswick,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.15
-2017,New Brunswick,All employees,Other general-purpose machinery manufacturing,,0.07
-2017,New Brunswick,All employees,Computer and electronic product manufacturing,,
-2017,New Brunswick,All employees,Furniture and related product manufacturing,,0.25
-2017,New Brunswick,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.23
-2017,New Brunswick,All employees,Miscellaneous manufacturing,,0.48
-2017,New Brunswick,All employees,Medical equipment and supplies manufacturing,,0.03
-2017,New Brunswick,All employees,Other miscellaneous manufacturing,,0.45
-2017,New Brunswick,Salaried employees paid a fixed salary,Manufacturing,,1.94
-2017,New Brunswick,Salaried employees paid a fixed salary,Non-durable goods,,1.11
-2017,New Brunswick,Salaried employees paid a fixed salary,Food manufacturing,,0.6
-2017,New Brunswick,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,New Brunswick,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2017,New Brunswick,Salaried employees paid a fixed salary,Paper manufacturing,,
-2017,New Brunswick,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2017,New Brunswick,Salaried employees paid a fixed salary,Durable goods,,0.83
-2017,New Brunswick,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2017,New Brunswick,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2017,New Brunswick,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.08
-2017,New Brunswick,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2017,New Brunswick,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2017,New Brunswick,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2017,New Brunswick,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2017,New Brunswick,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2017,New Brunswick,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2017,New Brunswick,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2017,New Brunswick,Employees paid by the hour,Manufacturing,,7.02
-2017,New Brunswick,Employees paid by the hour,Non-durable goods,,4.02
-2017,New Brunswick,Employees paid by the hour,Food manufacturing,,2.6
-2017,New Brunswick,Employees paid by the hour,Cannabis product manufacturing,,
-2017,New Brunswick,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2017,New Brunswick,Employees paid by the hour,Paper manufacturing,,
-2017,New Brunswick,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2017,New Brunswick,Employees paid by the hour,Durable goods,,3.01
-2017,New Brunswick,Employees paid by the hour,Wood product manufacturing,,
-2017,New Brunswick,Employees paid by the hour,Sawmills and wood preservation,,
-2017,New Brunswick,Employees paid by the hour,Other wood product manufacturing,,0.37
-2017,New Brunswick,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2017,New Brunswick,Employees paid by the hour,Fabricated metal product manufacturing,,
-2017,New Brunswick,Employees paid by the hour,Machinery manufacturing,,
-2017,New Brunswick,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2017,New Brunswick,Employees paid by the hour,Computer and electronic product manufacturing,,
-2017,New Brunswick,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2017,New Brunswick,Employees paid by the hour,Other miscellaneous manufacturing,,
-2017,Quebec,All employees,Manufacturing,24,11.61
-2017,Quebec,All employees,Non-durable goods,,4.87
-2017,Quebec,All employees,Food manufacturing,,1.67
-2017,Quebec,All employees,Animal food manufacturing,,0.07
-2017,Quebec,All employees,Grain and oilseed milling,,0.04
-2017,Quebec,All employees,Sugar and confectionery product manufacturing,,0.11
-2017,Quebec,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.14
-2017,Quebec,All employees,Dairy product manufacturing,,0.24
-2017,Quebec,All employees,Meat product manufacturing,,0.46
-2017,Quebec,All employees,Seafood product preparation and packaging,,0.04
-2017,Quebec,All employees,Bakeries and tortilla manufacturing,,0.34
-2017,Quebec,All employees,Other food manufacturing,,0.24
-2017,Quebec,All employees,Beverage and tobacco product manufacturing,,0.26
-2017,Quebec,All employees,Cannabis product manufacturing,,
-2017,Quebec,All employees,Textile mills,,0.09
-2017,Quebec,All employees,"Fibre, yarn and thread mills",,0.01
-2017,Quebec,All employees,Fabric mills,,0.06
-2017,Quebec,All employees,Textile and fabric finishing and fabric coating,,0.01
-2017,Quebec,All employees,Textile product mills,,0.09
-2017,Quebec,All employees,Textile furnishings mills,,0.04
-2017,Quebec,All employees,Other textile product mills,,0.05
-2017,Quebec,All employees,Clothing manufacturing,,0.29
-2017,Quebec,All employees,Clothing knitting mills,,0.03
-2017,Quebec,All employees,Cut and sew clothing manufacturing,,0.24
-2017,Quebec,All employees,Clothing accessories and other clothing manufacturing,,0.02
-2017,Quebec,All employees,Leather and allied product manufacturing,,0.03
-2017,Quebec,All employees,Leather and hide tanning and finishing,,0
-2017,Quebec,All employees,Footwear manufacturing,,0.02
-2017,Quebec,All employees,Other leather and allied product manufacturing,,0.01
-2017,Quebec,All employees,Paper manufacturing,,0.58
-2017,Quebec,All employees,"Pulp, paper and paperboard mills",,0.22
-2017,Quebec,All employees,Converted paper product manufacturing,,0.36
-2017,Quebec,All employees,Printing and related support activities,,0.33
-2017,Quebec,All employees,Petroleum and coal product manufacturing,,0.09
-2017,Quebec,All employees,Chemical manufacturing,,0.68
-2017,Quebec,All employees,Basic chemical manufacturing,,0.08
-2017,Quebec,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.02
-2017,Quebec,All employees,Pharmaceutical and medicine manufacturing,,0.24
-2017,Quebec,All employees,"Paint, coating and adhesive manufacturing",,0.07
-2017,Quebec,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.12
-2017,Quebec,All employees,Other chemical product manufacturing,,0.09
-2017,Quebec,All employees,Plastics and rubber products manufacturing,,0.75
-2017,Quebec,All employees,Plastic product manufacturing,,0.6
-2017,Quebec,All employees,Rubber product manufacturing,,0.15
-2017,Quebec,All employees,Durable goods,,6.75
-2017,Quebec,All employees,Wood product manufacturing,,0.8
-2017,Quebec,All employees,Sawmills and wood preservation,,0.27
-2017,Quebec,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
-2017,Quebec,All employees,Other wood product manufacturing,,0.38
-2017,Quebec,All employees,Non-metallic mineral product manufacturing,,0.37
-2017,Quebec,All employees,Clay product and refractory manufacturing,,0.01
-2017,Quebec,All employees,Glass and glass product manufacturing,,0.07
-2017,Quebec,All employees,Cement and concrete product manufacturing,,0.2
-2017,Quebec,All employees,Lime and gypsum product manufacturing,,0.02
-2017,Quebec,All employees,Other non-metallic mineral product manufacturing,,0.08
-2017,Quebec,All employees,Primary metal manufacturing,,0.47
-2017,Quebec,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.05
-2017,Quebec,All employees,Steel product manufacturing from purchased steel,,0.03
-2017,Quebec,All employees,Alumina and aluminum production and processing,,0.18
-2017,Quebec,All employees,Non-ferrous metal (except aluminum) production and processing,,0.12
-2017,Quebec,All employees,Foundries,,0.09
-2017,Quebec,All employees,Fabricated metal product manufacturing,,1.21
-2017,Quebec,All employees,Forging and stamping,,0.06
-2017,Quebec,All employees,Cutlery and hand tool manufacturing,,0.03
-2017,Quebec,All employees,Architectural and structural metals manufacturing,,0.49
-2017,Quebec,All employees,"Boiler, tank and shipping container manufacturing",,0.07
-2017,Quebec,All employees,Hardware manufacturing,,0.02
-2017,Quebec,All employees,Spring and wire product manufacturing,,0.03
-2017,Quebec,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.26
-2017,Quebec,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.08
-2017,Quebec,All employees,Other fabricated metal product manufacturing,,0.18
-2017,Quebec,All employees,Machinery manufacturing,,0.88
-2017,Quebec,All employees,"Agricultural, construction and mining machinery manufacturing",,0.09
-2017,Quebec,All employees,Industrial machinery manufacturing,,0.15
-2017,Quebec,All employees,Commercial and service industry machinery manufacturing,,0.17
-2017,Quebec,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.15
-2017,Quebec,All employees,Metalworking machinery manufacturing,,0.06
-2017,Quebec,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.07
-2017,Quebec,All employees,Other general-purpose machinery manufacturing,,0.18
-2017,Quebec,All employees,Computer and electronic product manufacturing,,0.41
-2017,Quebec,All employees,Communications equipment manufacturing,,0.08
-2017,Quebec,All employees,Audio and video equipment manufacturing,,0.01
-2017,Quebec,All employees,Semiconductor and other electronic component manufacturing,,0.12
-2017,Quebec,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.17
-2017,Quebec,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
-2017,Quebec,All employees,"Electrical equipment, appliance and component manufacturing",,0.3
-2017,Quebec,All employees,Electric lighting equipment manufacturing,,0.07
-2017,Quebec,All employees,Household appliance manufacturing,,0.02
-2017,Quebec,All employees,Electrical equipment manufacturing,,0.11
-2017,Quebec,All employees,Other electrical equipment and component manufacturing,,0.11
-2017,Quebec,All employees,Transportation equipment manufacturing,,1.21
-2017,Quebec,All employees,Motor vehicle body and trailer manufacturing,,0.13
-2017,Quebec,All employees,Motor vehicle parts manufacturing,,0.12
-2017,Quebec,All employees,Aerospace product and parts manufacturing,,0.67
-2017,Quebec,All employees,Other transportation equipment manufacturing,,0.13
-2017,Quebec,All employees,Furniture and related product manufacturing,,0.63
-2017,Quebec,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.44
-2017,Quebec,All employees,Office furniture (including fixtures) manufacturing,,0.15
-2017,Quebec,All employees,Other furniture-related product manufacturing,,0.04
-2017,Quebec,All employees,Miscellaneous manufacturing,,0.47
-2017,Quebec,All employees,Medical equipment and supplies manufacturing,,0.13
-2017,Quebec,All employees,Other miscellaneous manufacturing,,0.34
-2017,Quebec,Salaried employees paid a fixed salary,Manufacturing,,2.78
-2017,Quebec,Salaried employees paid a fixed salary,Non-durable goods,,1.09
-2017,Quebec,Salaried employees paid a fixed salary,Food manufacturing,,0.29
-2017,Quebec,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2017,Quebec,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Other food manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Textile mills,,0.02
-2017,Quebec,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2017,Quebec,Salaried employees paid a fixed salary,Fabric mills,,
-2017,Quebec,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
-2017,Quebec,Salaried employees paid a fixed salary,Textile product mills,,
-2017,Quebec,Salaried employees paid a fixed salary,Textile furnishings mills,,
-2017,Quebec,Salaried employees paid a fixed salary,Other textile product mills,,
-2017,Quebec,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Clothing knitting mills,,
-2017,Quebec,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Clothing accessories and other clothing manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2017,Quebec,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Paper manufacturing,,0.13
-2017,Quebec,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2017,Quebec,Salaried employees paid a fixed salary,Printing and related support activities,,0.07
-2017,Quebec,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Chemical manufacturing,,0.26
-2017,Quebec,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2017,Quebec,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
-2017,Quebec,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2017,Quebec,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.09
-2017,Quebec,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Durable goods,,1.69
-2017,Quebec,Salaried employees paid a fixed salary,Wood product manufacturing,,0.09
-2017,Quebec,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2017,Quebec,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2017,Quebec,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.1
-2017,Quebec,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2017,Quebec,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2017,Quebec,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2017,Quebec,Salaried employees paid a fixed salary,Foundries,,
-2017,Quebec,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.18
-2017,Quebec,Salaried employees paid a fixed salary,Forging and stamping,,
-2017,Quebec,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2017,Quebec,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Machinery manufacturing,,0.23
-2017,Quebec,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2017,Quebec,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2017,Quebec,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2017,Quebec,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,Quebec,Salaried employees paid a fixed salary,Manufacturing and reproducing magnetic and optical media,,
-2017,Quebec,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2017,Quebec,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.09
-2017,Quebec,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.06
-2017,Quebec,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.09
-2017,Quebec,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2017,Quebec,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.07
-2017,Quebec,Employees paid by the hour,Manufacturing,,8.31
-2017,Quebec,Employees paid by the hour,Non-durable goods,,3.57
-2017,Quebec,Employees paid by the hour,Food manufacturing,,1.35
-2017,Quebec,Employees paid by the hour,Animal food manufacturing,,
-2017,Quebec,Employees paid by the hour,Grain and oilseed milling,,
-2017,Quebec,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2017,Quebec,Employees paid by the hour,Dairy product manufacturing,,
-2017,Quebec,Employees paid by the hour,Meat product manufacturing,,
-2017,Quebec,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2017,Quebec,Employees paid by the hour,Other food manufacturing,,
-2017,Quebec,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2017,Quebec,Employees paid by the hour,Cannabis product manufacturing,,
-2017,Quebec,Employees paid by the hour,Textile mills,,0.07
-2017,Quebec,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2017,Quebec,Employees paid by the hour,Fabric mills,,
-2017,Quebec,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
-2017,Quebec,Employees paid by the hour,Textile product mills,,
-2017,Quebec,Employees paid by the hour,Textile furnishings mills,,
-2017,Quebec,Employees paid by the hour,Other textile product mills,,
-2017,Quebec,Employees paid by the hour,Clothing manufacturing,,0.2
-2017,Quebec,Employees paid by the hour,Clothing knitting mills,,
-2017,Quebec,Employees paid by the hour,Cut and sew clothing manufacturing,,
-2017,Quebec,Employees paid by the hour,Clothing accessories and other clothing manufacturing,,
-2017,Quebec,Employees paid by the hour,Leather and hide tanning and finishing,,
-2017,Quebec,Employees paid by the hour,Footwear manufacturing,,
-2017,Quebec,Employees paid by the hour,Other leather and allied product manufacturing,,
-2017,Quebec,Employees paid by the hour,Paper manufacturing,,0.44
-2017,Quebec,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2017,Quebec,Employees paid by the hour,Printing and related support activities,,0.21
-2017,Quebec,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2017,Quebec,Employees paid by the hour,Chemical manufacturing,,0.41
-2017,Quebec,Employees paid by the hour,Basic chemical manufacturing,,
-2017,Quebec,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2017,Quebec,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2017,Quebec,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
-2017,Quebec,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2017,Quebec,Employees paid by the hour,Other chemical product manufacturing,,
-2017,Quebec,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2017,Quebec,Employees paid by the hour,Plastic product manufacturing,,0.48
-2017,Quebec,Employees paid by the hour,Rubber product manufacturing,,
-2017,Quebec,Employees paid by the hour,Durable goods,,4.74
-2017,Quebec,Employees paid by the hour,Wood product manufacturing,,0.67
-2017,Quebec,Employees paid by the hour,Sawmills and wood preservation,,
-2017,Quebec,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2017,Quebec,Employees paid by the hour,Other wood product manufacturing,,0.31
-2017,Quebec,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.25
-2017,Quebec,Employees paid by the hour,Clay product and refractory manufacturing,,
-2017,Quebec,Employees paid by the hour,Glass and glass product manufacturing,,
-2017,Quebec,Employees paid by the hour,Cement and concrete product manufacturing,,
-2017,Quebec,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2017,Quebec,Employees paid by the hour,Primary metal manufacturing,,
-2017,Quebec,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2017,Quebec,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2017,Quebec,Employees paid by the hour,Alumina and aluminum production and processing,,
-2017,Quebec,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2017,Quebec,Employees paid by the hour,Foundries,,
-2017,Quebec,Employees paid by the hour,Fabricated metal product manufacturing,,0.96
-2017,Quebec,Employees paid by the hour,Forging and stamping,,
-2017,Quebec,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2017,Quebec,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2017,Quebec,Employees paid by the hour,Hardware manufacturing,,
-2017,Quebec,Employees paid by the hour,Spring and wire product manufacturing,,
-2017,Quebec,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2017,Quebec,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2017,Quebec,Employees paid by the hour,Machinery manufacturing,,0.62
-2017,Quebec,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2017,Quebec,Employees paid by the hour,Industrial machinery manufacturing,,
-2017,Quebec,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2017,Quebec,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2017,Quebec,Employees paid by the hour,Metalworking machinery manufacturing,,
-2017,Quebec,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2017,Quebec,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2017,Quebec,Employees paid by the hour,Communications equipment manufacturing,,
-2017,Quebec,Employees paid by the hour,Audio and video equipment manufacturing,,
-2017,Quebec,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2017,Quebec,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,Quebec,Employees paid by the hour,Manufacturing and reproducing magnetic and optical media,,
-2017,Quebec,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2017,Quebec,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2017,Quebec,Employees paid by the hour,Household appliance manufacturing,,
-2017,Quebec,Employees paid by the hour,Electrical equipment manufacturing,,
-2017,Quebec,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2017,Quebec,Employees paid by the hour,Transportation equipment manufacturing,,
-2017,Quebec,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2017,Quebec,Employees paid by the hour,Other transportation equipment manufacturing,,
-2017,Quebec,Employees paid by the hour,Furniture and related product manufacturing,,0.48
-2017,Quebec,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.34
-2017,Quebec,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2017,Quebec,Employees paid by the hour,Miscellaneous manufacturing,,0.31
-2017,Quebec,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2017,Quebec,Employees paid by the hour,Other miscellaneous manufacturing,,0.22
-2017,Ontario,All employees,Manufacturing,35,10.58
-2017,Ontario,All employees,Non-durable goods,,4
-2017,Ontario,All employees,Food manufacturing,,1.24
-2017,Ontario,All employees,Animal food manufacturing,,0.06
-2017,Ontario,All employees,Grain and oilseed milling,,0.05
-2017,Ontario,All employees,Sugar and confectionery product manufacturing,,0.07
-2017,Ontario,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.09
-2017,Ontario,All employees,Dairy product manufacturing,,0.14
-2017,Ontario,All employees,Meat product manufacturing,,0.3
-2017,Ontario,All employees,Seafood product preparation and packaging,,0.01
-2017,Ontario,All employees,Bakeries and tortilla manufacturing,,0.32
-2017,Ontario,All employees,Other food manufacturing,,0.21
-2017,Ontario,All employees,Beverage and tobacco product manufacturing,,0.28
-2017,Ontario,All employees,Cannabis product manufacturing,,
-2017,Ontario,All employees,Textile mills,,0.05
-2017,Ontario,All employees,"Fibre, yarn and thread mills",,0.01
-2017,Ontario,All employees,Fabric mills,,0.02
-2017,Ontario,All employees,Textile and fabric finishing and fabric coating,,0.02
-2017,Ontario,All employees,Textile product mills,,0.06
-2017,Ontario,All employees,Textile furnishings mills,,0.02
-2017,Ontario,All employees,Other textile product mills,,0.04
-2017,Ontario,All employees,Clothing manufacturing,,0.09
-2017,Ontario,All employees,Clothing knitting mills,,0
-2017,Ontario,All employees,Cut and sew clothing manufacturing,,0.07
-2017,Ontario,All employees,Clothing accessories and other clothing manufacturing,,0.01
-2017,Ontario,All employees,Leather and allied product manufacturing,,0.02
-2017,Ontario,All employees,Leather and hide tanning and finishing,,0
-2017,Ontario,All employees,Footwear manufacturing,,0
-2017,Ontario,All employees,Other leather and allied product manufacturing,,0.02
-2017,Ontario,All employees,Paper manufacturing,,0.27
-2017,Ontario,All employees,"Pulp, paper and paperboard mills",,0.06
-2017,Ontario,All employees,Converted paper product manufacturing,,0.21
-2017,Ontario,All employees,Printing and related support activities,,0.37
-2017,Ontario,All employees,Petroleum and coal product manufacturing,,0.1
-2017,Ontario,All employees,Chemical manufacturing,,0.74
-2017,Ontario,All employees,Basic chemical manufacturing,,0.09
-2017,Ontario,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.07
-2017,Ontario,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
-2017,Ontario,All employees,Pharmaceutical and medicine manufacturing,,0.25
-2017,Ontario,All employees,"Paint, coating and adhesive manufacturing",,0.06
-2017,Ontario,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.17
-2017,Ontario,All employees,Other chemical product manufacturing,,0.09
-2017,Ontario,All employees,Plastics and rubber products manufacturing,,0.79
-2017,Ontario,All employees,Plastic product manufacturing,,0.7
-2017,Ontario,All employees,Rubber product manufacturing,,0.09
-2017,Ontario,All employees,Durable goods,,6.57
-2017,Ontario,All employees,Wood product manufacturing,,0.27
-2017,Ontario,All employees,Sawmills and wood preservation,,0.05
-2017,Ontario,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.06
-2017,Ontario,All employees,Other wood product manufacturing,,0.16
-2017,Ontario,All employees,Non-metallic mineral product manufacturing,,0.31
-2017,Ontario,All employees,Clay product and refractory manufacturing,,0.02
-2017,Ontario,All employees,Glass and glass product manufacturing,,0.05
-2017,Ontario,All employees,Cement and concrete product manufacturing,,0.17
-2017,Ontario,All employees,Lime and gypsum product manufacturing,,0.01
-2017,Ontario,All employees,Other non-metallic mineral product manufacturing,,0.06
-2017,Ontario,All employees,Primary metal manufacturing,,0.42
-2017,Ontario,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.2
-2017,Ontario,All employees,Steel product manufacturing from purchased steel,,0.06
-2017,Ontario,All employees,Alumina and aluminum production and processing,,0.04
-2017,Ontario,All employees,Non-ferrous metal (except aluminum) production and processing,,0.05
-2017,Ontario,All employees,Foundries,,0.07
-2017,Ontario,All employees,Fabricated metal product manufacturing,,1.03
-2017,Ontario,All employees,Forging and stamping,,0.05
-2017,Ontario,All employees,Cutlery and hand tool manufacturing,,0.04
-2017,Ontario,All employees,Architectural and structural metals manufacturing,,0.34
-2017,Ontario,All employees,"Boiler, tank and shipping container manufacturing",,0.06
-2017,Ontario,All employees,Hardware manufacturing,,0.06
-2017,Ontario,All employees,Spring and wire product manufacturing,,0.03
-2017,Ontario,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.22
-2017,Ontario,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.09
-2017,Ontario,All employees,Other fabricated metal product manufacturing,,0.15
-2017,Ontario,All employees,Machinery manufacturing,,0.96
-2017,Ontario,All employees,"Agricultural, construction and mining machinery manufacturing",,0.12
-2017,Ontario,All employees,Industrial machinery manufacturing,,0.11
-2017,Ontario,All employees,Commercial and service industry machinery manufacturing,,0.1
-2017,Ontario,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
-2017,Ontario,All employees,Metalworking machinery manufacturing,,0.27
-2017,Ontario,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.04
-2017,Ontario,All employees,Other general-purpose machinery manufacturing,,0.24
-2017,Ontario,All employees,Computer and electronic product manufacturing,,0.47
-2017,Ontario,All employees,Computer and peripheral equipment manufacturing,,0.06
-2017,Ontario,All employees,Communications equipment manufacturing,,0.12
-2017,Ontario,All employees,Audio and video equipment manufacturing,,0.01
-2017,Ontario,All employees,Semiconductor and other electronic component manufacturing,,0.11
-2017,Ontario,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.15
-2017,Ontario,All employees,"Electrical equipment, appliance and component manufacturing",,0.25
-2017,Ontario,All employees,Electric lighting equipment manufacturing,,0.03
-2017,Ontario,All employees,Household appliance manufacturing,,0.02
-2017,Ontario,All employees,Electrical equipment manufacturing,,0.11
-2017,Ontario,All employees,Other electrical equipment and component manufacturing,,0.09
-2017,Ontario,All employees,Transportation equipment manufacturing,,2.02
-2017,Ontario,All employees,Motor vehicle manufacturing,,0.6
-2017,Ontario,All employees,Motor vehicle body and trailer manufacturing,,0.06
-2017,Ontario,All employees,Motor vehicle parts manufacturing,,1.05
-2017,Ontario,All employees,Aerospace product and parts manufacturing,,0.19
-2017,Ontario,All employees,Railroad rolling stock manufacturing,,
-2017,Ontario,All employees,Furniture and related product manufacturing,,0.46
-2017,Ontario,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
-2017,Ontario,All employees,Office furniture (including fixtures) manufacturing,,0.23
-2017,Ontario,All employees,Other furniture-related product manufacturing,,0.03
-2017,Ontario,All employees,Miscellaneous manufacturing,,0.39
-2017,Ontario,All employees,Medical equipment and supplies manufacturing,,0.14
-2017,Ontario,All employees,Other miscellaneous manufacturing,,0.25
-2017,Ontario,Salaried employees paid a fixed salary,Manufacturing,,2.67
-2017,Ontario,Salaried employees paid a fixed salary,Non-durable goods,,1.11
-2017,Ontario,Salaried employees paid a fixed salary,Food manufacturing,,0.28
-2017,Ontario,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2017,Ontario,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Other food manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Textile mills,,0.01
-2017,Ontario,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2017,Ontario,Salaried employees paid a fixed salary,Fabric mills,,
-2017,Ontario,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
-2017,Ontario,Salaried employees paid a fixed salary,Textile furnishings mills,,
-2017,Ontario,Salaried employees paid a fixed salary,Other textile product mills,,
-2017,Ontario,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
-2017,Ontario,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2017,Ontario,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Paper manufacturing,,0.06
-2017,Ontario,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2017,Ontario,Salaried employees paid a fixed salary,Printing and related support activities,,0.11
-2017,Ontario,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Chemical manufacturing,,0.28
-2017,Ontario,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2017,Ontario,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2017,Ontario,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
-2017,Ontario,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2017,Ontario,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Plastic product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Durable goods,,1.56
-2017,Ontario,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2017,Ontario,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2017,Ontario,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.11
-2017,Ontario,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2017,Ontario,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2017,Ontario,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2017,Ontario,Salaried employees paid a fixed salary,Foundries,,
-2017,Ontario,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.22
-2017,Ontario,Salaried employees paid a fixed salary,Forging and stamping,,
-2017,Ontario,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.09
-2017,Ontario,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2017,Ontario,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
-2017,Ontario,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
-2017,Ontario,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Machinery manufacturing,,0.28
-2017,Ontario,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2017,Ontario,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2017,Ontario,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2017,Ontario,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,Ontario,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.1
-2017,Ontario,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Railroad rolling stock manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.07
-2017,Ontario,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.03
-2017,Ontario,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2017,Ontario,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2017,Ontario,Employees paid by the hour,Manufacturing,,7.43
-2017,Ontario,Employees paid by the hour,Non-durable goods,,2.74
-2017,Ontario,Employees paid by the hour,Food manufacturing,,0.93
-2017,Ontario,Employees paid by the hour,Animal food manufacturing,,
-2017,Ontario,Employees paid by the hour,Grain and oilseed milling,,
-2017,Ontario,Employees paid by the hour,Sugar and confectionery product manufacturing,,
-2017,Ontario,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2017,Ontario,Employees paid by the hour,Dairy product manufacturing,,
-2017,Ontario,Employees paid by the hour,Meat product manufacturing,,
-2017,Ontario,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2017,Ontario,Employees paid by the hour,Other food manufacturing,,
-2017,Ontario,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2017,Ontario,Employees paid by the hour,Cannabis product manufacturing,,
-2017,Ontario,Employees paid by the hour,Textile mills,,0.04
-2017,Ontario,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2017,Ontario,Employees paid by the hour,Fabric mills,,
-2017,Ontario,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
-2017,Ontario,Employees paid by the hour,Textile furnishings mills,,
-2017,Ontario,Employees paid by the hour,Other textile product mills,,
-2017,Ontario,Employees paid by the hour,Clothing manufacturing,,
-2017,Ontario,Employees paid by the hour,Leather and allied product manufacturing,,0.02
-2017,Ontario,Employees paid by the hour,Leather and hide tanning and finishing,,
-2017,Ontario,Employees paid by the hour,Footwear manufacturing,,
-2017,Ontario,Employees paid by the hour,Other leather and allied product manufacturing,,
-2017,Ontario,Employees paid by the hour,Paper manufacturing,,0.21
-2017,Ontario,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2017,Ontario,Employees paid by the hour,Printing and related support activities,,0.22
-2017,Ontario,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2017,Ontario,Employees paid by the hour,Chemical manufacturing,,0.44
-2017,Ontario,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2017,Ontario,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2017,Ontario,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
-2017,Ontario,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2017,Ontario,Employees paid by the hour,Other chemical product manufacturing,,
-2017,Ontario,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2017,Ontario,Employees paid by the hour,Plastic product manufacturing,,
-2017,Ontario,Employees paid by the hour,Rubber product manufacturing,,
-2017,Ontario,Employees paid by the hour,Durable goods,,4.69
-2017,Ontario,Employees paid by the hour,Wood product manufacturing,,
-2017,Ontario,Employees paid by the hour,Sawmills and wood preservation,,
-2017,Ontario,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2017,Ontario,Employees paid by the hour,Other wood product manufacturing,,0.12
-2017,Ontario,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2017,Ontario,Employees paid by the hour,Clay product and refractory manufacturing,,
-2017,Ontario,Employees paid by the hour,Glass and glass product manufacturing,,
-2017,Ontario,Employees paid by the hour,Cement and concrete product manufacturing,,
-2017,Ontario,Employees paid by the hour,Lime and gypsum product manufacturing,,
-2017,Ontario,Employees paid by the hour,Primary metal manufacturing,,0.3
-2017,Ontario,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2017,Ontario,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2017,Ontario,Employees paid by the hour,Alumina and aluminum production and processing,,
-2017,Ontario,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2017,Ontario,Employees paid by the hour,Foundries,,
-2017,Ontario,Employees paid by the hour,Fabricated metal product manufacturing,,0.74
-2017,Ontario,Employees paid by the hour,Forging and stamping,,
-2017,Ontario,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2017,Ontario,Employees paid by the hour,Architectural and structural metals manufacturing,,0.24
-2017,Ontario,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2017,Ontario,Employees paid by the hour,Hardware manufacturing,,
-2017,Ontario,Employees paid by the hour,Spring and wire product manufacturing,,
-2017,Ontario,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.17
-2017,Ontario,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
-2017,Ontario,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2017,Ontario,Employees paid by the hour,Machinery manufacturing,,0.65
-2017,Ontario,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2017,Ontario,Employees paid by the hour,Industrial machinery manufacturing,,
-2017,Ontario,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2017,Ontario,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2017,Ontario,Employees paid by the hour,Metalworking machinery manufacturing,,
-2017,Ontario,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2017,Ontario,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2017,Ontario,Employees paid by the hour,Computer and electronic product manufacturing,,
-2017,Ontario,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
-2017,Ontario,Employees paid by the hour,Communications equipment manufacturing,,
-2017,Ontario,Employees paid by the hour,Audio and video equipment manufacturing,,
-2017,Ontario,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2017,Ontario,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,Ontario,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.14
-2017,Ontario,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2017,Ontario,Employees paid by the hour,Household appliance manufacturing,,
-2017,Ontario,Employees paid by the hour,Electrical equipment manufacturing,,
-2017,Ontario,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2017,Ontario,Employees paid by the hour,Transportation equipment manufacturing,,
-2017,Ontario,Employees paid by the hour,Motor vehicle manufacturing,,
-2017,Ontario,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2017,Ontario,Employees paid by the hour,Motor vehicle parts manufacturing,,
-2017,Ontario,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2017,Ontario,Employees paid by the hour,Railroad rolling stock manufacturing,,
-2017,Ontario,Employees paid by the hour,Furniture and related product manufacturing,,0.35
-2017,Ontario,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.16
-2017,Ontario,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2017,Ontario,Employees paid by the hour,Miscellaneous manufacturing,,
-2017,Ontario,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2017,Ontario,Employees paid by the hour,Other miscellaneous manufacturing,,
-2017,Manitoba,All employees,Manufacturing,46,8.88
-2017,Manitoba,All employees,Non-durable goods,,3.66
-2017,Manitoba,All employees,Food manufacturing,,1.53
-2017,Manitoba,All employees,Animal food manufacturing,,0.06
-2017,Manitoba,All employees,Meat product manufacturing,,0.68
-2017,Manitoba,All employees,Bakeries and tortilla manufacturing,,0.21
-2017,Manitoba,All employees,Beverage and tobacco product manufacturing,,0.17
-2017,Manitoba,All employees,Cannabis product manufacturing,,
-2017,Manitoba,All employees,Textile and fabric finishing and fabric coating,,
-2017,Manitoba,All employees,Other textile product mills,,
-2017,Manitoba,All employees,Cut and sew clothing manufacturing,,
-2017,Manitoba,All employees,Leather and hide tanning and finishing,,
-2017,Manitoba,All employees,Paper manufacturing,,0.19
-2017,Manitoba,All employees,"Pulp, paper and paperboard mills",,
-2017,Manitoba,All employees,Printing and related support activities,,0.51
-2017,Manitoba,All employees,Chemical manufacturing,,0.43
-2017,Manitoba,All employees,Basic chemical manufacturing,,0.06
-2017,Manitoba,All employees,Durable goods,,5.22
-2017,Manitoba,All employees,Wood product manufacturing,,0.34
-2017,Manitoba,All employees,Sawmills and wood preservation,,
-2017,Manitoba,All employees,"Veneer, plywood and engineered wood product manufacturing",,
-2017,Manitoba,All employees,Other wood product manufacturing,,0.21
-2017,Manitoba,All employees,Non-metallic mineral product manufacturing,,0.22
-2017,Manitoba,All employees,Cement and concrete product manufacturing,,0.16
-2017,Manitoba,All employees,Other non-metallic mineral product manufacturing,,0.03
-2017,Manitoba,All employees,Primary metal manufacturing,,0.53
-2017,Manitoba,All employees,Foundries,,0.13
-2017,Manitoba,All employees,Fabricated metal product manufacturing,,0.73
-2017,Manitoba,All employees,Architectural and structural metals manufacturing,,0.29
-2017,Manitoba,All employees,"Boiler, tank and shipping container manufacturing",,0.13
-2017,Manitoba,All employees,Spring and wire product manufacturing,,
-2017,Manitoba,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.06
-2017,Manitoba,All employees,Machinery manufacturing,,0.97
-2017,Manitoba,All employees,"Agricultural, construction and mining machinery manufacturing",,0.63
-2017,Manitoba,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
-2017,Manitoba,All employees,Other general-purpose machinery manufacturing,,0.14
-2017,Manitoba,All employees,Computer and electronic product manufacturing,,0.09
-2017,Manitoba,All employees,Semiconductor and other electronic component manufacturing,,0.03
-2017,Manitoba,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.02
-2017,Manitoba,All employees,Electrical equipment manufacturing,,0.12
-2017,Manitoba,All employees,Transportation equipment manufacturing,,1.37
-2017,Manitoba,All employees,Motor vehicle body and trailer manufacturing,,0.21
-2017,Manitoba,All employees,Aerospace product and parts manufacturing,,0.63
-2017,Manitoba,All employees,Furniture and related product manufacturing,,0.6
-2017,Manitoba,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.55
-2017,Manitoba,All employees,Office furniture (including fixtures) manufacturing,,0.05
-2017,Manitoba,All employees,Other furniture-related product manufacturing,,0.01
-2017,Manitoba,All employees,Miscellaneous manufacturing,,0.25
-2017,Manitoba,All employees,Medical equipment and supplies manufacturing,,0.09
-2017,Manitoba,All employees,Other miscellaneous manufacturing,,0.16
-2017,Manitoba,Salaried employees paid a fixed salary,Manufacturing,,1.86
-2017,Manitoba,Salaried employees paid a fixed salary,Non-durable goods,,0.77
-2017,Manitoba,Salaried employees paid a fixed salary,Food manufacturing,,0.23
-2017,Manitoba,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
-2017,Manitoba,Salaried employees paid a fixed salary,Other textile product mills,,
-2017,Manitoba,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Paper manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2017,Manitoba,Salaried employees paid a fixed salary,Printing and related support activities,,
-2017,Manitoba,Salaried employees paid a fixed salary,Chemical manufacturing,,0.13
-2017,Manitoba,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Durable goods,,1.08
-2017,Manitoba,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2017,Manitoba,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2017,Manitoba,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Machinery manufacturing,,0.22
-2017,Manitoba,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2017,Manitoba,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2017,Manitoba,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,Manitoba,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.08
-2017,Manitoba,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.07
-2017,Manitoba,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2017,Manitoba,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2017,Manitoba,Employees paid by the hour,Manufacturing,,6.63
-2017,Manitoba,Employees paid by the hour,Non-durable goods,,2.71
-2017,Manitoba,Employees paid by the hour,Food manufacturing,,1.26
-2017,Manitoba,Employees paid by the hour,Animal food manufacturing,,
-2017,Manitoba,Employees paid by the hour,Meat product manufacturing,,
-2017,Manitoba,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2017,Manitoba,Employees paid by the hour,Cannabis product manufacturing,,
-2017,Manitoba,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
-2017,Manitoba,Employees paid by the hour,Other textile product mills,,
-2017,Manitoba,Employees paid by the hour,Clothing manufacturing,,
-2017,Manitoba,Employees paid by the hour,Cut and sew clothing manufacturing,,
-2017,Manitoba,Employees paid by the hour,Leather and hide tanning and finishing,,
-2017,Manitoba,Employees paid by the hour,Paper manufacturing,,
-2017,Manitoba,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2017,Manitoba,Employees paid by the hour,Printing and related support activities,,
-2017,Manitoba,Employees paid by the hour,Chemical manufacturing,,0.28
-2017,Manitoba,Employees paid by the hour,Basic chemical manufacturing,,
-2017,Manitoba,Employees paid by the hour,Durable goods,,3.92
-2017,Manitoba,Employees paid by the hour,Wood product manufacturing,,
-2017,Manitoba,Employees paid by the hour,Sawmills and wood preservation,,
-2017,Manitoba,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2017,Manitoba,Employees paid by the hour,Other wood product manufacturing,,
-2017,Manitoba,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2017,Manitoba,Employees paid by the hour,Cement and concrete product manufacturing,,
-2017,Manitoba,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2017,Manitoba,Employees paid by the hour,Primary metal manufacturing,,
-2017,Manitoba,Employees paid by the hour,Fabricated metal product manufacturing,,
-2017,Manitoba,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2017,Manitoba,Employees paid by the hour,Machinery manufacturing,,0.72
-2017,Manitoba,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2017,Manitoba,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2017,Manitoba,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2017,Manitoba,Employees paid by the hour,Computer and electronic product manufacturing,,
-2017,Manitoba,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,Manitoba,Employees paid by the hour,Electrical equipment manufacturing,,
-2017,Manitoba,Employees paid by the hour,Transportation equipment manufacturing,,
-2017,Manitoba,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2017,Manitoba,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2017,Manitoba,Employees paid by the hour,Furniture and related product manufacturing,,0.47
-2017,Manitoba,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.43
-2017,Manitoba,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2017,Manitoba,Employees paid by the hour,Other furniture-related product manufacturing,,
-2017,Manitoba,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2017,Manitoba,Employees paid by the hour,Other miscellaneous manufacturing,,
-2017,Saskatchewan,All employees,Manufacturing,47,5.01
-2017,Saskatchewan,All employees,Non-durable goods,,1.82
-2017,Saskatchewan,All employees,Food manufacturing,,0.9
-2017,Saskatchewan,All employees,Animal food manufacturing,,0.08
-2017,Saskatchewan,All employees,Grain and oilseed milling,,0.2
-2017,Saskatchewan,All employees,Meat product manufacturing,,0.4
-2017,Saskatchewan,All employees,Beverage and tobacco product manufacturing,,0.14
-2017,Saskatchewan,All employees,Cannabis product manufacturing,,
-2017,Saskatchewan,All employees,Printing and related support activities,,0.11
-2017,Saskatchewan,All employees,Chemical manufacturing,,0.28
-2017,Saskatchewan,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.13
-2017,Saskatchewan,All employees,Durable goods,,3.2
-2017,Saskatchewan,All employees,Wood product manufacturing,,0.39
-2017,Saskatchewan,All employees,Sawmills and wood preservation,,0.11
-2017,Saskatchewan,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.19
-2017,Saskatchewan,All employees,Other wood product manufacturing,,0.09
-2017,Saskatchewan,All employees,Cement and concrete product manufacturing,,0.17
-2017,Saskatchewan,All employees,Fabricated metal product manufacturing,,0.63
-2017,Saskatchewan,All employees,Architectural and structural metals manufacturing,,0.29
-2017,Saskatchewan,All employees,"Coating, engraving, cold and heat treating and allied activities",,
-2017,Saskatchewan,All employees,Machinery manufacturing,,1.03
-2017,Saskatchewan,All employees,"Agricultural, construction and mining machinery manufacturing",,0.84
-2017,Saskatchewan,All employees,Computer and electronic product manufacturing,,0.14
-2017,Saskatchewan,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,Saskatchewan,All employees,Motor vehicle body and trailer manufacturing,,0.16
-2017,Saskatchewan,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.12
-2017,Saskatchewan,All employees,Miscellaneous manufacturing,,0.13
-2017,Saskatchewan,All employees,Medical equipment and supplies manufacturing,,0.06
-2017,Saskatchewan,All employees,Other miscellaneous manufacturing,,0.07
-2017,Saskatchewan,Salaried employees paid a fixed salary,Manufacturing,,1.36
-2017,Saskatchewan,Salaried employees paid a fixed salary,Non-durable goods,,0.55
-2017,Saskatchewan,Salaried employees paid a fixed salary,Food manufacturing,,
-2017,Saskatchewan,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2017,Saskatchewan,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2017,Saskatchewan,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,Saskatchewan,Salaried employees paid a fixed salary,Printing and related support activities,,
-2017,Saskatchewan,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2017,Saskatchewan,Salaried employees paid a fixed salary,Durable goods,,0.8
-2017,Saskatchewan,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.14
-2017,Saskatchewan,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2017,Saskatchewan,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2017,Saskatchewan,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2017,Saskatchewan,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2017,Saskatchewan,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,Saskatchewan,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2017,Saskatchewan,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2017,Saskatchewan,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2017,Saskatchewan,Employees paid by the hour,Manufacturing,,3.51
-2017,Saskatchewan,Employees paid by the hour,Non-durable goods,,1.22
-2017,Saskatchewan,Employees paid by the hour,Food manufacturing,,
-2017,Saskatchewan,Employees paid by the hour,Grain and oilseed milling,,
-2017,Saskatchewan,Employees paid by the hour,Meat product manufacturing,,
-2017,Saskatchewan,Employees paid by the hour,Cannabis product manufacturing,,
-2017,Saskatchewan,Employees paid by the hour,Printing and related support activities,,
-2017,Saskatchewan,Employees paid by the hour,Chemical manufacturing,,
-2017,Saskatchewan,Employees paid by the hour,Durable goods,,2.29
-2017,Saskatchewan,Employees paid by the hour,Fabricated metal product manufacturing,,0.46
-2017,Saskatchewan,Employees paid by the hour,Machinery manufacturing,,
-2017,Saskatchewan,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2017,Saskatchewan,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2017,Saskatchewan,Employees paid by the hour,Computer and electronic product manufacturing,,
-2017,Saskatchewan,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,Saskatchewan,Employees paid by the hour,Transportation equipment manufacturing,,
-2017,Saskatchewan,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2017,Saskatchewan,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2017,Alberta,All employees,Manufacturing,48,5.99
-2017,Alberta,All employees,Non-durable goods,,2.56
-2017,Alberta,All employees,Food manufacturing,,1.04
-2017,Alberta,All employees,Animal food manufacturing,,0.06
-2017,Alberta,All employees,Grain and oilseed milling,,0.04
-2017,Alberta,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.04
-2017,Alberta,All employees,Meat product manufacturing,,0.51
-2017,Alberta,All employees,Bakeries and tortilla manufacturing,,0.15
-2017,Alberta,All employees,Other food manufacturing,,0.15
-2017,Alberta,All employees,Beverage and tobacco product manufacturing,,0.15
-2017,Alberta,All employees,Cannabis product manufacturing,,
-2017,Alberta,All employees,Cut and sew clothing manufacturing,,0.01
-2017,Alberta,All employees,Other leather and allied product manufacturing,,
-2017,Alberta,All employees,Paper manufacturing,,0.11
-2017,Alberta,All employees,"Pulp, paper and paperboard mills",,0.08
-2017,Alberta,All employees,Converted paper product manufacturing,,0.03
-2017,Alberta,All employees,Printing and related support activities,,0.21
-2017,Alberta,All employees,Petroleum and coal product manufacturing,,0.25
-2017,Alberta,All employees,Chemical manufacturing,,0.47
-2017,Alberta,All employees,Basic chemical manufacturing,,0.13
-2017,Alberta,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.15
-2017,Alberta,All employees,Other chemical product manufacturing,,0.06
-2017,Alberta,All employees,Plastics and rubber products manufacturing,,0.28
-2017,Alberta,All employees,Durable goods,,3.43
-2017,Alberta,All employees,Wood product manufacturing,,0.47
-2017,Alberta,All employees,Sawmills and wood preservation,,0.2
-2017,Alberta,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.12
-2017,Alberta,All employees,Other wood product manufacturing,,0.15
-2017,Alberta,All employees,Non-metallic mineral product manufacturing,,0.36
-2017,Alberta,All employees,Glass and glass product manufacturing,,
-2017,Alberta,All employees,Cement and concrete product manufacturing,,0.25
-2017,Alberta,All employees,Other non-metallic mineral product manufacturing,,0.07
-2017,Alberta,All employees,Primary metal manufacturing,,0.13
-2017,Alberta,All employees,Fabricated metal product manufacturing,,0.98
-2017,Alberta,All employees,Forging and stamping,,
-2017,Alberta,All employees,Architectural and structural metals manufacturing,,0.43
-2017,Alberta,All employees,"Boiler, tank and shipping container manufacturing",,0.14
-2017,Alberta,All employees,Spring and wire product manufacturing,,0.03
-2017,Alberta,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.18
-2017,Alberta,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2017,Alberta,All employees,Other fabricated metal product manufacturing,,0.12
-2017,Alberta,All employees,Machinery manufacturing,,0.78
-2017,Alberta,All employees,"Agricultural, construction and mining machinery manufacturing",,0.39
-2017,Alberta,All employees,Industrial machinery manufacturing,,
-2017,Alberta,All employees,Commercial and service industry machinery manufacturing,,0.02
-2017,Alberta,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.1
-2017,Alberta,All employees,Metalworking machinery manufacturing,,0.03
-2017,Alberta,All employees,"Engine, turbine and power transmission equipment manufacturing",,
-2017,Alberta,All employees,Other general-purpose machinery manufacturing,,0.19
-2017,Alberta,All employees,Computer and electronic product manufacturing,,0.14
-2017,Alberta,All employees,Computer and peripheral equipment manufacturing,,
-2017,Alberta,All employees,Communications equipment manufacturing,,
-2017,Alberta,All employees,Semiconductor and other electronic component manufacturing,,0.03
-2017,Alberta,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.07
-2017,Alberta,All employees,"Electrical equipment, appliance and component manufacturing",,0.08
-2017,Alberta,All employees,Electrical equipment manufacturing,,0.05
-2017,Alberta,All employees,Other electrical equipment and component manufacturing,,
-2017,Alberta,All employees,Transportation equipment manufacturing,,0.11
-2017,Alberta,All employees,Motor vehicle body and trailer manufacturing,,0.05
-2017,Alberta,All employees,Motor vehicle parts manufacturing,,0.02
-2017,Alberta,All employees,Aerospace product and parts manufacturing,,
-2017,Alberta,All employees,Furniture and related product manufacturing,,0.17
-2017,Alberta,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.11
-2017,Alberta,All employees,Office furniture (including fixtures) manufacturing,,0.04
-2017,Alberta,All employees,Other furniture-related product manufacturing,,0.03
-2017,Alberta,All employees,Miscellaneous manufacturing,,0.21
-2017,Alberta,All employees,Medical equipment and supplies manufacturing,,0.07
-2017,Alberta,All employees,Other miscellaneous manufacturing,,0.14
-2017,Alberta,Salaried employees paid a fixed salary,Manufacturing,,1.71
-2017,Alberta,Salaried employees paid a fixed salary,Non-durable goods,,
-2017,Alberta,Salaried employees paid a fixed salary,Food manufacturing,,0.18
-2017,Alberta,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2017,Alberta,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Paper manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2017,Alberta,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Printing and related support activities,,0.05
-2017,Alberta,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2017,Alberta,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Durable goods,,0.85
-2017,Alberta,Salaried employees paid a fixed salary,Wood product manufacturing,,0.09
-2017,Alberta,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2017,Alberta,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.21
-2017,Alberta,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2017,Alberta,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2017,Alberta,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2017,Alberta,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2017,Alberta,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.08
-2017,Alberta,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,Alberta,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2017,Alberta,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2017,Alberta,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2017,Alberta,Employees paid by the hour,Manufacturing,,4.01
-2017,Alberta,Employees paid by the hour,Non-durable goods,,
-2017,Alberta,Employees paid by the hour,Food manufacturing,,0.84
-2017,Alberta,Employees paid by the hour,Grain and oilseed milling,,
-2017,Alberta,Employees paid by the hour,Meat product manufacturing,,
-2017,Alberta,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2017,Alberta,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2017,Alberta,Employees paid by the hour,Cannabis product manufacturing,,
-2017,Alberta,Employees paid by the hour,Paper manufacturing,,
-2017,Alberta,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2017,Alberta,Employees paid by the hour,Converted paper product manufacturing,,
-2017,Alberta,Employees paid by the hour,Printing and related support activities,,0.14
-2017,Alberta,Employees paid by the hour,Chemical manufacturing,,
-2017,Alberta,Employees paid by the hour,Basic chemical manufacturing,,
-2017,Alberta,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2017,Alberta,Employees paid by the hour,Other chemical product manufacturing,,
-2017,Alberta,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2017,Alberta,Employees paid by the hour,Durable goods,,2.36
-2017,Alberta,Employees paid by the hour,Wood product manufacturing,,0.36
-2017,Alberta,Employees paid by the hour,Sawmills and wood preservation,,
-2017,Alberta,Employees paid by the hour,Other wood product manufacturing,,0.12
-2017,Alberta,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2017,Alberta,Employees paid by the hour,Cement and concrete product manufacturing,,
-2017,Alberta,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2017,Alberta,Employees paid by the hour,Fabricated metal product manufacturing,,0.69
-2017,Alberta,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2017,Alberta,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2017,Alberta,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2017,Alberta,Employees paid by the hour,Machinery manufacturing,,
-2017,Alberta,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2017,Alberta,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2017,Alberta,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2017,Alberta,Employees paid by the hour,Computer and electronic product manufacturing,,0.05
-2017,Alberta,Employees paid by the hour,Communications equipment manufacturing,,
-2017,Alberta,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,Alberta,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2017,Alberta,Employees paid by the hour,Electrical equipment manufacturing,,
-2017,Alberta,Employees paid by the hour,Transportation equipment manufacturing,,
-2017,Alberta,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2017,Alberta,Employees paid by the hour,Motor vehicle parts manufacturing,,
-2017,Alberta,Employees paid by the hour,Furniture and related product manufacturing,,
-2017,Alberta,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2017,Alberta,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2017,Alberta,Employees paid by the hour,Other furniture-related product manufacturing,,
-2017,Alberta,Employees paid by the hour,Miscellaneous manufacturing,,
-2017,Alberta,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2017,Alberta,Employees paid by the hour,Other miscellaneous manufacturing,,
-2017,British Columbia,All employees,Manufacturing,59,6.76
-2017,British Columbia,All employees,Non-durable goods,,2.79
-2017,British Columbia,All employees,Food manufacturing,,1.2
-2017,British Columbia,All employees,Animal food manufacturing,,0.04
-2017,British Columbia,All employees,Grain and oilseed milling,,0.02
-2017,British Columbia,All employees,Sugar and confectionery product manufacturing,,0.05
-2017,British Columbia,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.07
-2017,British Columbia,All employees,Dairy product manufacturing,,0.1
-2017,British Columbia,All employees,Meat product manufacturing,,0.22
-2017,British Columbia,All employees,Seafood product preparation and packaging,,0.16
-2017,British Columbia,All employees,Bakeries and tortilla manufacturing,,0.31
-2017,British Columbia,All employees,Other food manufacturing,,0.23
-2017,British Columbia,All employees,Beverage and tobacco product manufacturing,,0.32
-2017,British Columbia,All employees,Cannabis product manufacturing,,
-2017,British Columbia,All employees,Fabric mills,,
-2017,British Columbia,All employees,Textile product mills,,0.04
-2017,British Columbia,All employees,Textile furnishings mills,,0.01
-2017,British Columbia,All employees,Other textile product mills,,0.03
-2017,British Columbia,All employees,Clothing manufacturing,,0.07
-2017,British Columbia,All employees,Cut and sew clothing manufacturing,,0.05
-2017,British Columbia,All employees,Other leather and allied product manufacturing,,
-2017,British Columbia,All employees,Paper manufacturing,,0.36
-2017,British Columbia,All employees,"Pulp, paper and paperboard mills",,0.26
-2017,British Columbia,All employees,Converted paper product manufacturing,,0.1
-2017,British Columbia,All employees,Printing and related support activities,,0.2
-2017,British Columbia,All employees,Petroleum and coal product manufacturing,,0.04
-2017,British Columbia,All employees,Chemical manufacturing,,0.29
-2017,British Columbia,All employees,Basic chemical manufacturing,,0.03
-2017,British Columbia,All employees,Pharmaceutical and medicine manufacturing,,0.12
-2017,British Columbia,All employees,"Paint, coating and adhesive manufacturing",,0.03
-2017,British Columbia,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.07
-2017,British Columbia,All employees,Other chemical product manufacturing,,0.02
-2017,British Columbia,All employees,Plastics and rubber products manufacturing,,0.24
-2017,British Columbia,All employees,Plastic product manufacturing,,
-2017,British Columbia,All employees,Durable goods,,3.98
-2017,British Columbia,All employees,Wood product manufacturing,,1.23
-2017,British Columbia,All employees,Sawmills and wood preservation,,0.69
-2017,British Columbia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.21
-2017,British Columbia,All employees,Other wood product manufacturing,,0.32
-2017,British Columbia,All employees,Non-metallic mineral product manufacturing,,0.28
-2017,British Columbia,All employees,Glass and glass product manufacturing,,0.07
-2017,British Columbia,All employees,Cement and concrete product manufacturing,,0.15
-2017,British Columbia,All employees,Other non-metallic mineral product manufacturing,,0.04
-2017,British Columbia,All employees,Primary metal manufacturing,,0.17
-2017,British Columbia,All employees,Fabricated metal product manufacturing,,0.54
-2017,British Columbia,All employees,Forging and stamping,,0.01
-2017,British Columbia,All employees,Cutlery and hand tool manufacturing,,
-2017,British Columbia,All employees,Architectural and structural metals manufacturing,,0.28
-2017,British Columbia,All employees,"Boiler, tank and shipping container manufacturing",,0.03
-2017,British Columbia,All employees,Spring and wire product manufacturing,,0.02
-2017,British Columbia,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.09
-2017,British Columbia,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
-2017,British Columbia,All employees,Other fabricated metal product manufacturing,,0.07
-2017,British Columbia,All employees,Machinery manufacturing,,0.41
-2017,British Columbia,All employees,"Agricultural, construction and mining machinery manufacturing",,0.05
-2017,British Columbia,All employees,Industrial machinery manufacturing,,0.07
-2017,British Columbia,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
-2017,British Columbia,All employees,Metalworking machinery manufacturing,,0.04
-2017,British Columbia,All employees,Other general-purpose machinery manufacturing,,0.11
-2017,British Columbia,All employees,Computer and electronic product manufacturing,,0.26
-2017,British Columbia,All employees,Computer and peripheral equipment manufacturing,,0.04
-2017,British Columbia,All employees,Communications equipment manufacturing,,0.04
-2017,British Columbia,All employees,Semiconductor and other electronic component manufacturing,,0.07
-2017,British Columbia,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.1
-2017,British Columbia,All employees,"Electrical equipment, appliance and component manufacturing",,0.14
-2017,British Columbia,All employees,Electrical equipment manufacturing,,0.04
-2017,British Columbia,All employees,Other electrical equipment and component manufacturing,,0.08
-2017,British Columbia,All employees,Transportation equipment manufacturing,,0.33
-2017,British Columbia,All employees,Motor vehicle body and trailer manufacturing,,0.08
-2017,British Columbia,All employees,Aerospace product and parts manufacturing,,0.07
-2017,British Columbia,All employees,Ship and boat building,,0.1
-2017,British Columbia,All employees,Furniture and related product manufacturing,,0.28
-2017,British Columbia,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.22
-2017,British Columbia,All employees,Office furniture (including fixtures) manufacturing,,0.03
-2017,British Columbia,All employees,Other furniture-related product manufacturing,,0.02
-2017,British Columbia,All employees,Miscellaneous manufacturing,,0.32
-2017,British Columbia,All employees,Medical equipment and supplies manufacturing,,0.1
-2017,British Columbia,All employees,Other miscellaneous manufacturing,,0.22
-2017,British Columbia,Salaried employees paid a fixed salary,Manufacturing,,1.65
-2017,British Columbia,Salaried employees paid a fixed salary,Non-durable goods,,0.66
-2017,British Columbia,Salaried employees paid a fixed salary,Food manufacturing,,0.24
-2017,British Columbia,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2017,British Columbia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Paper manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2017,British Columbia,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Printing and related support activities,,
-2017,British Columbia,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2017,British Columbia,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.05
-2017,British Columbia,Salaried employees paid a fixed salary,Plastic product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Durable goods,,0.98
-2017,British Columbia,Salaried employees paid a fixed salary,Wood product manufacturing,,0.25
-2017,British Columbia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.16
-2017,British Columbia,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2017,British Columbia,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.06
-2017,British Columbia,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Forging and stamping,,
-2017,British Columbia,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2017,British Columbia,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2017,British Columbia,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Machinery manufacturing,,0.12
-2017,British Columbia,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2017,British Columbia,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,British Columbia,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Ship and boat building,,
-2017,British Columbia,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2017,British Columbia,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2017,British Columbia,Employees paid by the hour,Manufacturing,,4.76
-2017,British Columbia,Employees paid by the hour,Non-durable goods,,1.99
-2017,British Columbia,Employees paid by the hour,Food manufacturing,,0.9
-2017,British Columbia,Employees paid by the hour,Animal food manufacturing,,
-2017,British Columbia,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2017,British Columbia,Employees paid by the hour,Meat product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Seafood product preparation and packaging,,
-2017,British Columbia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2017,British Columbia,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Cannabis product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Clothing manufacturing,,
-2017,British Columbia,Employees paid by the hour,Other leather and allied product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Paper manufacturing,,
-2017,British Columbia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2017,British Columbia,Employees paid by the hour,Converted paper product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Printing and related support activities,,0.14
-2017,British Columbia,Employees paid by the hour,Basic chemical manufacturing,,
-2017,British Columbia,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2017,British Columbia,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2017,British Columbia,Employees paid by the hour,Other chemical product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Plastics and rubber products manufacturing,,0.18
-2017,British Columbia,Employees paid by the hour,Plastic product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Durable goods,,2.76
-2017,British Columbia,Employees paid by the hour,Wood product manufacturing,,0.94
-2017,British Columbia,Employees paid by the hour,Sawmills and wood preservation,,0.52
-2017,British Columbia,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2017,British Columbia,Employees paid by the hour,Other wood product manufacturing,,0.25
-2017,British Columbia,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.21
-2017,British Columbia,Employees paid by the hour,Glass and glass product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Cement and concrete product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Primary metal manufacturing,,
-2017,British Columbia,Employees paid by the hour,Fabricated metal product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Forging and stamping,,
-2017,British Columbia,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2017,British Columbia,Employees paid by the hour,Architectural and structural metals manufacturing,,0.19
-2017,British Columbia,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2017,British Columbia,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2017,British Columbia,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Machinery manufacturing,,0.27
-2017,British Columbia,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2017,British Columbia,Employees paid by the hour,Industrial machinery manufacturing,,
-2017,British Columbia,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2017,British Columbia,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2017,British Columbia,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2017,British Columbia,Employees paid by the hour,Electrical equipment manufacturing,,
-2017,British Columbia,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2017,British Columbia,Employees paid by the hour,Transportation equipment manufacturing,,
-2017,British Columbia,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2017,British Columbia,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2017,British Columbia,Employees paid by the hour,Ship and boat building,,
-2017,British Columbia,Employees paid by the hour,Furniture and related product manufacturing,,
-2017,British Columbia,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2017,British Columbia,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2017,British Columbia,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2017,British Columbia,Employees paid by the hour,Other miscellaneous manufacturing,,
-2017,Yukon,All employees,Cannabis product manufacturing,,
-2017,Yukon,All employees,Durable goods,,0.36
-2017,Yukon,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,Yukon,Salaried employees paid a fixed salary,Durable goods,,
-2017,Yukon,Employees paid by the hour,Cannabis product manufacturing,,
-2017,Yukon,Employees paid by the hour,Durable goods,,
-2017,Northwest Territories,All employees,Cannabis product manufacturing,,
-2017,Northwest Territories,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,Northwest Territories,Employees paid by the hour,Cannabis product manufacturing,,
-2017,Nunavut,All employees,Cannabis product manufacturing,,
-2017,Nunavut,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2017,Nunavut,Employees paid by the hour,Cannabis product manufacturing,,
-2018,Canada,All employees,Non-durable goods,,3.8
-2018,Canada,All employees,Food manufacturing,,1.43
-2018,Canada,All employees,Animal food manufacturing,,0.06
-2018,Canada,All employees,Grain and oilseed milling,,0.04
-2018,Canada,All employees,Sugar and confectionery product manufacturing,,0.06
-2018,Canada,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.11
-2018,Canada,All employees,Dairy product manufacturing,,0.15
-2018,Canada,All employees,Meat product manufacturing,,0.38
-2018,Canada,All employees,Seafood product preparation and packaging,,0.13
-2018,Canada,All employees,Bakeries and tortilla manufacturing,,0.29
-2018,Canada,All employees,Other food manufacturing,,0.2
-2018,Canada,All employees,Beverage and tobacco product manufacturing,,0.26
-2018,Canada,All employees,Beverage manufacturing,,0.24
-2018,Canada,All employees,Tobacco manufacturing,,
-2018,Canada,All employees,Cannabis product manufacturing,,
-2018,Canada,All employees,Textile mills,,0.04
-2018,Canada,All employees,"Fibre, yarn and thread mills",,0.01
-2018,Canada,All employees,Fabric mills,,0.02
-2018,Canada,All employees,Textile and fabric finishing and fabric coating,,0.01
-2018,Canada,All employees,Textile product mills,,0.06
-2018,Canada,All employees,Textile furnishings mills,,0.02
-2018,Canada,All employees,Other textile product mills,,0.04
-2018,Canada,All employees,Clothing manufacturing,,0.12
-2018,Canada,All employees,Clothing knitting mills,,0.01
-2018,Canada,All employees,Cut and sew clothing manufacturing,,0.09
-2018,Canada,All employees,Clothing accessories and other clothing manufacturing,,0.01
-2018,Canada,All employees,Leather and allied product manufacturing,,0.02
-2018,Canada,All employees,Leather and hide tanning and finishing,,0
-2018,Canada,All employees,Footwear manufacturing,,0.01
-2018,Canada,All employees,Other leather and allied product manufacturing,,0.01
-2018,Canada,All employees,Paper manufacturing,,0.33
-2018,Canada,All employees,"Pulp, paper and paperboard mills",,0.14
-2018,Canada,All employees,Converted paper product manufacturing,,0.18
-2018,Canada,All employees,Printing and related support activities,,0.3
-2018,Canada,All employees,Petroleum and coal product manufacturing,,0.11
-2018,Canada,All employees,Chemical manufacturing,,0.55
-2018,Canada,All employees,Basic chemical manufacturing,,0.08
-2018,Canada,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.03
-2018,Canada,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
-2018,Canada,All employees,Pharmaceutical and medicine manufacturing,,0.18
-2018,Canada,All employees,"Paint, coating and adhesive manufacturing",,0.05
-2018,Canada,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.1
-2018,Canada,All employees,Other chemical product manufacturing,,0.07
-2018,Canada,All employees,Plastics and rubber products manufacturing,,0.6
-2018,Canada,All employees,Plastic product manufacturing,,0.5
-2018,Canada,All employees,Rubber product manufacturing,,0.1
-2018,Canada,All employees,Durable goods,,5.53
-2018,Canada,All employees,Wood product manufacturing,,0.56
-2018,Canada,All employees,Sawmills and wood preservation,,0.22
-2018,Canada,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.11
-2018,Canada,All employees,Other wood product manufacturing,,0.23
-2018,Canada,All employees,Non-metallic mineral product manufacturing,,0.32
-2018,Canada,All employees,Clay product and refractory manufacturing,,0.01
-2018,Canada,All employees,Glass and glass product manufacturing,,0.05
-2018,Canada,All employees,Cement and concrete product manufacturing,,0.19
-2018,Canada,All employees,Lime and gypsum product manufacturing,,0.01
-2018,Canada,All employees,Other non-metallic mineral product manufacturing,,0.06
-2018,Canada,All employees,Primary metal manufacturing,,0.34
-2018,Canada,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.1
-2018,Canada,All employees,Steel product manufacturing from purchased steel,,0.05
-2018,Canada,All employees,Alumina and aluminum production and processing,,0.06
-2018,Canada,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
-2018,Canada,All employees,Foundries,,0.06
-2018,Canada,All employees,Fabricated metal product manufacturing,,0.94
-2018,Canada,All employees,Forging and stamping,,0.04
-2018,Canada,All employees,Cutlery and hand tool manufacturing,,0.02
-2018,Canada,All employees,Architectural and structural metals manufacturing,,0.36
-2018,Canada,All employees,"Boiler, tank and shipping container manufacturing",,0.07
-2018,Canada,All employees,Hardware manufacturing,,0.03
-2018,Canada,All employees,Spring and wire product manufacturing,,0.03
-2018,Canada,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.2
-2018,Canada,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2018,Canada,All employees,Other fabricated metal product manufacturing,,0.13
-2018,Canada,All employees,Machinery manufacturing,,0.83
-2018,Canada,All employees,"Agricultural, construction and mining machinery manufacturing",,0.19
-2018,Canada,All employees,Industrial machinery manufacturing,,0.1
-2018,Canada,All employees,Commercial and service industry machinery manufacturing,,0.1
-2018,Canada,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.1
-2018,Canada,All employees,Metalworking machinery manufacturing,,0.12
-2018,Canada,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
-2018,Canada,All employees,Other general-purpose machinery manufacturing,,0.19
-2018,Canada,All employees,Computer and electronic product manufacturing,,0.34
-2018,Canada,All employees,Computer and peripheral equipment manufacturing,,0.04
-2018,Canada,All employees,Communications equipment manufacturing,,0.07
-2018,Canada,All employees,Audio and video equipment manufacturing,,0.01
-2018,Canada,All employees,Semiconductor and other electronic component manufacturing,,0.09
-2018,Canada,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.13
-2018,Canada,All employees,Manufacturing and reproducing magnetic and optical media,,0.01
-2018,Canada,All employees,"Electrical equipment, appliance and component manufacturing",,0.21
-2018,Canada,All employees,Electric lighting equipment manufacturing,,0.03
-2018,Canada,All employees,Household appliance manufacturing,,0.01
-2018,Canada,All employees,Electrical equipment manufacturing,,0.09
-2018,Canada,All employees,Other electrical equipment and component manufacturing,,0.08
-2018,Canada,All employees,Transportation equipment manufacturing,,1.23
-2018,Canada,All employees,Motor vehicle manufacturing,,0.27
-2018,Canada,All employees,Motor vehicle body and trailer manufacturing,,0.1
-2018,Canada,All employees,Motor vehicle parts manufacturing,,0.46
-2018,Canada,All employees,Aerospace product and parts manufacturing,,0.28
-2018,Canada,All employees,Railroad rolling stock manufacturing,,0.02
-2018,Canada,All employees,Ship and boat building,,0.05
-2018,Canada,All employees,Other transportation equipment manufacturing,,0.06
-2018,Canada,All employees,Furniture and related product manufacturing,,0.4
-2018,Canada,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.25
-2018,Canada,All employees,Office furniture (including fixtures) manufacturing,,0.13
-2018,Canada,All employees,Other furniture-related product manufacturing,,0.03
-2018,Canada,All employees,Miscellaneous manufacturing,,0.35
-2018,Canada,All employees,Medical equipment and supplies manufacturing,,0.12
-2018,Canada,All employees,Other miscellaneous manufacturing,,0.23
-2018,Canada,Salaried employees paid a fixed salary,Manufacturing,,2.52
-2018,Canada,Salaried employees paid a fixed salary,Non-durable goods,,0.99
-2018,Canada,Salaried employees paid a fixed salary,Food manufacturing,,0.27
-2018,Canada,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2018,Canada,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,0.02
-2018,Canada,Salaried employees paid a fixed salary,Dairy product manufacturing,,0.04
-2018,Canada,Salaried employees paid a fixed salary,Meat product manufacturing,,0.07
-2018,Canada,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,0.02
-2018,Canada,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.05
-2018,Canada,Salaried employees paid a fixed salary,Other food manufacturing,,0.05
-2018,Canada,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Beverage manufacturing,,0.08
-2018,Canada,Salaried employees paid a fixed salary,Tobacco manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Textile mills,,0.01
-2018,Canada,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2018,Canada,Salaried employees paid a fixed salary,Fabric mills,,0
-2018,Canada,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
-2018,Canada,Salaried employees paid a fixed salary,Textile product mills,,
-2018,Canada,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
-2018,Canada,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2018,Canada,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Paper manufacturing,,0.08
-2018,Canada,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2018,Canada,Salaried employees paid a fixed salary,Printing and related support activities,,0.07
-2018,Canada,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Chemical manufacturing,,0.25
-2018,Canada,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2018,Canada,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2018,Canada,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,0.09
-2018,Canada,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2018,Canada,Salaried employees paid a fixed salary,Other chemical product manufacturing,,0.03
-2018,Canada,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Durable goods,,1.52
-2018,Canada,Salaried employees paid a fixed salary,Wood product manufacturing,,0.06
-2018,Canada,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.03
-2018,Canada,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,0.02
-2018,Canada,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.02
-2018,Canada,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.08
-2018,Canada,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2018,Canada,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2018,Canada,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2018,Canada,Salaried employees paid a fixed salary,Foundries,,
-2018,Canada,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.23
-2018,Canada,Salaried employees paid a fixed salary,Forging and stamping,,
-2018,Canada,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.09
-2018,Canada,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,0.02
-2018,Canada,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
-2018,Canada,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
-2018,Canada,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,0.05
-2018,Canada,Salaried employees paid a fixed salary,Machinery manufacturing,,0.23
-2018,Canada,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2018,Canada,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.03
-2018,Canada,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2018,Canada,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,0.05
-2018,Canada,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.2
-2018,Canada,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Communications equipment manufacturing,,0.04
-2018,Canada,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,0.05
-2018,Canada,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,0.08
-2018,Canada,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.11
-2018,Canada,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,0.05
-2018,Canada,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.34
-2018,Canada,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,0.1
-2018,Canada,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Ship and boat building,,
-2018,Canada,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.07
-2018,Canada,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2018,Canada,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.11
-2018,Canada,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,0.04
-2018,Canada,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.07
-2018,Canada,Employees paid by the hour,Manufacturing,,6.41
-2018,Canada,Employees paid by the hour,Non-durable goods,,2.65
-2018,Canada,Employees paid by the hour,Food manufacturing,,1.11
-2018,Canada,Employees paid by the hour,Animal food manufacturing,,
-2018,Canada,Employees paid by the hour,Grain and oilseed milling,,
-2018,Canada,Employees paid by the hour,Sugar and confectionery product manufacturing,,
-2018,Canada,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,0.09
-2018,Canada,Employees paid by the hour,Dairy product manufacturing,,0.11
-2018,Canada,Employees paid by the hour,Meat product manufacturing,,0.3
-2018,Canada,Employees paid by the hour,Seafood product preparation and packaging,,0.1
-2018,Canada,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.23
-2018,Canada,Employees paid by the hour,Other food manufacturing,,0.14
-2018,Canada,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2018,Canada,Employees paid by the hour,Beverage manufacturing,,0.16
-2018,Canada,Employees paid by the hour,Tobacco manufacturing,,
-2018,Canada,Employees paid by the hour,Cannabis product manufacturing,,
-2018,Canada,Employees paid by the hour,Textile mills,,0.03
-2018,Canada,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2018,Canada,Employees paid by the hour,Fabric mills,,0.02
-2018,Canada,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
-2018,Canada,Employees paid by the hour,Textile product mills,,0.05
-2018,Canada,Employees paid by the hour,Clothing manufacturing,,
-2018,Canada,Employees paid by the hour,Cut and sew clothing manufacturing,,
-2018,Canada,Employees paid by the hour,Leather and allied product manufacturing,,0.01
-2018,Canada,Employees paid by the hour,Leather and hide tanning and finishing,,
-2018,Canada,Employees paid by the hour,Footwear manufacturing,,
-2018,Canada,Employees paid by the hour,Other leather and allied product manufacturing,,
-2018,Canada,Employees paid by the hour,Paper manufacturing,,0.24
-2018,Canada,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2018,Canada,Employees paid by the hour,Printing and related support activities,,0.2
-2018,Canada,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2018,Canada,Employees paid by the hour,Chemical manufacturing,,0.28
-2018,Canada,Employees paid by the hour,Basic chemical manufacturing,,
-2018,Canada,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2018,Canada,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2018,Canada,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,0.09
-2018,Canada,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2018,Canada,Employees paid by the hour,Other chemical product manufacturing,,0.03
-2018,Canada,Employees paid by the hour,Rubber product manufacturing,,
-2018,Canada,Employees paid by the hour,Durable goods,,3.76
-2018,Canada,Employees paid by the hour,Wood product manufacturing,,0.48
-2018,Canada,Employees paid by the hour,Sawmills and wood preservation,,0.19
-2018,Canada,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.09
-2018,Canada,Employees paid by the hour,Other wood product manufacturing,,0.2
-2018,Canada,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.24
-2018,Canada,Employees paid by the hour,Clay product and refractory manufacturing,,
-2018,Canada,Employees paid by the hour,Glass and glass product manufacturing,,
-2018,Canada,Employees paid by the hour,Cement and concrete product manufacturing,,
-2018,Canada,Employees paid by the hour,Lime and gypsum product manufacturing,,
-2018,Canada,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2018,Canada,Employees paid by the hour,Primary metal manufacturing,,
-2018,Canada,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2018,Canada,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2018,Canada,Employees paid by the hour,Alumina and aluminum production and processing,,
-2018,Canada,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2018,Canada,Employees paid by the hour,Foundries,,
-2018,Canada,Employees paid by the hour,Fabricated metal product manufacturing,,0.64
-2018,Canada,Employees paid by the hour,Forging and stamping,,
-2018,Canada,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2018,Canada,Employees paid by the hour,Architectural and structural metals manufacturing,,0.24
-2018,Canada,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,0.05
-2018,Canada,Employees paid by the hour,Hardware manufacturing,,
-2018,Canada,Employees paid by the hour,Spring and wire product manufacturing,,
-2018,Canada,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.15
-2018,Canada,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
-2018,Canada,Employees paid by the hour,Other fabricated metal product manufacturing,,0.08
-2018,Canada,Employees paid by the hour,Machinery manufacturing,,0.56
-2018,Canada,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2018,Canada,Employees paid by the hour,Industrial machinery manufacturing,,
-2018,Canada,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2018,Canada,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.07
-2018,Canada,Employees paid by the hour,Metalworking machinery manufacturing,,
-2018,Canada,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2018,Canada,Employees paid by the hour,Other general-purpose machinery manufacturing,,0.12
-2018,Canada,Employees paid by the hour,Computer and electronic product manufacturing,,0.12
-2018,Canada,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
-2018,Canada,Employees paid by the hour,Communications equipment manufacturing,,0.03
-2018,Canada,Employees paid by the hour,Audio and video equipment manufacturing,,
-2018,Canada,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,0.04
-2018,Canada,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,0.04
-2018,Canada,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.08
-2018,Canada,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2018,Canada,Employees paid by the hour,Household appliance manufacturing,,
-2018,Canada,Employees paid by the hour,Electrical equipment manufacturing,,0.03
-2018,Canada,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2018,Canada,Employees paid by the hour,Transportation equipment manufacturing,,0.87
-2018,Canada,Employees paid by the hour,Motor vehicle manufacturing,,
-2018,Canada,Employees paid by the hour,Motor vehicle parts manufacturing,,0.35
-2018,Canada,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2018,Canada,Employees paid by the hour,Ship and boat building,,
-2018,Canada,Employees paid by the hour,Other transportation equipment manufacturing,,
-2018,Canada,Employees paid by the hour,Furniture and related product manufacturing,,0.31
-2018,Canada,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,Canada,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,0.09
-2018,Canada,Employees paid by the hour,Other furniture-related product manufacturing,,
-2018,Canada,Employees paid by the hour,Miscellaneous manufacturing,,0.21
-2018,Canada,Employees paid by the hour,Medical equipment and supplies manufacturing,,0.07
-2018,Canada,Employees paid by the hour,Other miscellaneous manufacturing,,0.14
-2018,Newfoundland and Labrador,All employees,Manufacturing,10,4.49
-2018,Newfoundland and Labrador,All employees,Non-durable goods,,3.4
-2018,Newfoundland and Labrador,All employees,Food manufacturing,,2.39
-2018,Newfoundland and Labrador,All employees,Seafood product preparation and packaging,,1.92
-2018,Newfoundland and Labrador,All employees,Cannabis product manufacturing,,
-2018,Newfoundland and Labrador,All employees,Durable goods,,1.1
-2018,Newfoundland and Labrador,All employees,Sawmills and wood preservation,,
-2018,Newfoundland and Labrador,All employees,Ship and boat building,,
-2018,Newfoundland and Labrador,All employees,Other miscellaneous manufacturing,,0.07
-2018,Newfoundland and Labrador,Salaried employees paid a fixed salary,Manufacturing,,
-2018,Newfoundland and Labrador,Salaried employees paid a fixed salary,Non-durable goods,,
-2018,Newfoundland and Labrador,Salaried employees paid a fixed salary,Food manufacturing,,
-2018,Newfoundland and Labrador,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,Newfoundland and Labrador,Salaried employees paid a fixed salary,Durable goods,,0.23
-2018,Newfoundland and Labrador,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2018,Newfoundland and Labrador,Employees paid by the hour,Manufacturing,,
-2018,Newfoundland and Labrador,Employees paid by the hour,Non-durable goods,,
-2018,Newfoundland and Labrador,Employees paid by the hour,Food manufacturing,,
-2018,Newfoundland and Labrador,Employees paid by the hour,Cannabis product manufacturing,,
-2018,Newfoundland and Labrador,Employees paid by the hour,Durable goods,,0.82
-2018,Newfoundland and Labrador,Employees paid by the hour,Other miscellaneous manufacturing,,
-2018,Prince Edward Island,All employees,Manufacturing,11,7.86
-2018,Prince Edward Island,All employees,Non-durable goods,,5.01
-2018,Prince Edward Island,All employees,Food manufacturing,,3.34
-2018,Prince Edward Island,All employees,Seafood product preparation and packaging,,
-2018,Prince Edward Island,All employees,Cannabis product manufacturing,,
-2018,Prince Edward Island,All employees,Printing and related support activities,,0.17
-2018,Prince Edward Island,All employees,Durable goods,,2.85
-2018,Prince Edward Island,Salaried employees paid a fixed salary,Manufacturing,,2.83
-2018,Prince Edward Island,Salaried employees paid a fixed salary,Food manufacturing,,
-2018,Prince Edward Island,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2018,Prince Edward Island,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,Prince Edward Island,Salaried employees paid a fixed salary,Durable goods,,1.18
-2018,Prince Edward Island,Employees paid by the hour,Manufacturing,,4.7
-2018,Prince Edward Island,Employees paid by the hour,Food manufacturing,,
-2018,Prince Edward Island,Employees paid by the hour,Seafood product preparation and packaging,,
-2018,Prince Edward Island,Employees paid by the hour,Cannabis product manufacturing,,
-2018,Prince Edward Island,Employees paid by the hour,Durable goods,,1.51
-2018,Nova Scotia,All employees,Manufacturing,12,7.63
-2018,Nova Scotia,All employees,Non-durable goods,,4.89
-2018,Nova Scotia,All employees,Food manufacturing,,2.38
-2018,Nova Scotia,All employees,Animal food manufacturing,,0.09
-2018,Nova Scotia,All employees,Dairy product manufacturing,,
-2018,Nova Scotia,All employees,Meat product manufacturing,,0.14
-2018,Nova Scotia,All employees,Seafood product preparation and packaging,,1.36
-2018,Nova Scotia,All employees,Bakeries and tortilla manufacturing,,0.21
-2018,Nova Scotia,All employees,Beverage and tobacco product manufacturing,,0.28
-2018,Nova Scotia,All employees,Cannabis product manufacturing,,
-2018,Nova Scotia,All employees,Fabric mills,,
-2018,Nova Scotia,All employees,Clothing manufacturing,,0.08
-2018,Nova Scotia,All employees,Paper manufacturing,,0.26
-2018,Nova Scotia,All employees,"Pulp, paper and paperboard mills",,
-2018,Nova Scotia,All employees,Printing and related support activities,,0.18
-2018,Nova Scotia,All employees,Plastics and rubber products manufacturing,,1.23
-2018,Nova Scotia,All employees,Durable goods,,2.75
-2018,Nova Scotia,All employees,Wood product manufacturing,,0.4
-2018,Nova Scotia,All employees,Sawmills and wood preservation,,0.22
-2018,Nova Scotia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.07
-2018,Nova Scotia,All employees,Other wood product manufacturing,,0.11
-2018,Nova Scotia,All employees,Non-metallic mineral product manufacturing,,0.19
-2018,Nova Scotia,All employees,Cement and concrete product manufacturing,,0.14
-2018,Nova Scotia,All employees,Other non-metallic mineral product manufacturing,,
-2018,Nova Scotia,All employees,Fabricated metal product manufacturing,,0.46
-2018,Nova Scotia,All employees,Spring and wire product manufacturing,,0.03
-2018,Nova Scotia,All employees,Machinery manufacturing,,0.21
-2018,Nova Scotia,All employees,Commercial and service industry machinery manufacturing,,0.06
-2018,Nova Scotia,All employees,Other general-purpose machinery manufacturing,,0.03
-2018,Nova Scotia,All employees,Transportation equipment manufacturing,,0.99
-2018,Nova Scotia,All employees,Aerospace product and parts manufacturing,,0.38
-2018,Nova Scotia,All employees,Ship and boat building,,0.57
-2018,Nova Scotia,All employees,Miscellaneous manufacturing,,0.14
-2018,Nova Scotia,All employees,Medical equipment and supplies manufacturing,,0.05
-2018,Nova Scotia,All employees,Other miscellaneous manufacturing,,0.09
-2018,Nova Scotia,Salaried employees paid a fixed salary,Manufacturing,,1.66
-2018,Nova Scotia,Salaried employees paid a fixed salary,Non-durable goods,,1.02
-2018,Nova Scotia,Salaried employees paid a fixed salary,Food manufacturing,,0.38
-2018,Nova Scotia,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Paper manufacturing,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Printing and related support activities,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Durable goods,,0.64
-2018,Nova Scotia,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.2
-2018,Nova Scotia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2018,Nova Scotia,Salaried employees paid a fixed salary,Ship and boat building,,
-2018,Nova Scotia,Employees paid by the hour,Manufacturing,,5.68
-2018,Nova Scotia,Employees paid by the hour,Non-durable goods,,3.67
-2018,Nova Scotia,Employees paid by the hour,Food manufacturing,,1.89
-2018,Nova Scotia,Employees paid by the hour,Animal food manufacturing,,
-2018,Nova Scotia,Employees paid by the hour,Seafood product preparation and packaging,,
-2018,Nova Scotia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2018,Nova Scotia,Employees paid by the hour,Cannabis product manufacturing,,
-2018,Nova Scotia,Employees paid by the hour,Paper manufacturing,,
-2018,Nova Scotia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2018,Nova Scotia,Employees paid by the hour,Printing and related support activities,,
-2018,Nova Scotia,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2018,Nova Scotia,Employees paid by the hour,Durable goods,,2
-2018,Nova Scotia,Employees paid by the hour,Wood product manufacturing,,
-2018,Nova Scotia,Employees paid by the hour,Sawmills and wood preservation,,
-2018,Nova Scotia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2018,Nova Scotia,Employees paid by the hour,Cement and concrete product manufacturing,,
-2018,Nova Scotia,Employees paid by the hour,Fabricated metal product manufacturing,,
-2018,Nova Scotia,Employees paid by the hour,Machinery manufacturing,,
-2018,Nova Scotia,Employees paid by the hour,Transportation equipment manufacturing,,0.76
-2018,Nova Scotia,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2018,Nova Scotia,Employees paid by the hour,Ship and boat building,,
-2018,New Brunswick,All employees,Manufacturing,13,9.44
-2018,New Brunswick,All employees,Non-durable goods,,5.39
-2018,New Brunswick,All employees,Food manufacturing,,3.32
-2018,New Brunswick,All employees,Seafood product preparation and packaging,,1.39
-2018,New Brunswick,All employees,Beverage and tobacco product manufacturing,,0.28
-2018,New Brunswick,All employees,Cannabis product manufacturing,,
-2018,New Brunswick,All employees,"Fibre, yarn and thread mills",,
-2018,New Brunswick,All employees,Paper manufacturing,,0.82
-2018,New Brunswick,All employees,"Pulp, paper and paperboard mills",,0.53
-2018,New Brunswick,All employees,Converted paper product manufacturing,,0.29
-2018,New Brunswick,All employees,Printing and related support activities,,0.09
-2018,New Brunswick,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.1
-2018,New Brunswick,All employees,Durable goods,,4.05
-2018,New Brunswick,All employees,Wood product manufacturing,,1.46
-2018,New Brunswick,All employees,Sawmills and wood preservation,,0.8
-2018,New Brunswick,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.22
-2018,New Brunswick,All employees,Other wood product manufacturing,,0.43
-2018,New Brunswick,All employees,Non-metallic mineral product manufacturing,,0.27
-2018,New Brunswick,All employees,Other non-metallic mineral product manufacturing,,0.09
-2018,New Brunswick,All employees,Fabricated metal product manufacturing,,0.71
-2018,New Brunswick,All employees,Architectural and structural metals manufacturing,,0.42
-2018,New Brunswick,All employees,Machinery manufacturing,,0.41
-2018,New Brunswick,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.19
-2018,New Brunswick,All employees,Other general-purpose machinery manufacturing,,0.08
-2018,New Brunswick,All employees,Computer and electronic product manufacturing,,
-2018,New Brunswick,All employees,Furniture and related product manufacturing,,0.24
-2018,New Brunswick,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.22
-2018,New Brunswick,All employees,Miscellaneous manufacturing,,0.4
-2018,New Brunswick,All employees,Medical equipment and supplies manufacturing,,0.04
-2018,New Brunswick,All employees,Other miscellaneous manufacturing,,0.36
-2018,New Brunswick,Salaried employees paid a fixed salary,Manufacturing,,2.01
-2018,New Brunswick,Salaried employees paid a fixed salary,Non-durable goods,,1.15
-2018,New Brunswick,Salaried employees paid a fixed salary,Food manufacturing,,
-2018,New Brunswick,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,New Brunswick,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2018,New Brunswick,Salaried employees paid a fixed salary,Paper manufacturing,,
-2018,New Brunswick,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2018,New Brunswick,Salaried employees paid a fixed salary,Durable goods,,0.85
-2018,New Brunswick,Salaried employees paid a fixed salary,Wood product manufacturing,,0.2
-2018,New Brunswick,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2018,New Brunswick,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2018,New Brunswick,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2018,New Brunswick,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2018,New Brunswick,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2018,New Brunswick,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2018,New Brunswick,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2018,New Brunswick,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,New Brunswick,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2018,New Brunswick,Employees paid by the hour,Manufacturing,,7.12
-2018,New Brunswick,Employees paid by the hour,Non-durable goods,,4.08
-2018,New Brunswick,Employees paid by the hour,Food manufacturing,,
-2018,New Brunswick,Employees paid by the hour,Cannabis product manufacturing,,
-2018,New Brunswick,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2018,New Brunswick,Employees paid by the hour,Paper manufacturing,,
-2018,New Brunswick,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2018,New Brunswick,Employees paid by the hour,Durable goods,,3.04
-2018,New Brunswick,Employees paid by the hour,Wood product manufacturing,,1.2
-2018,New Brunswick,Employees paid by the hour,Sawmills and wood preservation,,
-2018,New Brunswick,Employees paid by the hour,Other wood product manufacturing,,
-2018,New Brunswick,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.21
-2018,New Brunswick,Employees paid by the hour,Fabricated metal product manufacturing,,0.47
-2018,New Brunswick,Employees paid by the hour,Machinery manufacturing,,
-2018,New Brunswick,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2018,New Brunswick,Employees paid by the hour,Computer and electronic product manufacturing,,
-2018,New Brunswick,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,New Brunswick,Employees paid by the hour,Other miscellaneous manufacturing,,
-2018,Quebec,All employees,Manufacturing,24,11.72
-2018,Quebec,All employees,Non-durable goods,,4.88
-2018,Quebec,All employees,Food manufacturing,,1.72
-2018,Quebec,All employees,Animal food manufacturing,,0.07
-2018,Quebec,All employees,Grain and oilseed milling,,0.04
-2018,Quebec,All employees,Sugar and confectionery product manufacturing,,0.1
-2018,Quebec,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.13
-2018,Quebec,All employees,Dairy product manufacturing,,0.25
-2018,Quebec,All employees,Meat product manufacturing,,0.49
-2018,Quebec,All employees,Seafood product preparation and packaging,,0.04
-2018,Quebec,All employees,Bakeries and tortilla manufacturing,,0.33
-2018,Quebec,All employees,Other food manufacturing,,0.26
-2018,Quebec,All employees,Beverage and tobacco product manufacturing,,0.23
-2018,Quebec,All employees,Cannabis product manufacturing,,
-2018,Quebec,All employees,Textile mills,,0.09
-2018,Quebec,All employees,"Fibre, yarn and thread mills",,0.01
-2018,Quebec,All employees,Fabric mills,,0.06
-2018,Quebec,All employees,Textile and fabric finishing and fabric coating,,0.01
-2018,Quebec,All employees,Textile product mills,,0.09
-2018,Quebec,All employees,Textile furnishings mills,,0.04
-2018,Quebec,All employees,Other textile product mills,,0.05
-2018,Quebec,All employees,Clothing manufacturing,,0.28
-2018,Quebec,All employees,Clothing knitting mills,,0.03
-2018,Quebec,All employees,Cut and sew clothing manufacturing,,0.23
-2018,Quebec,All employees,Clothing accessories and other clothing manufacturing,,0.02
-2018,Quebec,All employees,Leather and allied product manufacturing,,0.03
-2018,Quebec,All employees,Leather and hide tanning and finishing,,0
-2018,Quebec,All employees,Footwear manufacturing,,0.03
-2018,Quebec,All employees,Other leather and allied product manufacturing,,0.01
-2018,Quebec,All employees,Paper manufacturing,,0.58
-2018,Quebec,All employees,"Pulp, paper and paperboard mills",,0.25
-2018,Quebec,All employees,Converted paper product manufacturing,,0.33
-2018,Quebec,All employees,Printing and related support activities,,0.33
-2018,Quebec,All employees,Petroleum and coal product manufacturing,,0.1
-2018,Quebec,All employees,Chemical manufacturing,,0.67
-2018,Quebec,All employees,Basic chemical manufacturing,,0.07
-2018,Quebec,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.02
-2018,Quebec,All employees,Pharmaceutical and medicine manufacturing,,0.24
-2018,Quebec,All employees,"Paint, coating and adhesive manufacturing",,0.07
-2018,Quebec,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.12
-2018,Quebec,All employees,Other chemical product manufacturing,,0.09
-2018,Quebec,All employees,Plastics and rubber products manufacturing,,0.76
-2018,Quebec,All employees,Plastic product manufacturing,,0.62
-2018,Quebec,All employees,Rubber product manufacturing,,0.14
-2018,Quebec,All employees,Durable goods,,6.85
-2018,Quebec,All employees,Wood product manufacturing,,0.8
-2018,Quebec,All employees,Sawmills and wood preservation,,0.28
-2018,Quebec,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
-2018,Quebec,All employees,Other wood product manufacturing,,0.38
-2018,Quebec,All employees,Non-metallic mineral product manufacturing,,0.38
-2018,Quebec,All employees,Clay product and refractory manufacturing,,0.01
-2018,Quebec,All employees,Glass and glass product manufacturing,,0.07
-2018,Quebec,All employees,Cement and concrete product manufacturing,,0.21
-2018,Quebec,All employees,Lime and gypsum product manufacturing,,0.02
-2018,Quebec,All employees,Other non-metallic mineral product manufacturing,,0.07
-2018,Quebec,All employees,Primary metal manufacturing,,0.45
-2018,Quebec,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.05
-2018,Quebec,All employees,Steel product manufacturing from purchased steel,,0.03
-2018,Quebec,All employees,Alumina and aluminum production and processing,,0.15
-2018,Quebec,All employees,Non-ferrous metal (except aluminum) production and processing,,0.12
-2018,Quebec,All employees,Foundries,,0.09
-2018,Quebec,All employees,Fabricated metal product manufacturing,,1.22
-2018,Quebec,All employees,Forging and stamping,,0.06
-2018,Quebec,All employees,Cutlery and hand tool manufacturing,,0.02
-2018,Quebec,All employees,Architectural and structural metals manufacturing,,0.48
-2018,Quebec,All employees,"Boiler, tank and shipping container manufacturing",,0.07
-2018,Quebec,All employees,Hardware manufacturing,,0.03
-2018,Quebec,All employees,Spring and wire product manufacturing,,0.04
-2018,Quebec,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.26
-2018,Quebec,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2018,Quebec,All employees,Other fabricated metal product manufacturing,,0.19
-2018,Quebec,All employees,Machinery manufacturing,,0.93
-2018,Quebec,All employees,"Agricultural, construction and mining machinery manufacturing",,0.12
-2018,Quebec,All employees,Industrial machinery manufacturing,,0.17
-2018,Quebec,All employees,Commercial and service industry machinery manufacturing,,0.19
-2018,Quebec,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.16
-2018,Quebec,All employees,Metalworking machinery manufacturing,,0.06
-2018,Quebec,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.06
-2018,Quebec,All employees,Other general-purpose machinery manufacturing,,0.19
-2018,Quebec,All employees,Computer and electronic product manufacturing,,0.41
-2018,Quebec,All employees,Communications equipment manufacturing,,0.07
-2018,Quebec,All employees,Audio and video equipment manufacturing,,0.01
-2018,Quebec,All employees,Semiconductor and other electronic component manufacturing,,0.14
-2018,Quebec,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.17
-2018,Quebec,All employees,Manufacturing and reproducing magnetic and optical media,,0
-2018,Quebec,All employees,"Electrical equipment, appliance and component manufacturing",,0.3
-2018,Quebec,All employees,Electric lighting equipment manufacturing,,0.08
-2018,Quebec,All employees,Household appliance manufacturing,,0.01
-2018,Quebec,All employees,Electrical equipment manufacturing,,0.11
-2018,Quebec,All employees,Other electrical equipment and component manufacturing,,0.1
-2018,Quebec,All employees,Transportation equipment manufacturing,,1.29
-2018,Quebec,All employees,Motor vehicle body and trailer manufacturing,,0.16
-2018,Quebec,All employees,Motor vehicle parts manufacturing,,0.13
-2018,Quebec,All employees,Aerospace product and parts manufacturing,,0.68
-2018,Quebec,All employees,Other transportation equipment manufacturing,,0.16
-2018,Quebec,All employees,Furniture and related product manufacturing,,0.63
-2018,Quebec,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.44
-2018,Quebec,All employees,Office furniture (including fixtures) manufacturing,,0.16
-2018,Quebec,All employees,Other furniture-related product manufacturing,,0.04
-2018,Quebec,All employees,Miscellaneous manufacturing,,0.46
-2018,Quebec,All employees,Medical equipment and supplies manufacturing,,0.13
-2018,Quebec,All employees,Other miscellaneous manufacturing,,0.32
-2018,Quebec,Salaried employees paid a fixed salary,Manufacturing,,2.95
-2018,Quebec,Salaried employees paid a fixed salary,Non-durable goods,,1.06
-2018,Quebec,Salaried employees paid a fixed salary,Food manufacturing,,0.26
-2018,Quebec,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2018,Quebec,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Other food manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Textile mills,,0.02
-2018,Quebec,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2018,Quebec,Salaried employees paid a fixed salary,Fabric mills,,0.01
-2018,Quebec,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
-2018,Quebec,Salaried employees paid a fixed salary,Textile product mills,,
-2018,Quebec,Salaried employees paid a fixed salary,Textile furnishings mills,,
-2018,Quebec,Salaried employees paid a fixed salary,Other textile product mills,,
-2018,Quebec,Salaried employees paid a fixed salary,Clothing manufacturing,,0.03
-2018,Quebec,Salaried employees paid a fixed salary,Clothing knitting mills,,
-2018,Quebec,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Clothing accessories and other clothing manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2018,Quebec,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Paper manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2018,Quebec,Salaried employees paid a fixed salary,Printing and related support activities,,0.07
-2018,Quebec,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Chemical manufacturing,,0.29
-2018,Quebec,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2018,Quebec,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
-2018,Quebec,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2018,Quebec,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.14
-2018,Quebec,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.11
-2018,Quebec,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Durable goods,,1.89
-2018,Quebec,Salaried employees paid a fixed salary,Wood product manufacturing,,0.07
-2018,Quebec,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.03
-2018,Quebec,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2018,Quebec,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.09
-2018,Quebec,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2018,Quebec,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2018,Quebec,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2018,Quebec,Salaried employees paid a fixed salary,Foundries,,
-2018,Quebec,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.24
-2018,Quebec,Salaried employees paid a fixed salary,Forging and stamping,,
-2018,Quebec,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2018,Quebec,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Machinery manufacturing,,0.26
-2018,Quebec,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2018,Quebec,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2018,Quebec,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2018,Quebec,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,Quebec,Salaried employees paid a fixed salary,Manufacturing and reproducing magnetic and optical media,,
-2018,Quebec,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.16
-2018,Quebec,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.52
-2018,Quebec,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2018,Quebec,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.08
-2018,Quebec,Employees paid by the hour,Manufacturing,,8.29
-2018,Quebec,Employees paid by the hour,Non-durable goods,,3.61
-2018,Quebec,Employees paid by the hour,Food manufacturing,,1.39
-2018,Quebec,Employees paid by the hour,Animal food manufacturing,,
-2018,Quebec,Employees paid by the hour,Grain and oilseed milling,,
-2018,Quebec,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2018,Quebec,Employees paid by the hour,Dairy product manufacturing,,
-2018,Quebec,Employees paid by the hour,Meat product manufacturing,,
-2018,Quebec,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2018,Quebec,Employees paid by the hour,Other food manufacturing,,
-2018,Quebec,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2018,Quebec,Employees paid by the hour,Cannabis product manufacturing,,
-2018,Quebec,Employees paid by the hour,Textile mills,,0.07
-2018,Quebec,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2018,Quebec,Employees paid by the hour,Fabric mills,,0.05
-2018,Quebec,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
-2018,Quebec,Employees paid by the hour,Textile product mills,,
-2018,Quebec,Employees paid by the hour,Textile furnishings mills,,
-2018,Quebec,Employees paid by the hour,Other textile product mills,,
-2018,Quebec,Employees paid by the hour,Clothing manufacturing,,0.22
-2018,Quebec,Employees paid by the hour,Clothing knitting mills,,
-2018,Quebec,Employees paid by the hour,Cut and sew clothing manufacturing,,0.19
-2018,Quebec,Employees paid by the hour,Clothing accessories and other clothing manufacturing,,
-2018,Quebec,Employees paid by the hour,Leather and hide tanning and finishing,,
-2018,Quebec,Employees paid by the hour,Footwear manufacturing,,
-2018,Quebec,Employees paid by the hour,Other leather and allied product manufacturing,,
-2018,Quebec,Employees paid by the hour,Paper manufacturing,,
-2018,Quebec,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2018,Quebec,Employees paid by the hour,Printing and related support activities,,0.23
-2018,Quebec,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2018,Quebec,Employees paid by the hour,Chemical manufacturing,,0.35
-2018,Quebec,Employees paid by the hour,Basic chemical manufacturing,,
-2018,Quebec,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2018,Quebec,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2018,Quebec,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
-2018,Quebec,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2018,Quebec,Employees paid by the hour,Other chemical product manufacturing,,
-2018,Quebec,Employees paid by the hour,Plastics and rubber products manufacturing,,0.59
-2018,Quebec,Employees paid by the hour,Plastic product manufacturing,,0.49
-2018,Quebec,Employees paid by the hour,Rubber product manufacturing,,
-2018,Quebec,Employees paid by the hour,Durable goods,,4.68
-2018,Quebec,Employees paid by the hour,Wood product manufacturing,,0.7
-2018,Quebec,Employees paid by the hour,Sawmills and wood preservation,,0.24
-2018,Quebec,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2018,Quebec,Employees paid by the hour,Other wood product manufacturing,,0.34
-2018,Quebec,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.28
-2018,Quebec,Employees paid by the hour,Clay product and refractory manufacturing,,
-2018,Quebec,Employees paid by the hour,Glass and glass product manufacturing,,
-2018,Quebec,Employees paid by the hour,Cement and concrete product manufacturing,,
-2018,Quebec,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2018,Quebec,Employees paid by the hour,Primary metal manufacturing,,
-2018,Quebec,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2018,Quebec,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2018,Quebec,Employees paid by the hour,Alumina and aluminum production and processing,,
-2018,Quebec,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2018,Quebec,Employees paid by the hour,Foundries,,
-2018,Quebec,Employees paid by the hour,Fabricated metal product manufacturing,,0.89
-2018,Quebec,Employees paid by the hour,Forging and stamping,,
-2018,Quebec,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2018,Quebec,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2018,Quebec,Employees paid by the hour,Hardware manufacturing,,
-2018,Quebec,Employees paid by the hour,Spring and wire product manufacturing,,
-2018,Quebec,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2018,Quebec,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2018,Quebec,Employees paid by the hour,Machinery manufacturing,,0.64
-2018,Quebec,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2018,Quebec,Employees paid by the hour,Industrial machinery manufacturing,,
-2018,Quebec,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2018,Quebec,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2018,Quebec,Employees paid by the hour,Metalworking machinery manufacturing,,
-2018,Quebec,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2018,Quebec,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2018,Quebec,Employees paid by the hour,Communications equipment manufacturing,,
-2018,Quebec,Employees paid by the hour,Audio and video equipment manufacturing,,
-2018,Quebec,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2018,Quebec,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,Quebec,Employees paid by the hour,Manufacturing and reproducing magnetic and optical media,,
-2018,Quebec,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.13
-2018,Quebec,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2018,Quebec,Employees paid by the hour,Household appliance manufacturing,,
-2018,Quebec,Employees paid by the hour,Electrical equipment manufacturing,,
-2018,Quebec,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2018,Quebec,Employees paid by the hour,Transportation equipment manufacturing,,0.75
-2018,Quebec,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2018,Quebec,Employees paid by the hour,Other transportation equipment manufacturing,,
-2018,Quebec,Employees paid by the hour,Furniture and related product manufacturing,,
-2018,Quebec,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,Quebec,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2018,Quebec,Employees paid by the hour,Miscellaneous manufacturing,,
-2018,Quebec,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2018,Quebec,Employees paid by the hour,Other miscellaneous manufacturing,,0.22
-2018,Ontario,All employees,Manufacturing,35,10.6
-2018,Ontario,All employees,Non-durable goods,,3.99
-2018,Ontario,All employees,Food manufacturing,,1.29
-2018,Ontario,All employees,Animal food manufacturing,,0.06
-2018,Ontario,All employees,Grain and oilseed milling,,0.05
-2018,Ontario,All employees,Sugar and confectionery product manufacturing,,0.06
-2018,Ontario,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.1
-2018,Ontario,All employees,Dairy product manufacturing,,0.14
-2018,Ontario,All employees,Meat product manufacturing,,0.32
-2018,Ontario,All employees,Seafood product preparation and packaging,,0.01
-2018,Ontario,All employees,Bakeries and tortilla manufacturing,,0.34
-2018,Ontario,All employees,Other food manufacturing,,0.21
-2018,Ontario,All employees,Beverage and tobacco product manufacturing,,0.28
-2018,Ontario,All employees,Cannabis product manufacturing,,
-2018,Ontario,All employees,Textile mills,,0.05
-2018,Ontario,All employees,"Fibre, yarn and thread mills",,0.01
-2018,Ontario,All employees,Fabric mills,,0.02
-2018,Ontario,All employees,Textile and fabric finishing and fabric coating,,0.02
-2018,Ontario,All employees,Textile product mills,,0.06
-2018,Ontario,All employees,Textile furnishings mills,,0.02
-2018,Ontario,All employees,Other textile product mills,,0.04
-2018,Ontario,All employees,Clothing manufacturing,,0.09
-2018,Ontario,All employees,Clothing knitting mills,,
-2018,Ontario,All employees,Cut and sew clothing manufacturing,,0.06
-2018,Ontario,All employees,Clothing accessories and other clothing manufacturing,,
-2018,Ontario,All employees,Leather and allied product manufacturing,,0.02
-2018,Ontario,All employees,Leather and hide tanning and finishing,,0
-2018,Ontario,All employees,Footwear manufacturing,,0
-2018,Ontario,All employees,Other leather and allied product manufacturing,,0.01
-2018,Ontario,All employees,Paper manufacturing,,0.27
-2018,Ontario,All employees,"Pulp, paper and paperboard mills",,0.06
-2018,Ontario,All employees,Converted paper product manufacturing,,0.21
-2018,Ontario,All employees,Printing and related support activities,,0.37
-2018,Ontario,All employees,Petroleum and coal product manufacturing,,0.1
-2018,Ontario,All employees,Chemical manufacturing,,0.71
-2018,Ontario,All employees,Basic chemical manufacturing,,0.09
-2018,Ontario,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.05
-2018,Ontario,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
-2018,Ontario,All employees,Pharmaceutical and medicine manufacturing,,0.24
-2018,Ontario,All employees,"Paint, coating and adhesive manufacturing",,0.06
-2018,Ontario,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.16
-2018,Ontario,All employees,Other chemical product manufacturing,,0.08
-2018,Ontario,All employees,Plastics and rubber products manufacturing,,0.76
-2018,Ontario,All employees,Plastic product manufacturing,,0.67
-2018,Ontario,All employees,Rubber product manufacturing,,0.09
-2018,Ontario,All employees,Durable goods,,6.61
-2018,Ontario,All employees,Wood product manufacturing,,0.26
-2018,Ontario,All employees,Sawmills and wood preservation,,0.05
-2018,Ontario,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.06
-2018,Ontario,All employees,Other wood product manufacturing,,0.15
-2018,Ontario,All employees,Non-metallic mineral product manufacturing,,0.32
-2018,Ontario,All employees,Clay product and refractory manufacturing,,0.02
-2018,Ontario,All employees,Glass and glass product manufacturing,,0.05
-2018,Ontario,All employees,Cement and concrete product manufacturing,,0.19
-2018,Ontario,All employees,Lime and gypsum product manufacturing,,0.01
-2018,Ontario,All employees,Other non-metallic mineral product manufacturing,,0.06
-2018,Ontario,All employees,Primary metal manufacturing,,0.43
-2018,Ontario,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.19
-2018,Ontario,All employees,Steel product manufacturing from purchased steel,,0.06
-2018,Ontario,All employees,Alumina and aluminum production and processing,,
-2018,Ontario,All employees,Non-ferrous metal (except aluminum) production and processing,,
-2018,Ontario,All employees,Foundries,,0.07
-2018,Ontario,All employees,Fabricated metal product manufacturing,,1.03
-2018,Ontario,All employees,Forging and stamping,,0.05
-2018,Ontario,All employees,Cutlery and hand tool manufacturing,,0.03
-2018,Ontario,All employees,Architectural and structural metals manufacturing,,0.34
-2018,Ontario,All employees,"Boiler, tank and shipping container manufacturing",,0.06
-2018,Ontario,All employees,Hardware manufacturing,,0.05
-2018,Ontario,All employees,Spring and wire product manufacturing,,0.03
-2018,Ontario,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.22
-2018,Ontario,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.09
-2018,Ontario,All employees,Other fabricated metal product manufacturing,,0.15
-2018,Ontario,All employees,Machinery manufacturing,,0.97
-2018,Ontario,All employees,"Agricultural, construction and mining machinery manufacturing",,0.13
-2018,Ontario,All employees,Industrial machinery manufacturing,,0.11
-2018,Ontario,All employees,Commercial and service industry machinery manufacturing,,0.11
-2018,Ontario,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.09
-2018,Ontario,All employees,Metalworking machinery manufacturing,,0.25
-2018,Ontario,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
-2018,Ontario,All employees,Other general-purpose machinery manufacturing,,0.25
-2018,Ontario,All employees,Computer and electronic product manufacturing,,0.47
-2018,Ontario,All employees,Computer and peripheral equipment manufacturing,,0.06
-2018,Ontario,All employees,Communications equipment manufacturing,,0.11
-2018,Ontario,All employees,Audio and video equipment manufacturing,,0.02
-2018,Ontario,All employees,Semiconductor and other electronic component manufacturing,,0.12
-2018,Ontario,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.15
-2018,Ontario,All employees,"Electrical equipment, appliance and component manufacturing",,0.25
-2018,Ontario,All employees,Electric lighting equipment manufacturing,,0.03
-2018,Ontario,All employees,Household appliance manufacturing,,0.02
-2018,Ontario,All employees,Electrical equipment manufacturing,,0.11
-2018,Ontario,All employees,Other electrical equipment and component manufacturing,,0.09
-2018,Ontario,All employees,Transportation equipment manufacturing,,2.04
-2018,Ontario,All employees,Motor vehicle manufacturing,,0.59
-2018,Ontario,All employees,Motor vehicle body and trailer manufacturing,,0.08
-2018,Ontario,All employees,Motor vehicle parts manufacturing,,1.05
-2018,Ontario,All employees,Aerospace product and parts manufacturing,,0.21
-2018,Ontario,All employees,Railroad rolling stock manufacturing,,
-2018,Ontario,All employees,Furniture and related product manufacturing,,0.45
-2018,Ontario,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
-2018,Ontario,All employees,Office furniture (including fixtures) manufacturing,,0.21
-2018,Ontario,All employees,Other furniture-related product manufacturing,,0.03
-2018,Ontario,All employees,Miscellaneous manufacturing,,0.39
-2018,Ontario,All employees,Medical equipment and supplies manufacturing,,0.15
-2018,Ontario,All employees,Other miscellaneous manufacturing,,0.25
-2018,Ontario,Salaried employees paid a fixed salary,Manufacturing,,3.01
-2018,Ontario,Salaried employees paid a fixed salary,Non-durable goods,,1.14
-2018,Ontario,Salaried employees paid a fixed salary,Food manufacturing,,0.28
-2018,Ontario,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2018,Ontario,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.06
-2018,Ontario,Salaried employees paid a fixed salary,Other food manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Textile mills,,
-2018,Ontario,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2018,Ontario,Salaried employees paid a fixed salary,Fabric mills,,
-2018,Ontario,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
-2018,Ontario,Salaried employees paid a fixed salary,Textile furnishings mills,,
-2018,Ontario,Salaried employees paid a fixed salary,Other textile product mills,,
-2018,Ontario,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2018,Ontario,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Paper manufacturing,,0.07
-2018,Ontario,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2018,Ontario,Salaried employees paid a fixed salary,Printing and related support activities,,0.1
-2018,Ontario,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Chemical manufacturing,,0.32
-2018,Ontario,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2018,Ontario,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2018,Ontario,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
-2018,Ontario,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2018,Ontario,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Plastic product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Durable goods,,1.87
-2018,Ontario,Salaried employees paid a fixed salary,Wood product manufacturing,,0.03
-2018,Ontario,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2018,Ontario,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2018,Ontario,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2018,Ontario,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2018,Ontario,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2018,Ontario,Salaried employees paid a fixed salary,Foundries,,
-2018,Ontario,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.27
-2018,Ontario,Salaried employees paid a fixed salary,Forging and stamping,,
-2018,Ontario,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2018,Ontario,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
-2018,Ontario,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
-2018,Ontario,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Machinery manufacturing,,0.25
-2018,Ontario,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2018,Ontario,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2018,Ontario,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2018,Ontario,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.29
-2018,Ontario,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,Ontario,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.13
-2018,Ontario,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.49
-2018,Ontario,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,0.24
-2018,Ontario,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Railroad rolling stock manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.14
-2018,Ontario,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2018,Ontario,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.08
-2018,Ontario,Employees paid by the hour,Manufacturing,,7.11
-2018,Ontario,Employees paid by the hour,Non-durable goods,,2.68
-2018,Ontario,Employees paid by the hour,Food manufacturing,,0.97
-2018,Ontario,Employees paid by the hour,Animal food manufacturing,,
-2018,Ontario,Employees paid by the hour,Grain and oilseed milling,,
-2018,Ontario,Employees paid by the hour,Sugar and confectionery product manufacturing,,
-2018,Ontario,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2018,Ontario,Employees paid by the hour,Dairy product manufacturing,,
-2018,Ontario,Employees paid by the hour,Meat product manufacturing,,
-2018,Ontario,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.27
-2018,Ontario,Employees paid by the hour,Other food manufacturing,,
-2018,Ontario,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2018,Ontario,Employees paid by the hour,Cannabis product manufacturing,,
-2018,Ontario,Employees paid by the hour,Textile mills,,
-2018,Ontario,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2018,Ontario,Employees paid by the hour,Fabric mills,,
-2018,Ontario,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
-2018,Ontario,Employees paid by the hour,Textile furnishings mills,,
-2018,Ontario,Employees paid by the hour,Other textile product mills,,
-2018,Ontario,Employees paid by the hour,Clothing manufacturing,,
-2018,Ontario,Employees paid by the hour,Leather and allied product manufacturing,,
-2018,Ontario,Employees paid by the hour,Leather and hide tanning and finishing,,
-2018,Ontario,Employees paid by the hour,Footwear manufacturing,,
-2018,Ontario,Employees paid by the hour,Other leather and allied product manufacturing,,
-2018,Ontario,Employees paid by the hour,Paper manufacturing,,0.2
-2018,Ontario,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2018,Ontario,Employees paid by the hour,Printing and related support activities,,0.23
-2018,Ontario,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2018,Ontario,Employees paid by the hour,Chemical manufacturing,,0.36
-2018,Ontario,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2018,Ontario,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2018,Ontario,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
-2018,Ontario,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2018,Ontario,Employees paid by the hour,Other chemical product manufacturing,,
-2018,Ontario,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2018,Ontario,Employees paid by the hour,Plastic product manufacturing,,
-2018,Ontario,Employees paid by the hour,Rubber product manufacturing,,
-2018,Ontario,Employees paid by the hour,Durable goods,,4.43
-2018,Ontario,Employees paid by the hour,Wood product manufacturing,,0.22
-2018,Ontario,Employees paid by the hour,Sawmills and wood preservation,,
-2018,Ontario,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2018,Ontario,Employees paid by the hour,Other wood product manufacturing,,0.13
-2018,Ontario,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2018,Ontario,Employees paid by the hour,Clay product and refractory manufacturing,,
-2018,Ontario,Employees paid by the hour,Glass and glass product manufacturing,,
-2018,Ontario,Employees paid by the hour,Cement and concrete product manufacturing,,
-2018,Ontario,Employees paid by the hour,Lime and gypsum product manufacturing,,
-2018,Ontario,Employees paid by the hour,Primary metal manufacturing,,
-2018,Ontario,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2018,Ontario,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2018,Ontario,Employees paid by the hour,Alumina and aluminum production and processing,,
-2018,Ontario,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2018,Ontario,Employees paid by the hour,Foundries,,
-2018,Ontario,Employees paid by the hour,Fabricated metal product manufacturing,,0.68
-2018,Ontario,Employees paid by the hour,Forging and stamping,,
-2018,Ontario,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2018,Ontario,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2018,Ontario,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2018,Ontario,Employees paid by the hour,Hardware manufacturing,,
-2018,Ontario,Employees paid by the hour,Spring and wire product manufacturing,,
-2018,Ontario,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.17
-2018,Ontario,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
-2018,Ontario,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2018,Ontario,Employees paid by the hour,Machinery manufacturing,,0.67
-2018,Ontario,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2018,Ontario,Employees paid by the hour,Industrial machinery manufacturing,,
-2018,Ontario,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2018,Ontario,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2018,Ontario,Employees paid by the hour,Metalworking machinery manufacturing,,
-2018,Ontario,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2018,Ontario,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2018,Ontario,Employees paid by the hour,Computer and electronic product manufacturing,,0.15
-2018,Ontario,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
-2018,Ontario,Employees paid by the hour,Communications equipment manufacturing,,
-2018,Ontario,Employees paid by the hour,Audio and video equipment manufacturing,,
-2018,Ontario,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2018,Ontario,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,Ontario,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.1
-2018,Ontario,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2018,Ontario,Employees paid by the hour,Household appliance manufacturing,,
-2018,Ontario,Employees paid by the hour,Electrical equipment manufacturing,,
-2018,Ontario,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2018,Ontario,Employees paid by the hour,Transportation equipment manufacturing,,1.52
-2018,Ontario,Employees paid by the hour,Motor vehicle manufacturing,,
-2018,Ontario,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2018,Ontario,Employees paid by the hour,Motor vehicle parts manufacturing,,0.8
-2018,Ontario,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2018,Ontario,Employees paid by the hour,Railroad rolling stock manufacturing,,
-2018,Ontario,Employees paid by the hour,Furniture and related product manufacturing,,0.34
-2018,Ontario,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.17
-2018,Ontario,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2018,Ontario,Employees paid by the hour,Miscellaneous manufacturing,,0.22
-2018,Ontario,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2018,Ontario,Employees paid by the hour,Other miscellaneous manufacturing,,0.14
-2018,Manitoba,All employees,Manufacturing,46,9.13
-2018,Manitoba,All employees,Non-durable goods,,3.8
-2018,Manitoba,All employees,Food manufacturing,,1.62
-2018,Manitoba,All employees,Animal food manufacturing,,0.07
-2018,Manitoba,All employees,Meat product manufacturing,,0.76
-2018,Manitoba,All employees,Bakeries and tortilla manufacturing,,0.21
-2018,Manitoba,All employees,Beverage and tobacco product manufacturing,,0.18
-2018,Manitoba,All employees,Cannabis product manufacturing,,
-2018,Manitoba,All employees,Textile and fabric finishing and fabric coating,,
-2018,Manitoba,All employees,Other textile product mills,,
-2018,Manitoba,All employees,Cut and sew clothing manufacturing,,0.17
-2018,Manitoba,All employees,Leather and hide tanning and finishing,,
-2018,Manitoba,All employees,Paper manufacturing,,0.2
-2018,Manitoba,All employees,"Pulp, paper and paperboard mills",,
-2018,Manitoba,All employees,Printing and related support activities,,0.52
-2018,Manitoba,All employees,Chemical manufacturing,,0.45
-2018,Manitoba,All employees,Basic chemical manufacturing,,0.06
-2018,Manitoba,All employees,Durable goods,,5.34
-2018,Manitoba,All employees,Wood product manufacturing,,0.32
-2018,Manitoba,All employees,Sawmills and wood preservation,,0.07
-2018,Manitoba,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.04
-2018,Manitoba,All employees,Other wood product manufacturing,,0.22
-2018,Manitoba,All employees,Non-metallic mineral product manufacturing,,0.24
-2018,Manitoba,All employees,Cement and concrete product manufacturing,,0.17
-2018,Manitoba,All employees,Other non-metallic mineral product manufacturing,,0.04
-2018,Manitoba,All employees,Primary metal manufacturing,,0.57
-2018,Manitoba,All employees,Foundries,,0.13
-2018,Manitoba,All employees,Fabricated metal product manufacturing,,0.73
-2018,Manitoba,All employees,Architectural and structural metals manufacturing,,0.3
-2018,Manitoba,All employees,"Boiler, tank and shipping container manufacturing",,0.12
-2018,Manitoba,All employees,Spring and wire product manufacturing,,
-2018,Manitoba,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.06
-2018,Manitoba,All employees,Machinery manufacturing,,0.99
-2018,Manitoba,All employees,"Agricultural, construction and mining machinery manufacturing",,0.66
-2018,Manitoba,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.08
-2018,Manitoba,All employees,Other general-purpose machinery manufacturing,,0.14
-2018,Manitoba,All employees,Computer and electronic product manufacturing,,0.07
-2018,Manitoba,All employees,Semiconductor and other electronic component manufacturing,,0.04
-2018,Manitoba,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,Manitoba,All employees,Electrical equipment manufacturing,,0.12
-2018,Manitoba,All employees,Transportation equipment manufacturing,,1.45
-2018,Manitoba,All employees,Motor vehicle body and trailer manufacturing,,0.21
-2018,Manitoba,All employees,Aerospace product and parts manufacturing,,0.68
-2018,Manitoba,All employees,Furniture and related product manufacturing,,0.58
-2018,Manitoba,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.55
-2018,Manitoba,All employees,Office furniture (including fixtures) manufacturing,,
-2018,Manitoba,All employees,Other furniture-related product manufacturing,,
-2018,Manitoba,All employees,Miscellaneous manufacturing,,0.27
-2018,Manitoba,All employees,Medical equipment and supplies manufacturing,,0.09
-2018,Manitoba,All employees,Other miscellaneous manufacturing,,0.18
-2018,Manitoba,Salaried employees paid a fixed salary,Manufacturing,,2.06
-2018,Manitoba,Salaried employees paid a fixed salary,Non-durable goods,,0.8
-2018,Manitoba,Salaried employees paid a fixed salary,Food manufacturing,,0.28
-2018,Manitoba,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Meat product manufacturing,,0.1
-2018,Manitoba,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
-2018,Manitoba,Salaried employees paid a fixed salary,Other textile product mills,,
-2018,Manitoba,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Paper manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2018,Manitoba,Salaried employees paid a fixed salary,Printing and related support activities,,0.1
-2018,Manitoba,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Durable goods,,1.25
-2018,Manitoba,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2018,Manitoba,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2018,Manitoba,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2018,Manitoba,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2018,Manitoba,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,Manitoba,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.31
-2018,Manitoba,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.08
-2018,Manitoba,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.08
-2018,Manitoba,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2018,Manitoba,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2018,Manitoba,Employees paid by the hour,Manufacturing,,6.76
-2018,Manitoba,Employees paid by the hour,Non-durable goods,,2.85
-2018,Manitoba,Employees paid by the hour,Food manufacturing,,1.3
-2018,Manitoba,Employees paid by the hour,Animal food manufacturing,,
-2018,Manitoba,Employees paid by the hour,Meat product manufacturing,,0.65
-2018,Manitoba,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2018,Manitoba,Employees paid by the hour,Cannabis product manufacturing,,
-2018,Manitoba,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
-2018,Manitoba,Employees paid by the hour,Other textile product mills,,
-2018,Manitoba,Employees paid by the hour,Clothing manufacturing,,
-2018,Manitoba,Employees paid by the hour,Cut and sew clothing manufacturing,,
-2018,Manitoba,Employees paid by the hour,Leather and hide tanning and finishing,,
-2018,Manitoba,Employees paid by the hour,Paper manufacturing,,
-2018,Manitoba,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2018,Manitoba,Employees paid by the hour,Printing and related support activities,,0.39
-2018,Manitoba,Employees paid by the hour,Chemical manufacturing,,
-2018,Manitoba,Employees paid by the hour,Basic chemical manufacturing,,
-2018,Manitoba,Employees paid by the hour,Durable goods,,3.91
-2018,Manitoba,Employees paid by the hour,Wood product manufacturing,,
-2018,Manitoba,Employees paid by the hour,Sawmills and wood preservation,,
-2018,Manitoba,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2018,Manitoba,Employees paid by the hour,Other wood product manufacturing,,
-2018,Manitoba,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2018,Manitoba,Employees paid by the hour,Cement and concrete product manufacturing,,
-2018,Manitoba,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2018,Manitoba,Employees paid by the hour,Primary metal manufacturing,,
-2018,Manitoba,Employees paid by the hour,Fabricated metal product manufacturing,,0.53
-2018,Manitoba,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2018,Manitoba,Employees paid by the hour,Machinery manufacturing,,
-2018,Manitoba,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2018,Manitoba,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2018,Manitoba,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2018,Manitoba,Employees paid by the hour,Computer and electronic product manufacturing,,
-2018,Manitoba,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,Manitoba,Employees paid by the hour,Electrical equipment manufacturing,,
-2018,Manitoba,Employees paid by the hour,Transportation equipment manufacturing,,1.13
-2018,Manitoba,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2018,Manitoba,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2018,Manitoba,Employees paid by the hour,Furniture and related product manufacturing,,0.46
-2018,Manitoba,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.44
-2018,Manitoba,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2018,Manitoba,Employees paid by the hour,Other furniture-related product manufacturing,,
-2018,Manitoba,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2018,Manitoba,Employees paid by the hour,Other miscellaneous manufacturing,,
-2018,Saskatchewan,All employees,Manufacturing,47,5
-2018,Saskatchewan,All employees,Non-durable goods,,1.83
-2018,Saskatchewan,All employees,Food manufacturing,,0.91
-2018,Saskatchewan,All employees,Animal food manufacturing,,0.1
-2018,Saskatchewan,All employees,Grain and oilseed milling,,0.19
-2018,Saskatchewan,All employees,Meat product manufacturing,,0.41
-2018,Saskatchewan,All employees,Beverage and tobacco product manufacturing,,0.17
-2018,Saskatchewan,All employees,Cannabis product manufacturing,,
-2018,Saskatchewan,All employees,Printing and related support activities,,0.1
-2018,Saskatchewan,All employees,Chemical manufacturing,,0.25
-2018,Saskatchewan,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.11
-2018,Saskatchewan,All employees,Durable goods,,3.17
-2018,Saskatchewan,All employees,Wood product manufacturing,,0.29
-2018,Saskatchewan,All employees,Sawmills and wood preservation,,0.11
-2018,Saskatchewan,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.14
-2018,Saskatchewan,All employees,Other wood product manufacturing,,0.05
-2018,Saskatchewan,All employees,Cement and concrete product manufacturing,,0.18
-2018,Saskatchewan,All employees,Fabricated metal product manufacturing,,0.61
-2018,Saskatchewan,All employees,Architectural and structural metals manufacturing,,0.25
-2018,Saskatchewan,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
-2018,Saskatchewan,All employees,Machinery manufacturing,,1.07
-2018,Saskatchewan,All employees,"Agricultural, construction and mining machinery manufacturing",,0.93
-2018,Saskatchewan,All employees,Computer and electronic product manufacturing,,0.15
-2018,Saskatchewan,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,Saskatchewan,All employees,Motor vehicle body and trailer manufacturing,,0.22
-2018,Saskatchewan,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.08
-2018,Saskatchewan,All employees,Miscellaneous manufacturing,,0.13
-2018,Saskatchewan,All employees,Medical equipment and supplies manufacturing,,0.06
-2018,Saskatchewan,All employees,Other miscellaneous manufacturing,,0.07
-2018,Saskatchewan,Salaried employees paid a fixed salary,Manufacturing,,1.35
-2018,Saskatchewan,Salaried employees paid a fixed salary,Non-durable goods,,0.5
-2018,Saskatchewan,Salaried employees paid a fixed salary,Food manufacturing,,
-2018,Saskatchewan,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2018,Saskatchewan,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2018,Saskatchewan,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,Saskatchewan,Salaried employees paid a fixed salary,Printing and related support activities,,
-2018,Saskatchewan,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2018,Saskatchewan,Salaried employees paid a fixed salary,Durable goods,,0.85
-2018,Saskatchewan,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2018,Saskatchewan,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2018,Saskatchewan,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2018,Saskatchewan,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2018,Saskatchewan,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2018,Saskatchewan,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,Saskatchewan,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2018,Saskatchewan,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,Saskatchewan,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2018,Saskatchewan,Employees paid by the hour,Manufacturing,,3.48
-2018,Saskatchewan,Employees paid by the hour,Non-durable goods,,1.26
-2018,Saskatchewan,Employees paid by the hour,Food manufacturing,,
-2018,Saskatchewan,Employees paid by the hour,Grain and oilseed milling,,
-2018,Saskatchewan,Employees paid by the hour,Meat product manufacturing,,
-2018,Saskatchewan,Employees paid by the hour,Cannabis product manufacturing,,
-2018,Saskatchewan,Employees paid by the hour,Printing and related support activities,,
-2018,Saskatchewan,Employees paid by the hour,Chemical manufacturing,,
-2018,Saskatchewan,Employees paid by the hour,Durable goods,,2.22
-2018,Saskatchewan,Employees paid by the hour,Fabricated metal product manufacturing,,
-2018,Saskatchewan,Employees paid by the hour,Machinery manufacturing,,
-2018,Saskatchewan,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2018,Saskatchewan,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2018,Saskatchewan,Employees paid by the hour,Computer and electronic product manufacturing,,
-2018,Saskatchewan,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,Saskatchewan,Employees paid by the hour,Transportation equipment manufacturing,,
-2018,Saskatchewan,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,Saskatchewan,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2018,Alberta,All employees,Manufacturing,48,6.13
-2018,Alberta,All employees,Non-durable goods,,2.59
-2018,Alberta,All employees,Food manufacturing,,1.11
-2018,Alberta,All employees,Animal food manufacturing,,0.06
-2018,Alberta,All employees,Grain and oilseed milling,,0.04
-2018,Alberta,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.08
-2018,Alberta,All employees,Meat product manufacturing,,0.54
-2018,Alberta,All employees,Bakeries and tortilla manufacturing,,0.16
-2018,Alberta,All employees,Other food manufacturing,,0.14
-2018,Alberta,All employees,Beverage and tobacco product manufacturing,,0.17
-2018,Alberta,All employees,Cannabis product manufacturing,,
-2018,Alberta,All employees,Cut and sew clothing manufacturing,,0.01
-2018,Alberta,All employees,Other leather and allied product manufacturing,,
-2018,Alberta,All employees,Paper manufacturing,,0.1
-2018,Alberta,All employees,"Pulp, paper and paperboard mills",,0.07
-2018,Alberta,All employees,Converted paper product manufacturing,,0.03
-2018,Alberta,All employees,Printing and related support activities,,0.21
-2018,Alberta,All employees,Petroleum and coal product manufacturing,,0.22
-2018,Alberta,All employees,Chemical manufacturing,,0.45
-2018,Alberta,All employees,Basic chemical manufacturing,,0.15
-2018,Alberta,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.12
-2018,Alberta,All employees,Other chemical product manufacturing,,0.08
-2018,Alberta,All employees,Plastics and rubber products manufacturing,,0.29
-2018,Alberta,All employees,Durable goods,,3.54
-2018,Alberta,All employees,Wood product manufacturing,,0.45
-2018,Alberta,All employees,Sawmills and wood preservation,,0.18
-2018,Alberta,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.1
-2018,Alberta,All employees,Other wood product manufacturing,,0.17
-2018,Alberta,All employees,Non-metallic mineral product manufacturing,,0.38
-2018,Alberta,All employees,Glass and glass product manufacturing,,0.02
-2018,Alberta,All employees,Cement and concrete product manufacturing,,0.24
-2018,Alberta,All employees,Other non-metallic mineral product manufacturing,,0.08
-2018,Alberta,All employees,Primary metal manufacturing,,0.16
-2018,Alberta,All employees,Fabricated metal product manufacturing,,1
-2018,Alberta,All employees,Forging and stamping,,
-2018,Alberta,All employees,Architectural and structural metals manufacturing,,0.43
-2018,Alberta,All employees,"Boiler, tank and shipping container manufacturing",,0.14
-2018,Alberta,All employees,Spring and wire product manufacturing,,0.03
-2018,Alberta,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.2
-2018,Alberta,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.06
-2018,Alberta,All employees,Other fabricated metal product manufacturing,,0.13
-2018,Alberta,All employees,Machinery manufacturing,,0.84
-2018,Alberta,All employees,"Agricultural, construction and mining machinery manufacturing",,0.41
-2018,Alberta,All employees,Industrial machinery manufacturing,,0.02
-2018,Alberta,All employees,Commercial and service industry machinery manufacturing,,0.02
-2018,Alberta,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.11
-2018,Alberta,All employees,Metalworking machinery manufacturing,,0.04
-2018,Alberta,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
-2018,Alberta,All employees,Other general-purpose machinery manufacturing,,0.2
-2018,Alberta,All employees,Computer and electronic product manufacturing,,0.15
-2018,Alberta,All employees,Computer and peripheral equipment manufacturing,,
-2018,Alberta,All employees,Communications equipment manufacturing,,
-2018,Alberta,All employees,Semiconductor and other electronic component manufacturing,,0.04
-2018,Alberta,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.08
-2018,Alberta,All employees,"Electrical equipment, appliance and component manufacturing",,0.1
-2018,Alberta,All employees,Electrical equipment manufacturing,,0.07
-2018,Alberta,All employees,Other electrical equipment and component manufacturing,,
-2018,Alberta,All employees,Transportation equipment manufacturing,,0.09
-2018,Alberta,All employees,Motor vehicle body and trailer manufacturing,,0.05
-2018,Alberta,All employees,Motor vehicle parts manufacturing,,0.01
-2018,Alberta,All employees,Aerospace product and parts manufacturing,,
-2018,Alberta,All employees,Furniture and related product manufacturing,,0.16
-2018,Alberta,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.1
-2018,Alberta,All employees,Office furniture (including fixtures) manufacturing,,0.04
-2018,Alberta,All employees,Other furniture-related product manufacturing,,0.03
-2018,Alberta,All employees,Miscellaneous manufacturing,,0.2
-2018,Alberta,All employees,Medical equipment and supplies manufacturing,,0.07
-2018,Alberta,All employees,Other miscellaneous manufacturing,,0.13
-2018,Alberta,Salaried employees paid a fixed salary,Manufacturing,,1.95
-2018,Alberta,Salaried employees paid a fixed salary,Non-durable goods,,
-2018,Alberta,Salaried employees paid a fixed salary,Food manufacturing,,0.2
-2018,Alberta,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2018,Alberta,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Paper manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2018,Alberta,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Printing and related support activities,,0.05
-2018,Alberta,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2018,Alberta,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Durable goods,,1.03
-2018,Alberta,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2018,Alberta,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2018,Alberta,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2018,Alberta,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2018,Alberta,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2018,Alberta,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,Alberta,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2018,Alberta,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2018,Alberta,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2018,Alberta,Employees paid by the hour,Manufacturing,,3.94
-2018,Alberta,Employees paid by the hour,Non-durable goods,,
-2018,Alberta,Employees paid by the hour,Food manufacturing,,0.87
-2018,Alberta,Employees paid by the hour,Grain and oilseed milling,,
-2018,Alberta,Employees paid by the hour,Meat product manufacturing,,
-2018,Alberta,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2018,Alberta,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2018,Alberta,Employees paid by the hour,Cannabis product manufacturing,,
-2018,Alberta,Employees paid by the hour,Paper manufacturing,,
-2018,Alberta,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2018,Alberta,Employees paid by the hour,Converted paper product manufacturing,,
-2018,Alberta,Employees paid by the hour,Printing and related support activities,,0.13
-2018,Alberta,Employees paid by the hour,Chemical manufacturing,,
-2018,Alberta,Employees paid by the hour,Basic chemical manufacturing,,
-2018,Alberta,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2018,Alberta,Employees paid by the hour,Other chemical product manufacturing,,
-2018,Alberta,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2018,Alberta,Employees paid by the hour,Durable goods,,2.36
-2018,Alberta,Employees paid by the hour,Wood product manufacturing,,
-2018,Alberta,Employees paid by the hour,Sawmills and wood preservation,,
-2018,Alberta,Employees paid by the hour,Other wood product manufacturing,,
-2018,Alberta,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2018,Alberta,Employees paid by the hour,Cement and concrete product manufacturing,,
-2018,Alberta,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2018,Alberta,Employees paid by the hour,Fabricated metal product manufacturing,,
-2018,Alberta,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2018,Alberta,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2018,Alberta,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2018,Alberta,Employees paid by the hour,Machinery manufacturing,,
-2018,Alberta,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2018,Alberta,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2018,Alberta,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2018,Alberta,Employees paid by the hour,Computer and electronic product manufacturing,,
-2018,Alberta,Employees paid by the hour,Communications equipment manufacturing,,
-2018,Alberta,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,Alberta,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2018,Alberta,Employees paid by the hour,Electrical equipment manufacturing,,
-2018,Alberta,Employees paid by the hour,Transportation equipment manufacturing,,
-2018,Alberta,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2018,Alberta,Employees paid by the hour,Motor vehicle parts manufacturing,,
-2018,Alberta,Employees paid by the hour,Furniture and related product manufacturing,,
-2018,Alberta,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,Alberta,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2018,Alberta,Employees paid by the hour,Other furniture-related product manufacturing,,
-2018,Alberta,Employees paid by the hour,Miscellaneous manufacturing,,
-2018,Alberta,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2018,Alberta,Employees paid by the hour,Other miscellaneous manufacturing,,
-2018,British Columbia,All employees,Manufacturing,59,6.67
-2018,British Columbia,All employees,Non-durable goods,,2.71
-2018,British Columbia,All employees,Food manufacturing,,1.16
-2018,British Columbia,All employees,Animal food manufacturing,,0.04
-2018,British Columbia,All employees,Grain and oilseed milling,,0.01
-2018,British Columbia,All employees,Sugar and confectionery product manufacturing,,0.05
-2018,British Columbia,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.07
-2018,British Columbia,All employees,Dairy product manufacturing,,0.09
-2018,British Columbia,All employees,Meat product manufacturing,,0.22
-2018,British Columbia,All employees,Seafood product preparation and packaging,,0.15
-2018,British Columbia,All employees,Bakeries and tortilla manufacturing,,0.28
-2018,British Columbia,All employees,Other food manufacturing,,0.24
-2018,British Columbia,All employees,Beverage and tobacco product manufacturing,,0.37
-2018,British Columbia,All employees,Cannabis product manufacturing,,
-2018,British Columbia,All employees,Fabric mills,,
-2018,British Columbia,All employees,Textile product mills,,0.04
-2018,British Columbia,All employees,Textile furnishings mills,,0.01
-2018,British Columbia,All employees,Other textile product mills,,0.03
-2018,British Columbia,All employees,Clothing manufacturing,,0.07
-2018,British Columbia,All employees,Cut and sew clothing manufacturing,,0.05
-2018,British Columbia,All employees,Other leather and allied product manufacturing,,
-2018,British Columbia,All employees,Paper manufacturing,,0.32
-2018,British Columbia,All employees,"Pulp, paper and paperboard mills",,0.26
-2018,British Columbia,All employees,Converted paper product manufacturing,,0.06
-2018,British Columbia,All employees,Printing and related support activities,,0.19
-2018,British Columbia,All employees,Petroleum and coal product manufacturing,,0.04
-2018,British Columbia,All employees,Chemical manufacturing,,0.28
-2018,British Columbia,All employees,Basic chemical manufacturing,,0.02
-2018,British Columbia,All employees,Pharmaceutical and medicine manufacturing,,0.11
-2018,British Columbia,All employees,"Paint, coating and adhesive manufacturing",,0.03
-2018,British Columbia,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.07
-2018,British Columbia,All employees,Other chemical product manufacturing,,0.02
-2018,British Columbia,All employees,Plastics and rubber products manufacturing,,0.24
-2018,British Columbia,All employees,Plastic product manufacturing,,0.21
-2018,British Columbia,All employees,Durable goods,,3.96
-2018,British Columbia,All employees,Wood product manufacturing,,1.22
-2018,British Columbia,All employees,Sawmills and wood preservation,,0.67
-2018,British Columbia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.22
-2018,British Columbia,All employees,Other wood product manufacturing,,0.33
-2018,British Columbia,All employees,Non-metallic mineral product manufacturing,,0.29
-2018,British Columbia,All employees,Glass and glass product manufacturing,,0.07
-2018,British Columbia,All employees,Cement and concrete product manufacturing,,0.16
-2018,British Columbia,All employees,Other non-metallic mineral product manufacturing,,0.05
-2018,British Columbia,All employees,Primary metal manufacturing,,0.16
-2018,British Columbia,All employees,Fabricated metal product manufacturing,,0.56
-2018,British Columbia,All employees,Forging and stamping,,0.01
-2018,British Columbia,All employees,Cutlery and hand tool manufacturing,,
-2018,British Columbia,All employees,Architectural and structural metals manufacturing,,0.28
-2018,British Columbia,All employees,"Boiler, tank and shipping container manufacturing",,0.03
-2018,British Columbia,All employees,Spring and wire product manufacturing,,0.02
-2018,British Columbia,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.08
-2018,British Columbia,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
-2018,British Columbia,All employees,Other fabricated metal product manufacturing,,0.08
-2018,British Columbia,All employees,Machinery manufacturing,,0.41
-2018,British Columbia,All employees,"Agricultural, construction and mining machinery manufacturing",,0.05
-2018,British Columbia,All employees,Industrial machinery manufacturing,,0.09
-2018,British Columbia,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.06
-2018,British Columbia,All employees,Metalworking machinery manufacturing,,0.04
-2018,British Columbia,All employees,Other general-purpose machinery manufacturing,,0.1
-2018,British Columbia,All employees,Computer and electronic product manufacturing,,0.25
-2018,British Columbia,All employees,Computer and peripheral equipment manufacturing,,0.04
-2018,British Columbia,All employees,Communications equipment manufacturing,,0.04
-2018,British Columbia,All employees,Semiconductor and other electronic component manufacturing,,0.06
-2018,British Columbia,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.1
-2018,British Columbia,All employees,"Electrical equipment, appliance and component manufacturing",,0.16
-2018,British Columbia,All employees,Electrical equipment manufacturing,,0.05
-2018,British Columbia,All employees,Other electrical equipment and component manufacturing,,0.08
-2018,British Columbia,All employees,Transportation equipment manufacturing,,0.34
-2018,British Columbia,All employees,Motor vehicle body and trailer manufacturing,,0.08
-2018,British Columbia,All employees,Aerospace product and parts manufacturing,,0.06
-2018,British Columbia,All employees,Ship and boat building,,0.12
-2018,British Columbia,All employees,Furniture and related product manufacturing,,0.26
-2018,British Columbia,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
-2018,British Columbia,All employees,Office furniture (including fixtures) manufacturing,,0.03
-2018,British Columbia,All employees,Other furniture-related product manufacturing,,0.02
-2018,British Columbia,All employees,Miscellaneous manufacturing,,0.31
-2018,British Columbia,All employees,Medical equipment and supplies manufacturing,,0.11
-2018,British Columbia,All employees,Other miscellaneous manufacturing,,0.21
-2018,British Columbia,Salaried employees paid a fixed salary,Manufacturing,,1.72
-2018,British Columbia,Salaried employees paid a fixed salary,Non-durable goods,,0.7
-2018,British Columbia,Salaried employees paid a fixed salary,Food manufacturing,,0.28
-2018,British Columbia,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2018,British Columbia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,0.11
-2018,British Columbia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Paper manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2018,British Columbia,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Printing and related support activities,,
-2018,British Columbia,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2018,British Columbia,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Plastic product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Durable goods,,1.02
-2018,British Columbia,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2018,British Columbia,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2018,British Columbia,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.06
-2018,British Columbia,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.15
-2018,British Columbia,Salaried employees paid a fixed salary,Forging and stamping,,
-2018,British Columbia,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2018,British Columbia,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2018,British Columbia,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2018,British Columbia,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,British Columbia,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Ship and boat building,,
-2018,British Columbia,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2018,British Columbia,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2018,British Columbia,Employees paid by the hour,Manufacturing,,4.62
-2018,British Columbia,Employees paid by the hour,Non-durable goods,,1.86
-2018,British Columbia,Employees paid by the hour,Food manufacturing,,0.83
-2018,British Columbia,Employees paid by the hour,Animal food manufacturing,,
-2018,British Columbia,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2018,British Columbia,Employees paid by the hour,Meat product manufacturing,,
-2018,British Columbia,Employees paid by the hour,Seafood product preparation and packaging,,
-2018,British Columbia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2018,British Columbia,Employees paid by the hour,Beverage and tobacco product manufacturing,,0.23
-2018,British Columbia,Employees paid by the hour,Cannabis product manufacturing,,
-2018,British Columbia,Employees paid by the hour,Clothing manufacturing,,
-2018,British Columbia,Employees paid by the hour,Other leather and allied product manufacturing,,
-2018,British Columbia,Employees paid by the hour,Paper manufacturing,,
-2018,British Columbia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2018,British Columbia,Employees paid by the hour,Converted paper product manufacturing,,
-2018,British Columbia,Employees paid by the hour,Printing and related support activities,,
-2018,British Columbia,Employees paid by the hour,Basic chemical manufacturing,,
-2018,British Columbia,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2018,British Columbia,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2018,British Columbia,Employees paid by the hour,Other chemical product manufacturing,,
-2018,British Columbia,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2018,British Columbia,Employees paid by the hour,Plastic product manufacturing,,
-2018,British Columbia,Employees paid by the hour,Durable goods,,2.76
-2018,British Columbia,Employees paid by the hour,Wood product manufacturing,,
-2018,British Columbia,Employees paid by the hour,Sawmills and wood preservation,,
-2018,British Columbia,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2018,British Columbia,Employees paid by the hour,Other wood product manufacturing,,0.29
-2018,British Columbia,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.22
-2018,British Columbia,Employees paid by the hour,Glass and glass product manufacturing,,
-2018,British Columbia,Employees paid by the hour,Cement and concrete product manufacturing,,
-2018,British Columbia,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2018,British Columbia,Employees paid by the hour,Primary metal manufacturing,,
-2018,British Columbia,Employees paid by the hour,Fabricated metal product manufacturing,,0.37
-2018,British Columbia,Employees paid by the hour,Forging and stamping,,
-2018,British Columbia,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2018,British Columbia,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2018,British Columbia,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2018,British Columbia,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2018,British Columbia,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2018,British Columbia,Employees paid by the hour,Machinery manufacturing,,
-2018,British Columbia,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2018,British Columbia,Employees paid by the hour,Industrial machinery manufacturing,,
-2018,British Columbia,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2018,British Columbia,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2018,British Columbia,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2018,British Columbia,Employees paid by the hour,Electrical equipment manufacturing,,
-2018,British Columbia,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2018,British Columbia,Employees paid by the hour,Transportation equipment manufacturing,,
-2018,British Columbia,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2018,British Columbia,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2018,British Columbia,Employees paid by the hour,Ship and boat building,,
-2018,British Columbia,Employees paid by the hour,Furniture and related product manufacturing,,
-2018,British Columbia,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2018,British Columbia,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2018,British Columbia,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2018,British Columbia,Employees paid by the hour,Other miscellaneous manufacturing,,
-2018,Yukon,All employees,Cannabis product manufacturing,,
-2018,Yukon,All employees,Durable goods,,
-2018,Yukon,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,Yukon,Salaried employees paid a fixed salary,Durable goods,,
-2018,Yukon,Employees paid by the hour,Cannabis product manufacturing,,
-2018,Yukon,Employees paid by the hour,Durable goods,,
-2018,Northwest Territories,All employees,Cannabis product manufacturing,,
-2018,Northwest Territories,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,Northwest Territories,Employees paid by the hour,Cannabis product manufacturing,,
-2018,Nunavut,All employees,Cannabis product manufacturing,,
-2018,Nunavut,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2018,Nunavut,Employees paid by the hour,Cannabis product manufacturing,,
-2019,Canada,All employees,Non-durable goods,,3.79
-2019,Canada,All employees,Food manufacturing,,1.45
-2019,Canada,All employees,Animal food manufacturing,,0.06
-2019,Canada,All employees,Grain and oilseed milling,,0.05
-2019,Canada,All employees,Sugar and confectionery product manufacturing,,0.06
-2019,Canada,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.11
-2019,Canada,All employees,Dairy product manufacturing,,0.16
-2019,Canada,All employees,Meat product manufacturing,,0.38
-2019,Canada,All employees,Seafood product preparation and packaging,,0.13
-2019,Canada,All employees,Bakeries and tortilla manufacturing,,0.29
-2019,Canada,All employees,Other food manufacturing,,0.21
-2019,Canada,All employees,Beverage and tobacco product manufacturing,,0.28
-2019,Canada,All employees,Beverage manufacturing,,0.26
-2019,Canada,All employees,Tobacco manufacturing,,
-2019,Canada,All employees,Cannabis product manufacturing,,
-2019,Canada,All employees,Textile mills,,0.04
-2019,Canada,All employees,"Fibre, yarn and thread mills",,0
-2019,Canada,All employees,Fabric mills,,0.02
-2019,Canada,All employees,Textile and fabric finishing and fabric coating,,0.01
-2019,Canada,All employees,Textile product mills,,0.05
-2019,Canada,All employees,Textile furnishings mills,,0.02
-2019,Canada,All employees,Other textile product mills,,0.04
-2019,Canada,All employees,Clothing manufacturing,,0.12
-2019,Canada,All employees,Clothing knitting mills,,0.01
-2019,Canada,All employees,Cut and sew clothing manufacturing,,0.09
-2019,Canada,All employees,Clothing accessories and other clothing manufacturing,,0.02
-2019,Canada,All employees,Leather and allied product manufacturing,,0.01
-2019,Canada,All employees,Leather and hide tanning and finishing,,0
-2019,Canada,All employees,Footwear manufacturing,,0.01
-2019,Canada,All employees,Other leather and allied product manufacturing,,0
-2019,Canada,All employees,Paper manufacturing,,0.31
-2019,Canada,All employees,"Pulp, paper and paperboard mills",,0.14
-2019,Canada,All employees,Converted paper product manufacturing,,0.17
-2019,Canada,All employees,Printing and related support activities,,0.29
-2019,Canada,All employees,Petroleum and coal product manufacturing,,0.11
-2019,Canada,All employees,Chemical manufacturing,,0.55
-2019,Canada,All employees,Basic chemical manufacturing,,0.08
-2019,Canada,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.03
-2019,Canada,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
-2019,Canada,All employees,Pharmaceutical and medicine manufacturing,,0.18
-2019,Canada,All employees,"Paint, coating and adhesive manufacturing",,0.05
-2019,Canada,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.1
-2019,Canada,All employees,Other chemical product manufacturing,,0.07
-2019,Canada,All employees,Plastics and rubber products manufacturing,,0.58
-2019,Canada,All employees,Plastic product manufacturing,,0.49
-2019,Canada,All employees,Rubber product manufacturing,,0.09
-2019,Canada,All employees,Durable goods,,5.52
-2019,Canada,All employees,Wood product manufacturing,,0.55
-2019,Canada,All employees,Sawmills and wood preservation,,0.21
-2019,Canada,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.11
-2019,Canada,All employees,Other wood product manufacturing,,0.23
-2019,Canada,All employees,Non-metallic mineral product manufacturing,,0.33
-2019,Canada,All employees,Clay product and refractory manufacturing,,0.01
-2019,Canada,All employees,Glass and glass product manufacturing,,0.05
-2019,Canada,All employees,Cement and concrete product manufacturing,,0.19
-2019,Canada,All employees,Lime and gypsum product manufacturing,,0.01
-2019,Canada,All employees,Other non-metallic mineral product manufacturing,,0.06
-2019,Canada,All employees,Primary metal manufacturing,,0.34
-2019,Canada,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.1
-2019,Canada,All employees,Steel product manufacturing from purchased steel,,0.05
-2019,Canada,All employees,Alumina and aluminum production and processing,,0.06
-2019,Canada,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
-2019,Canada,All employees,Foundries,,0.06
-2019,Canada,All employees,Fabricated metal product manufacturing,,0.96
-2019,Canada,All employees,Forging and stamping,,0.04
-2019,Canada,All employees,Cutlery and hand tool manufacturing,,0.02
-2019,Canada,All employees,Architectural and structural metals manufacturing,,0.37
-2019,Canada,All employees,"Boiler, tank and shipping container manufacturing",,0.07
-2019,Canada,All employees,Hardware manufacturing,,0.04
-2019,Canada,All employees,Spring and wire product manufacturing,,0.03
-2019,Canada,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.2
-2019,Canada,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2019,Canada,All employees,Other fabricated metal product manufacturing,,0.14
-2019,Canada,All employees,Machinery manufacturing,,0.83
-2019,Canada,All employees,"Agricultural, construction and mining machinery manufacturing",,0.19
-2019,Canada,All employees,Industrial machinery manufacturing,,0.11
-2019,Canada,All employees,Commercial and service industry machinery manufacturing,,0.1
-2019,Canada,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.1
-2019,Canada,All employees,Metalworking machinery manufacturing,,0.12
-2019,Canada,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
-2019,Canada,All employees,Other general-purpose machinery manufacturing,,0.19
-2019,Canada,All employees,Computer and electronic product manufacturing,,0.34
-2019,Canada,All employees,Computer and peripheral equipment manufacturing,,0.03
-2019,Canada,All employees,Communications equipment manufacturing,,0.07
-2019,Canada,All employees,Audio and video equipment manufacturing,,0.01
-2019,Canada,All employees,Semiconductor and other electronic component manufacturing,,0.1
-2019,Canada,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.13
-2019,Canada,All employees,Manufacturing and reproducing magnetic and optical media,,0
-2019,Canada,All employees,"Electrical equipment, appliance and component manufacturing",,0.21
-2019,Canada,All employees,Electric lighting equipment manufacturing,,0.03
-2019,Canada,All employees,Household appliance manufacturing,,0.01
-2019,Canada,All employees,Electrical equipment manufacturing,,0.09
-2019,Canada,All employees,Other electrical equipment and component manufacturing,,0.08
-2019,Canada,All employees,Transportation equipment manufacturing,,1.23
-2019,Canada,All employees,Motor vehicle manufacturing,,0.26
-2019,Canada,All employees,Motor vehicle body and trailer manufacturing,,0.09
-2019,Canada,All employees,Motor vehicle parts manufacturing,,0.44
-2019,Canada,All employees,Aerospace product and parts manufacturing,,0.3
-2019,Canada,All employees,Railroad rolling stock manufacturing,,0.03
-2019,Canada,All employees,Ship and boat building,,0.05
-2019,Canada,All employees,Other transportation equipment manufacturing,,0.06
-2019,Canada,All employees,Furniture and related product manufacturing,,0.39
-2019,Canada,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.24
-2019,Canada,All employees,Office furniture (including fixtures) manufacturing,,0.12
-2019,Canada,All employees,Other furniture-related product manufacturing,,0.03
-2019,Canada,All employees,Miscellaneous manufacturing,,0.35
-2019,Canada,All employees,Medical equipment and supplies manufacturing,,0.12
-2019,Canada,All employees,Other miscellaneous manufacturing,,0.23
-2019,Canada,Salaried employees paid a fixed salary,Manufacturing,,2.45
-2019,Canada,Salaried employees paid a fixed salary,Non-durable goods,,1.01
-2019,Canada,Salaried employees paid a fixed salary,Food manufacturing,,0.32
-2019,Canada,Salaried employees paid a fixed salary,Animal food manufacturing,,0.01
-2019,Canada,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2019,Canada,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,0.03
-2019,Canada,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Meat product manufacturing,,0.09
-2019,Canada,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2019,Canada,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.04
-2019,Canada,Salaried employees paid a fixed salary,Other food manufacturing,,0.05
-2019,Canada,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,0.1
-2019,Canada,Salaried employees paid a fixed salary,Beverage manufacturing,,0.08
-2019,Canada,Salaried employees paid a fixed salary,Tobacco manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Textile mills,,0.01
-2019,Canada,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2019,Canada,Salaried employees paid a fixed salary,Fabric mills,,0.01
-2019,Canada,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
-2019,Canada,Salaried employees paid a fixed salary,Textile product mills,,
-2019,Canada,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2019,Canada,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,0
-2019,Canada,Salaried employees paid a fixed salary,Paper manufacturing,,0.07
-2019,Canada,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,0.03
-2019,Canada,Salaried employees paid a fixed salary,Printing and related support activities,,0.06
-2019,Canada,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Chemical manufacturing,,0.25
-2019,Canada,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2019,Canada,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
-2019,Canada,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,0.08
-2019,Canada,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,0.03
-2019,Canada,Salaried employees paid a fixed salary,Other chemical product manufacturing,,0.03
-2019,Canada,Salaried employees paid a fixed salary,Rubber product manufacturing,,0.02
-2019,Canada,Salaried employees paid a fixed salary,Durable goods,,1.44
-2019,Canada,Salaried employees paid a fixed salary,Wood product manufacturing,,0.07
-2019,Canada,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.02
-2019,Canada,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,0.02
-2019,Canada,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.03
-2019,Canada,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.07
-2019,Canada,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,0.04
-2019,Canada,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,0.02
-2019,Canada,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2019,Canada,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2019,Canada,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2019,Canada,Salaried employees paid a fixed salary,Foundries,,0.01
-2019,Canada,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.19
-2019,Canada,Salaried employees paid a fixed salary,Forging and stamping,,
-2019,Canada,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.07
-2019,Canada,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,0.02
-2019,Canada,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
-2019,Canada,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
-2019,Canada,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,0.03
-2019,Canada,Salaried employees paid a fixed salary,Machinery manufacturing,,0.22
-2019,Canada,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,0.05
-2019,Canada,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.02
-2019,Canada,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,0.02
-2019,Canada,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2019,Canada,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,0.05
-2019,Canada,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Canada,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.09
-2019,Canada,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,0.03
-2019,Canada,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.38
-2019,Canada,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,0.11
-2019,Canada,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Ship and boat building,,
-2019,Canada,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.04
-2019,Canada,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.03
-2019,Canada,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2019,Canada,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.11
-2019,Canada,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,0.04
-2019,Canada,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.07
-2019,Canada,Employees paid by the hour,Manufacturing,,6.47
-2019,Canada,Employees paid by the hour,Non-durable goods,,2.61
-2019,Canada,Employees paid by the hour,Food manufacturing,,1.06
-2019,Canada,Employees paid by the hour,Animal food manufacturing,,0.04
-2019,Canada,Employees paid by the hour,Grain and oilseed milling,,0.03
-2019,Canada,Employees paid by the hour,Sugar and confectionery product manufacturing,,
-2019,Canada,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,0.08
-2019,Canada,Employees paid by the hour,Dairy product manufacturing,,
-2019,Canada,Employees paid by the hour,Meat product manufacturing,,0.27
-2019,Canada,Employees paid by the hour,Seafood product preparation and packaging,,
-2019,Canada,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.23
-2019,Canada,Employees paid by the hour,Other food manufacturing,,0.15
-2019,Canada,Employees paid by the hour,Beverage and tobacco product manufacturing,,0.17
-2019,Canada,Employees paid by the hour,Beverage manufacturing,,0.16
-2019,Canada,Employees paid by the hour,Tobacco manufacturing,,
-2019,Canada,Employees paid by the hour,Cannabis product manufacturing,,
-2019,Canada,Employees paid by the hour,Textile mills,,0.03
-2019,Canada,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2019,Canada,Employees paid by the hour,Fabric mills,,0.02
-2019,Canada,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
-2019,Canada,Employees paid by the hour,Textile product mills,,
-2019,Canada,Employees paid by the hour,Clothing manufacturing,,0.08
-2019,Canada,Employees paid by the hour,Cut and sew clothing manufacturing,,
-2019,Canada,Employees paid by the hour,Leather and allied product manufacturing,,0.01
-2019,Canada,Employees paid by the hour,Leather and hide tanning and finishing,,
-2019,Canada,Employees paid by the hour,Footwear manufacturing,,
-2019,Canada,Employees paid by the hour,Other leather and allied product manufacturing,,0
-2019,Canada,Employees paid by the hour,Paper manufacturing,,0.23
-2019,Canada,Employees paid by the hour,"Pulp, paper and paperboard mills",,0.1
-2019,Canada,Employees paid by the hour,Printing and related support activities,,0.21
-2019,Canada,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2019,Canada,Employees paid by the hour,Chemical manufacturing,,0.28
-2019,Canada,Employees paid by the hour,Basic chemical manufacturing,,
-2019,Canada,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2019,Canada,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
-2019,Canada,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,0.09
-2019,Canada,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,0.06
-2019,Canada,Employees paid by the hour,Other chemical product manufacturing,,0.03
-2019,Canada,Employees paid by the hour,Rubber product manufacturing,,0.07
-2019,Canada,Employees paid by the hour,Durable goods,,3.86
-2019,Canada,Employees paid by the hour,Wood product manufacturing,,0.46
-2019,Canada,Employees paid by the hour,Sawmills and wood preservation,,0.18
-2019,Canada,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.09
-2019,Canada,Employees paid by the hour,Other wood product manufacturing,,0.19
-2019,Canada,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.24
-2019,Canada,Employees paid by the hour,Clay product and refractory manufacturing,,
-2019,Canada,Employees paid by the hour,Glass and glass product manufacturing,,
-2019,Canada,Employees paid by the hour,Cement and concrete product manufacturing,,0.14
-2019,Canada,Employees paid by the hour,Lime and gypsum product manufacturing,,
-2019,Canada,Employees paid by the hour,Other non-metallic mineral product manufacturing,,0.04
-2019,Canada,Employees paid by the hour,Primary metal manufacturing,,
-2019,Canada,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2019,Canada,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2019,Canada,Employees paid by the hour,Alumina and aluminum production and processing,,
-2019,Canada,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2019,Canada,Employees paid by the hour,Foundries,,0.04
-2019,Canada,Employees paid by the hour,Fabricated metal product manufacturing,,0.73
-2019,Canada,Employees paid by the hour,Forging and stamping,,
-2019,Canada,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2019,Canada,Employees paid by the hour,Architectural and structural metals manufacturing,,0.28
-2019,Canada,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,0.05
-2019,Canada,Employees paid by the hour,Hardware manufacturing,,
-2019,Canada,Employees paid by the hour,Spring and wire product manufacturing,,
-2019,Canada,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.16
-2019,Canada,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
-2019,Canada,Employees paid by the hour,Other fabricated metal product manufacturing,,0.1
-2019,Canada,Employees paid by the hour,Machinery manufacturing,,0.56
-2019,Canada,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,0.13
-2019,Canada,Employees paid by the hour,Industrial machinery manufacturing,,
-2019,Canada,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2019,Canada,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.07
-2019,Canada,Employees paid by the hour,Metalworking machinery manufacturing,,0.08
-2019,Canada,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2019,Canada,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2019,Canada,Employees paid by the hour,Computer and electronic product manufacturing,,
-2019,Canada,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
-2019,Canada,Employees paid by the hour,Communications equipment manufacturing,,
-2019,Canada,Employees paid by the hour,Audio and video equipment manufacturing,,
-2019,Canada,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,0.04
-2019,Canada,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Canada,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.11
-2019,Canada,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2019,Canada,Employees paid by the hour,Household appliance manufacturing,,
-2019,Canada,Employees paid by the hour,Electrical equipment manufacturing,,
-2019,Canada,Employees paid by the hour,Other electrical equipment and component manufacturing,,0.04
-2019,Canada,Employees paid by the hour,Transportation equipment manufacturing,,0.84
-2019,Canada,Employees paid by the hour,Motor vehicle manufacturing,,
-2019,Canada,Employees paid by the hour,Motor vehicle parts manufacturing,,0.32
-2019,Canada,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2019,Canada,Employees paid by the hour,Ship and boat building,,
-2019,Canada,Employees paid by the hour,Other transportation equipment manufacturing,,
-2019,Canada,Employees paid by the hour,Furniture and related product manufacturing,,0.33
-2019,Canada,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.2
-2019,Canada,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2019,Canada,Employees paid by the hour,Other furniture-related product manufacturing,,
-2019,Canada,Employees paid by the hour,Miscellaneous manufacturing,,0.2
-2019,Canada,Employees paid by the hour,Medical equipment and supplies manufacturing,,0.07
-2019,Canada,Employees paid by the hour,Other miscellaneous manufacturing,,0.13
-2019,Newfoundland and Labrador,All employees,Manufacturing,10,4.52
-2019,Newfoundland and Labrador,All employees,Non-durable goods,,3.38
-2019,Newfoundland and Labrador,All employees,Food manufacturing,,2.49
-2019,Newfoundland and Labrador,All employees,Seafood product preparation and packaging,,2.03
-2019,Newfoundland and Labrador,All employees,Cannabis product manufacturing,,
-2019,Newfoundland and Labrador,All employees,Durable goods,,1.14
-2019,Newfoundland and Labrador,All employees,Sawmills and wood preservation,,
-2019,Newfoundland and Labrador,All employees,Ship and boat building,,
-2019,Newfoundland and Labrador,All employees,Other miscellaneous manufacturing,,0.05
-2019,Newfoundland and Labrador,Salaried employees paid a fixed salary,Manufacturing,,1.03
-2019,Newfoundland and Labrador,Salaried employees paid a fixed salary,Non-durable goods,,
-2019,Newfoundland and Labrador,Salaried employees paid a fixed salary,Food manufacturing,,0.48
-2019,Newfoundland and Labrador,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,Newfoundland and Labrador,Salaried employees paid a fixed salary,Durable goods,,0.22
-2019,Newfoundland and Labrador,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2019,Newfoundland and Labrador,Employees paid by the hour,Manufacturing,,3.25
-2019,Newfoundland and Labrador,Employees paid by the hour,Non-durable goods,,
-2019,Newfoundland and Labrador,Employees paid by the hour,Food manufacturing,,1.88
-2019,Newfoundland and Labrador,Employees paid by the hour,Cannabis product manufacturing,,
-2019,Newfoundland and Labrador,Employees paid by the hour,Durable goods,,0.85
-2019,Newfoundland and Labrador,Employees paid by the hour,Other miscellaneous manufacturing,,
-2019,Prince Edward Island,All employees,Manufacturing,11,7.75
-2019,Prince Edward Island,All employees,Non-durable goods,,5.06
-2019,Prince Edward Island,All employees,Food manufacturing,,3.13
-2019,Prince Edward Island,All employees,Seafood product preparation and packaging,,
-2019,Prince Edward Island,All employees,Cannabis product manufacturing,,
-2019,Prince Edward Island,All employees,Printing and related support activities,,0.37
-2019,Prince Edward Island,All employees,Durable goods,,2.69
-2019,Prince Edward Island,Salaried employees paid a fixed salary,Manufacturing,,2.64
-2019,Prince Edward Island,Salaried employees paid a fixed salary,Food manufacturing,,
-2019,Prince Edward Island,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2019,Prince Edward Island,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,Prince Edward Island,Salaried employees paid a fixed salary,Durable goods,,1.08
-2019,Prince Edward Island,Employees paid by the hour,Manufacturing,,4.65
-2019,Prince Edward Island,Employees paid by the hour,Food manufacturing,,
-2019,Prince Edward Island,Employees paid by the hour,Seafood product preparation and packaging,,
-2019,Prince Edward Island,Employees paid by the hour,Cannabis product manufacturing,,
-2019,Prince Edward Island,Employees paid by the hour,Durable goods,,1.47
-2019,Nova Scotia,All employees,Manufacturing,12,7.5
-2019,Nova Scotia,All employees,Non-durable goods,,4.72
-2019,Nova Scotia,All employees,Food manufacturing,,2.3
-2019,Nova Scotia,All employees,Animal food manufacturing,,0.07
-2019,Nova Scotia,All employees,Dairy product manufacturing,,
-2019,Nova Scotia,All employees,Meat product manufacturing,,0.15
-2019,Nova Scotia,All employees,Seafood product preparation and packaging,,1.31
-2019,Nova Scotia,All employees,Bakeries and tortilla manufacturing,,0.22
-2019,Nova Scotia,All employees,Beverage and tobacco product manufacturing,,0.31
-2019,Nova Scotia,All employees,Cannabis product manufacturing,,
-2019,Nova Scotia,All employees,Fabric mills,,
-2019,Nova Scotia,All employees,Clothing manufacturing,,
-2019,Nova Scotia,All employees,Paper manufacturing,,0.25
-2019,Nova Scotia,All employees,"Pulp, paper and paperboard mills",,
-2019,Nova Scotia,All employees,Printing and related support activities,,0.17
-2019,Nova Scotia,All employees,Plastics and rubber products manufacturing,,1.17
-2019,Nova Scotia,All employees,Durable goods,,2.78
-2019,Nova Scotia,All employees,Wood product manufacturing,,0.37
-2019,Nova Scotia,All employees,Sawmills and wood preservation,,0.2
-2019,Nova Scotia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.05
-2019,Nova Scotia,All employees,Other wood product manufacturing,,0.12
-2019,Nova Scotia,All employees,Non-metallic mineral product manufacturing,,0.19
-2019,Nova Scotia,All employees,Cement and concrete product manufacturing,,0.14
-2019,Nova Scotia,All employees,Other non-metallic mineral product manufacturing,,0.03
-2019,Nova Scotia,All employees,Fabricated metal product manufacturing,,0.46
-2019,Nova Scotia,All employees,Spring and wire product manufacturing,,0.02
-2019,Nova Scotia,All employees,Machinery manufacturing,,0.23
-2019,Nova Scotia,All employees,Commercial and service industry machinery manufacturing,,0.07
-2019,Nova Scotia,All employees,Other general-purpose machinery manufacturing,,0.03
-2019,Nova Scotia,All employees,Transportation equipment manufacturing,,0.99
-2019,Nova Scotia,All employees,Aerospace product and parts manufacturing,,0.36
-2019,Nova Scotia,All employees,Ship and boat building,,0.58
-2019,Nova Scotia,All employees,Miscellaneous manufacturing,,0.13
-2019,Nova Scotia,All employees,Medical equipment and supplies manufacturing,,0.05
-2019,Nova Scotia,All employees,Other miscellaneous manufacturing,,0.08
-2019,Nova Scotia,Salaried employees paid a fixed salary,Manufacturing,,1.79
-2019,Nova Scotia,Salaried employees paid a fixed salary,Non-durable goods,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Food manufacturing,,0.6
-2019,Nova Scotia,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Paper manufacturing,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Printing and related support activities,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.26
-2019,Nova Scotia,Salaried employees paid a fixed salary,Durable goods,,0.61
-2019,Nova Scotia,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2019,Nova Scotia,Salaried employees paid a fixed salary,Ship and boat building,,
-2019,Nova Scotia,Employees paid by the hour,Manufacturing,,5.28
-2019,Nova Scotia,Employees paid by the hour,Non-durable goods,,
-2019,Nova Scotia,Employees paid by the hour,Food manufacturing,,1.51
-2019,Nova Scotia,Employees paid by the hour,Animal food manufacturing,,
-2019,Nova Scotia,Employees paid by the hour,Seafood product preparation and packaging,,
-2019,Nova Scotia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2019,Nova Scotia,Employees paid by the hour,Cannabis product manufacturing,,
-2019,Nova Scotia,Employees paid by the hour,Paper manufacturing,,
-2019,Nova Scotia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2019,Nova Scotia,Employees paid by the hour,Printing and related support activities,,
-2019,Nova Scotia,Employees paid by the hour,Plastics and rubber products manufacturing,,0.88
-2019,Nova Scotia,Employees paid by the hour,Durable goods,,2.03
-2019,Nova Scotia,Employees paid by the hour,Wood product manufacturing,,
-2019,Nova Scotia,Employees paid by the hour,Sawmills and wood preservation,,
-2019,Nova Scotia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2019,Nova Scotia,Employees paid by the hour,Cement and concrete product manufacturing,,
-2019,Nova Scotia,Employees paid by the hour,Fabricated metal product manufacturing,,
-2019,Nova Scotia,Employees paid by the hour,Machinery manufacturing,,
-2019,Nova Scotia,Employees paid by the hour,Transportation equipment manufacturing,,
-2019,Nova Scotia,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2019,Nova Scotia,Employees paid by the hour,Ship and boat building,,
-2019,New Brunswick,All employees,Manufacturing,13,9.71
-2019,New Brunswick,All employees,Non-durable goods,,5.54
-2019,New Brunswick,All employees,Food manufacturing,,3.44
-2019,New Brunswick,All employees,Seafood product preparation and packaging,,1.43
-2019,New Brunswick,All employees,Beverage and tobacco product manufacturing,,0.35
-2019,New Brunswick,All employees,Cannabis product manufacturing,,
-2019,New Brunswick,All employees,"Fibre, yarn and thread mills",,
-2019,New Brunswick,All employees,Paper manufacturing,,0.84
-2019,New Brunswick,All employees,"Pulp, paper and paperboard mills",,0.53
-2019,New Brunswick,All employees,Converted paper product manufacturing,,0.31
-2019,New Brunswick,All employees,Printing and related support activities,,0.08
-2019,New Brunswick,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.1
-2019,New Brunswick,All employees,Durable goods,,4.17
-2019,New Brunswick,All employees,Wood product manufacturing,,1.55
-2019,New Brunswick,All employees,Sawmills and wood preservation,,0.83
-2019,New Brunswick,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.22
-2019,New Brunswick,All employees,Other wood product manufacturing,,0.5
-2019,New Brunswick,All employees,Non-metallic mineral product manufacturing,,0.28
-2019,New Brunswick,All employees,Other non-metallic mineral product manufacturing,,0.1
-2019,New Brunswick,All employees,Fabricated metal product manufacturing,,0.81
-2019,New Brunswick,All employees,Architectural and structural metals manufacturing,,0.46
-2019,New Brunswick,All employees,Machinery manufacturing,,0.38
-2019,New Brunswick,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.13
-2019,New Brunswick,All employees,Other general-purpose machinery manufacturing,,0.09
-2019,New Brunswick,All employees,Computer and electronic product manufacturing,,
-2019,New Brunswick,All employees,Furniture and related product manufacturing,,0.23
-2019,New Brunswick,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.22
-2019,New Brunswick,All employees,Miscellaneous manufacturing,,0.31
-2019,New Brunswick,All employees,Medical equipment and supplies manufacturing,,0.04
-2019,New Brunswick,All employees,Other miscellaneous manufacturing,,0.28
-2019,New Brunswick,Salaried employees paid a fixed salary,Manufacturing,,2.1
-2019,New Brunswick,Salaried employees paid a fixed salary,Non-durable goods,,1.27
-2019,New Brunswick,Salaried employees paid a fixed salary,Food manufacturing,,0.74
-2019,New Brunswick,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,New Brunswick,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2019,New Brunswick,Salaried employees paid a fixed salary,Paper manufacturing,,
-2019,New Brunswick,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2019,New Brunswick,Salaried employees paid a fixed salary,Durable goods,,0.82
-2019,New Brunswick,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2019,New Brunswick,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2019,New Brunswick,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2019,New Brunswick,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2019,New Brunswick,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.18
-2019,New Brunswick,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2019,New Brunswick,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2019,New Brunswick,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2019,New Brunswick,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2019,New Brunswick,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2019,New Brunswick,Employees paid by the hour,Manufacturing,,7.27
-2019,New Brunswick,Employees paid by the hour,Non-durable goods,,4.09
-2019,New Brunswick,Employees paid by the hour,Food manufacturing,,2.58
-2019,New Brunswick,Employees paid by the hour,Cannabis product manufacturing,,
-2019,New Brunswick,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2019,New Brunswick,Employees paid by the hour,Paper manufacturing,,
-2019,New Brunswick,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2019,New Brunswick,Employees paid by the hour,Durable goods,,3.19
-2019,New Brunswick,Employees paid by the hour,Wood product manufacturing,,
-2019,New Brunswick,Employees paid by the hour,Sawmills and wood preservation,,
-2019,New Brunswick,Employees paid by the hour,Other wood product manufacturing,,
-2019,New Brunswick,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2019,New Brunswick,Employees paid by the hour,Fabricated metal product manufacturing,,0.58
-2019,New Brunswick,Employees paid by the hour,Machinery manufacturing,,
-2019,New Brunswick,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2019,New Brunswick,Employees paid by the hour,Computer and electronic product manufacturing,,
-2019,New Brunswick,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2019,New Brunswick,Employees paid by the hour,Other miscellaneous manufacturing,,
-2019,Quebec,All employees,Manufacturing,24,11.8
-2019,Quebec,All employees,Non-durable goods,,4.82
-2019,Quebec,All employees,Food manufacturing,,1.74
-2019,Quebec,All employees,Animal food manufacturing,,0.07
-2019,Quebec,All employees,Grain and oilseed milling,,0.04
-2019,Quebec,All employees,Sugar and confectionery product manufacturing,,0.1
-2019,Quebec,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.13
-2019,Quebec,All employees,Dairy product manufacturing,,0.27
-2019,Quebec,All employees,Meat product manufacturing,,0.49
-2019,Quebec,All employees,Seafood product preparation and packaging,,0.04
-2019,Quebec,All employees,Bakeries and tortilla manufacturing,,0.31
-2019,Quebec,All employees,Other food manufacturing,,0.29
-2019,Quebec,All employees,Beverage and tobacco product manufacturing,,0.25
-2019,Quebec,All employees,Cannabis product manufacturing,,
-2019,Quebec,All employees,Textile mills,,0.08
-2019,Quebec,All employees,"Fibre, yarn and thread mills",,0.01
-2019,Quebec,All employees,Fabric mills,,0.06
-2019,Quebec,All employees,Textile and fabric finishing and fabric coating,,0.01
-2019,Quebec,All employees,Textile product mills,,0.08
-2019,Quebec,All employees,Textile furnishings mills,,0.03
-2019,Quebec,All employees,Other textile product mills,,0.05
-2019,Quebec,All employees,Clothing manufacturing,,0.27
-2019,Quebec,All employees,Clothing knitting mills,,0.02
-2019,Quebec,All employees,Cut and sew clothing manufacturing,,0.22
-2019,Quebec,All employees,Clothing accessories and other clothing manufacturing,,0.02
-2019,Quebec,All employees,Leather and allied product manufacturing,,0.03
-2019,Quebec,All employees,Leather and hide tanning and finishing,,0
-2019,Quebec,All employees,Footwear manufacturing,,0.03
-2019,Quebec,All employees,Other leather and allied product manufacturing,,0.01
-2019,Quebec,All employees,Paper manufacturing,,0.54
-2019,Quebec,All employees,"Pulp, paper and paperboard mills",,0.24
-2019,Quebec,All employees,Converted paper product manufacturing,,0.3
-2019,Quebec,All employees,Printing and related support activities,,0.33
-2019,Quebec,All employees,Petroleum and coal product manufacturing,,0.11
-2019,Quebec,All employees,Chemical manufacturing,,0.67
-2019,Quebec,All employees,Basic chemical manufacturing,,0.08
-2019,Quebec,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.02
-2019,Quebec,All employees,Pharmaceutical and medicine manufacturing,,0.24
-2019,Quebec,All employees,"Paint, coating and adhesive manufacturing",,0.07
-2019,Quebec,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.12
-2019,Quebec,All employees,Other chemical product manufacturing,,0.09
-2019,Quebec,All employees,Plastics and rubber products manufacturing,,0.74
-2019,Quebec,All employees,Plastic product manufacturing,,0.62
-2019,Quebec,All employees,Rubber product manufacturing,,0.12
-2019,Quebec,All employees,Durable goods,,6.97
-2019,Quebec,All employees,Wood product manufacturing,,0.78
-2019,Quebec,All employees,Sawmills and wood preservation,,0.25
-2019,Quebec,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.15
-2019,Quebec,All employees,Other wood product manufacturing,,0.38
-2019,Quebec,All employees,Non-metallic mineral product manufacturing,,0.39
-2019,Quebec,All employees,Clay product and refractory manufacturing,,0.01
-2019,Quebec,All employees,Glass and glass product manufacturing,,0.07
-2019,Quebec,All employees,Cement and concrete product manufacturing,,0.21
-2019,Quebec,All employees,Lime and gypsum product manufacturing,,0.02
-2019,Quebec,All employees,Other non-metallic mineral product manufacturing,,0.07
-2019,Quebec,All employees,Primary metal manufacturing,,0.43
-2019,Quebec,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.04
-2019,Quebec,All employees,Steel product manufacturing from purchased steel,,0.03
-2019,Quebec,All employees,Alumina and aluminum production and processing,,0.15
-2019,Quebec,All employees,Non-ferrous metal (except aluminum) production and processing,,0.1
-2019,Quebec,All employees,Foundries,,0.1
-2019,Quebec,All employees,Fabricated metal product manufacturing,,1.23
-2019,Quebec,All employees,Forging and stamping,,0.06
-2019,Quebec,All employees,Cutlery and hand tool manufacturing,,0.02
-2019,Quebec,All employees,Architectural and structural metals manufacturing,,0.5
-2019,Quebec,All employees,"Boiler, tank and shipping container manufacturing",,0.06
-2019,Quebec,All employees,Hardware manufacturing,,0.03
-2019,Quebec,All employees,Spring and wire product manufacturing,,0.03
-2019,Quebec,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.26
-2019,Quebec,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.08
-2019,Quebec,All employees,Other fabricated metal product manufacturing,,0.19
-2019,Quebec,All employees,Machinery manufacturing,,0.96
-2019,Quebec,All employees,"Agricultural, construction and mining machinery manufacturing",,0.13
-2019,Quebec,All employees,Industrial machinery manufacturing,,0.17
-2019,Quebec,All employees,Commercial and service industry machinery manufacturing,,0.2
-2019,Quebec,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.16
-2019,Quebec,All employees,Metalworking machinery manufacturing,,0.05
-2019,Quebec,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.05
-2019,Quebec,All employees,Other general-purpose machinery manufacturing,,0.19
-2019,Quebec,All employees,Computer and electronic product manufacturing,,0.41
-2019,Quebec,All employees,Communications equipment manufacturing,,0.07
-2019,Quebec,All employees,Audio and video equipment manufacturing,,0.01
-2019,Quebec,All employees,Semiconductor and other electronic component manufacturing,,0.14
-2019,Quebec,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.18
-2019,Quebec,All employees,Manufacturing and reproducing magnetic and optical media,,0
-2019,Quebec,All employees,"Electrical equipment, appliance and component manufacturing",,0.31
-2019,Quebec,All employees,Electric lighting equipment manufacturing,,0.08
-2019,Quebec,All employees,Household appliance manufacturing,,0.02
-2019,Quebec,All employees,Electrical equipment manufacturing,,0.11
-2019,Quebec,All employees,Other electrical equipment and component manufacturing,,0.1
-2019,Quebec,All employees,Transportation equipment manufacturing,,1.4
-2019,Quebec,All employees,Motor vehicle body and trailer manufacturing,,0.14
-2019,Quebec,All employees,Motor vehicle parts manufacturing,,0.14
-2019,Quebec,All employees,Aerospace product and parts manufacturing,,0.76
-2019,Quebec,All employees,Other transportation equipment manufacturing,,0.17
-2019,Quebec,All employees,Furniture and related product manufacturing,,0.62
-2019,Quebec,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.43
-2019,Quebec,All employees,Office furniture (including fixtures) manufacturing,,0.15
-2019,Quebec,All employees,Other furniture-related product manufacturing,,0.04
-2019,Quebec,All employees,Miscellaneous manufacturing,,0.45
-2019,Quebec,All employees,Medical equipment and supplies manufacturing,,0.14
-2019,Quebec,All employees,Other miscellaneous manufacturing,,0.31
-2019,Quebec,Salaried employees paid a fixed salary,Manufacturing,,3.05
-2019,Quebec,Salaried employees paid a fixed salary,Non-durable goods,,1.09
-2019,Quebec,Salaried employees paid a fixed salary,Food manufacturing,,0.32
-2019,Quebec,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2019,Quebec,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Other food manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Textile mills,,0.02
-2019,Quebec,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2019,Quebec,Salaried employees paid a fixed salary,Fabric mills,,0.01
-2019,Quebec,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
-2019,Quebec,Salaried employees paid a fixed salary,Textile product mills,,
-2019,Quebec,Salaried employees paid a fixed salary,Textile furnishings mills,,
-2019,Quebec,Salaried employees paid a fixed salary,Other textile product mills,,
-2019,Quebec,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Clothing knitting mills,,
-2019,Quebec,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Clothing accessories and other clothing manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2019,Quebec,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Paper manufacturing,,0.11
-2019,Quebec,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2019,Quebec,Salaried employees paid a fixed salary,Printing and related support activities,,0.06
-2019,Quebec,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Chemical manufacturing,,0.26
-2019,Quebec,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2019,Quebec,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
-2019,Quebec,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2019,Quebec,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.13
-2019,Quebec,Salaried employees paid a fixed salary,Plastic product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Durable goods,,1.97
-2019,Quebec,Salaried employees paid a fixed salary,Wood product manufacturing,,0.1
-2019,Quebec,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2019,Quebec,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2019,Quebec,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.08
-2019,Quebec,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2019,Quebec,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2019,Quebec,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2019,Quebec,Salaried employees paid a fixed salary,Foundries,,
-2019,Quebec,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.2
-2019,Quebec,Salaried employees paid a fixed salary,Forging and stamping,,
-2019,Quebec,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2019,Quebec,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Machinery manufacturing,,0.31
-2019,Quebec,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2019,Quebec,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2019,Quebec,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2019,Quebec,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Quebec,Salaried employees paid a fixed salary,Manufacturing and reproducing magnetic and optical media,,
-2019,Quebec,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2019,Quebec,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.66
-2019,Quebec,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,0.5
-2019,Quebec,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.06
-2019,Quebec,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.04
-2019,Quebec,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.13
-2019,Quebec,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2019,Quebec,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2019,Quebec,Employees paid by the hour,Manufacturing,,8.26
-2019,Quebec,Employees paid by the hour,Non-durable goods,,3.55
-2019,Quebec,Employees paid by the hour,Food manufacturing,,1.35
-2019,Quebec,Employees paid by the hour,Animal food manufacturing,,
-2019,Quebec,Employees paid by the hour,Grain and oilseed milling,,
-2019,Quebec,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2019,Quebec,Employees paid by the hour,Dairy product manufacturing,,
-2019,Quebec,Employees paid by the hour,Meat product manufacturing,,
-2019,Quebec,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2019,Quebec,Employees paid by the hour,Other food manufacturing,,
-2019,Quebec,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2019,Quebec,Employees paid by the hour,Cannabis product manufacturing,,
-2019,Quebec,Employees paid by the hour,Textile mills,,0.06
-2019,Quebec,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2019,Quebec,Employees paid by the hour,Fabric mills,,0.04
-2019,Quebec,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
-2019,Quebec,Employees paid by the hour,Textile product mills,,
-2019,Quebec,Employees paid by the hour,Textile furnishings mills,,
-2019,Quebec,Employees paid by the hour,Other textile product mills,,
-2019,Quebec,Employees paid by the hour,Clothing manufacturing,,
-2019,Quebec,Employees paid by the hour,Clothing knitting mills,,
-2019,Quebec,Employees paid by the hour,Cut and sew clothing manufacturing,,
-2019,Quebec,Employees paid by the hour,Clothing accessories and other clothing manufacturing,,
-2019,Quebec,Employees paid by the hour,Leather and hide tanning and finishing,,
-2019,Quebec,Employees paid by the hour,Footwear manufacturing,,
-2019,Quebec,Employees paid by the hour,Other leather and allied product manufacturing,,
-2019,Quebec,Employees paid by the hour,Paper manufacturing,,0.42
-2019,Quebec,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2019,Quebec,Employees paid by the hour,Printing and related support activities,,0.23
-2019,Quebec,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2019,Quebec,Employees paid by the hour,Chemical manufacturing,,0.38
-2019,Quebec,Employees paid by the hour,Basic chemical manufacturing,,
-2019,Quebec,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2019,Quebec,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2019,Quebec,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
-2019,Quebec,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2019,Quebec,Employees paid by the hour,Other chemical product manufacturing,,
-2019,Quebec,Employees paid by the hour,Plastics and rubber products manufacturing,,0.59
-2019,Quebec,Employees paid by the hour,Plastic product manufacturing,,
-2019,Quebec,Employees paid by the hour,Rubber product manufacturing,,
-2019,Quebec,Employees paid by the hour,Durable goods,,4.71
-2019,Quebec,Employees paid by the hour,Wood product manufacturing,,0.65
-2019,Quebec,Employees paid by the hour,Sawmills and wood preservation,,
-2019,Quebec,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.11
-2019,Quebec,Employees paid by the hour,Other wood product manufacturing,,0.33
-2019,Quebec,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.3
-2019,Quebec,Employees paid by the hour,Clay product and refractory manufacturing,,
-2019,Quebec,Employees paid by the hour,Glass and glass product manufacturing,,
-2019,Quebec,Employees paid by the hour,Cement and concrete product manufacturing,,
-2019,Quebec,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2019,Quebec,Employees paid by the hour,Primary metal manufacturing,,
-2019,Quebec,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2019,Quebec,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2019,Quebec,Employees paid by the hour,Alumina and aluminum production and processing,,
-2019,Quebec,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2019,Quebec,Employees paid by the hour,Foundries,,
-2019,Quebec,Employees paid by the hour,Fabricated metal product manufacturing,,0.98
-2019,Quebec,Employees paid by the hour,Forging and stamping,,
-2019,Quebec,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2019,Quebec,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2019,Quebec,Employees paid by the hour,Hardware manufacturing,,
-2019,Quebec,Employees paid by the hour,Spring and wire product manufacturing,,
-2019,Quebec,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2019,Quebec,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2019,Quebec,Employees paid by the hour,Machinery manufacturing,,0.59
-2019,Quebec,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2019,Quebec,Employees paid by the hour,Industrial machinery manufacturing,,
-2019,Quebec,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2019,Quebec,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2019,Quebec,Employees paid by the hour,Metalworking machinery manufacturing,,
-2019,Quebec,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2019,Quebec,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2019,Quebec,Employees paid by the hour,Communications equipment manufacturing,,
-2019,Quebec,Employees paid by the hour,Audio and video equipment manufacturing,,
-2019,Quebec,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2019,Quebec,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Quebec,Employees paid by the hour,Manufacturing and reproducing magnetic and optical media,,
-2019,Quebec,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2019,Quebec,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2019,Quebec,Employees paid by the hour,Household appliance manufacturing,,
-2019,Quebec,Employees paid by the hour,Electrical equipment manufacturing,,
-2019,Quebec,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2019,Quebec,Employees paid by the hour,Transportation equipment manufacturing,,0.72
-2019,Quebec,Employees paid by the hour,Aerospace product and parts manufacturing,,0.25
-2019,Quebec,Employees paid by the hour,Other transportation equipment manufacturing,,
-2019,Quebec,Employees paid by the hour,Furniture and related product manufacturing,,0.53
-2019,Quebec,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.36
-2019,Quebec,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2019,Quebec,Employees paid by the hour,Miscellaneous manufacturing,,0.28
-2019,Quebec,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2019,Quebec,Employees paid by the hour,Other miscellaneous manufacturing,,
-2019,Ontario,All employees,Manufacturing,35,10.47
-2019,Ontario,All employees,Non-durable goods,,3.93
-2019,Ontario,All employees,Food manufacturing,,1.31
-2019,Ontario,All employees,Animal food manufacturing,,0.06
-2019,Ontario,All employees,Grain and oilseed milling,,0.05
-2019,Ontario,All employees,Sugar and confectionery product manufacturing,,0.06
-2019,Ontario,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.09
-2019,Ontario,All employees,Dairy product manufacturing,,0.15
-2019,Ontario,All employees,Meat product manufacturing,,0.32
-2019,Ontario,All employees,Seafood product preparation and packaging,,0.01
-2019,Ontario,All employees,Bakeries and tortilla manufacturing,,0.36
-2019,Ontario,All employees,Other food manufacturing,,0.21
-2019,Ontario,All employees,Beverage and tobacco product manufacturing,,0.31
-2019,Ontario,All employees,Cannabis product manufacturing,,
-2019,Ontario,All employees,Textile mills,,0.04
-2019,Ontario,All employees,"Fibre, yarn and thread mills",,0
-2019,Ontario,All employees,Fabric mills,,0.02
-2019,Ontario,All employees,Textile and fabric finishing and fabric coating,,0.02
-2019,Ontario,All employees,Textile product mills,,0.06
-2019,Ontario,All employees,Textile furnishings mills,,0.02
-2019,Ontario,All employees,Other textile product mills,,0.04
-2019,Ontario,All employees,Clothing manufacturing,,0.08
-2019,Ontario,All employees,Clothing knitting mills,,
-2019,Ontario,All employees,Cut and sew clothing manufacturing,,0.06
-2019,Ontario,All employees,Clothing accessories and other clothing manufacturing,,
-2019,Ontario,All employees,Leather and allied product manufacturing,,0.01
-2019,Ontario,All employees,Leather and hide tanning and finishing,,0
-2019,Ontario,All employees,Footwear manufacturing,,0
-2019,Ontario,All employees,Other leather and allied product manufacturing,,0.01
-2019,Ontario,All employees,Paper manufacturing,,0.25
-2019,Ontario,All employees,"Pulp, paper and paperboard mills",,0.06
-2019,Ontario,All employees,Converted paper product manufacturing,,0.2
-2019,Ontario,All employees,Printing and related support activities,,0.35
-2019,Ontario,All employees,Petroleum and coal product manufacturing,,0.1
-2019,Ontario,All employees,Chemical manufacturing,,0.67
-2019,Ontario,All employees,Basic chemical manufacturing,,0.09
-2019,Ontario,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.04
-2019,Ontario,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.02
-2019,Ontario,All employees,Pharmaceutical and medicine manufacturing,,0.24
-2019,Ontario,All employees,"Paint, coating and adhesive manufacturing",,0.06
-2019,Ontario,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.15
-2019,Ontario,All employees,Other chemical product manufacturing,,0.08
-2019,Ontario,All employees,Plastics and rubber products manufacturing,,0.74
-2019,Ontario,All employees,Plastic product manufacturing,,0.65
-2019,Ontario,All employees,Rubber product manufacturing,,0.08
-2019,Ontario,All employees,Durable goods,,6.54
-2019,Ontario,All employees,Wood product manufacturing,,0.26
-2019,Ontario,All employees,Sawmills and wood preservation,,0.05
-2019,Ontario,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.05
-2019,Ontario,All employees,Other wood product manufacturing,,0.15
-2019,Ontario,All employees,Non-metallic mineral product manufacturing,,0.33
-2019,Ontario,All employees,Clay product and refractory manufacturing,,0.02
-2019,Ontario,All employees,Glass and glass product manufacturing,,0.04
-2019,Ontario,All employees,Cement and concrete product manufacturing,,0.19
-2019,Ontario,All employees,Lime and gypsum product manufacturing,,0.01
-2019,Ontario,All employees,Other non-metallic mineral product manufacturing,,0.06
-2019,Ontario,All employees,Primary metal manufacturing,,0.44
-2019,Ontario,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.2
-2019,Ontario,All employees,Steel product manufacturing from purchased steel,,0.07
-2019,Ontario,All employees,Alumina and aluminum production and processing,,0.04
-2019,Ontario,All employees,Non-ferrous metal (except aluminum) production and processing,,0.06
-2019,Ontario,All employees,Foundries,,0.06
-2019,Ontario,All employees,Fabricated metal product manufacturing,,1.06
-2019,Ontario,All employees,Forging and stamping,,0.05
-2019,Ontario,All employees,Cutlery and hand tool manufacturing,,0.03
-2019,Ontario,All employees,Architectural and structural metals manufacturing,,0.34
-2019,Ontario,All employees,"Boiler, tank and shipping container manufacturing",,0.06
-2019,Ontario,All employees,Hardware manufacturing,,0.07
-2019,Ontario,All employees,Spring and wire product manufacturing,,0.03
-2019,Ontario,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.23
-2019,Ontario,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.09
-2019,Ontario,All employees,Other fabricated metal product manufacturing,,0.16
-2019,Ontario,All employees,Machinery manufacturing,,0.97
-2019,Ontario,All employees,"Agricultural, construction and mining machinery manufacturing",,0.14
-2019,Ontario,All employees,Industrial machinery manufacturing,,0.12
-2019,Ontario,All employees,Commercial and service industry machinery manufacturing,,0.11
-2019,Ontario,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.09
-2019,Ontario,All employees,Metalworking machinery manufacturing,,0.24
-2019,Ontario,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.02
-2019,Ontario,All employees,Other general-purpose machinery manufacturing,,0.25
-2019,Ontario,All employees,Computer and electronic product manufacturing,,0.45
-2019,Ontario,All employees,Computer and peripheral equipment manufacturing,,0.06
-2019,Ontario,All employees,Communications equipment manufacturing,,0.1
-2019,Ontario,All employees,Audio and video equipment manufacturing,,0.01
-2019,Ontario,All employees,Semiconductor and other electronic component manufacturing,,0.12
-2019,Ontario,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.15
-2019,Ontario,All employees,"Electrical equipment, appliance and component manufacturing",,0.26
-2019,Ontario,All employees,Electric lighting equipment manufacturing,,0.03
-2019,Ontario,All employees,Household appliance manufacturing,,0.02
-2019,Ontario,All employees,Electrical equipment manufacturing,,0.11
-2019,Ontario,All employees,Other electrical equipment and component manufacturing,,0.1
-2019,Ontario,All employees,Transportation equipment manufacturing,,1.97
-2019,Ontario,All employees,Motor vehicle manufacturing,,0.57
-2019,Ontario,All employees,Motor vehicle body and trailer manufacturing,,0.07
-2019,Ontario,All employees,Motor vehicle parts manufacturing,,1
-2019,Ontario,All employees,Aerospace product and parts manufacturing,,0.21
-2019,Ontario,All employees,Railroad rolling stock manufacturing,,0.05
-2019,Ontario,All employees,Furniture and related product manufacturing,,0.43
-2019,Ontario,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.2
-2019,Ontario,All employees,Office furniture (including fixtures) manufacturing,,0.2
-2019,Ontario,All employees,Other furniture-related product manufacturing,,0.03
-2019,Ontario,All employees,Miscellaneous manufacturing,,0.39
-2019,Ontario,All employees,Medical equipment and supplies manufacturing,,0.15
-2019,Ontario,All employees,Other miscellaneous manufacturing,,0.24
-2019,Ontario,Salaried employees paid a fixed salary,Manufacturing,,2.9
-2019,Ontario,Salaried employees paid a fixed salary,Non-durable goods,,1.19
-2019,Ontario,Salaried employees paid a fixed salary,Food manufacturing,,0.36
-2019,Ontario,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2019,Ontario,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.08
-2019,Ontario,Salaried employees paid a fixed salary,Other food manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Textile mills,,0.01
-2019,Ontario,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2019,Ontario,Salaried employees paid a fixed salary,Fabric mills,,0.01
-2019,Ontario,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
-2019,Ontario,Salaried employees paid a fixed salary,Textile furnishings mills,,
-2019,Ontario,Salaried employees paid a fixed salary,Other textile product mills,,
-2019,Ontario,Salaried employees paid a fixed salary,Clothing manufacturing,,0.02
-2019,Ontario,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2019,Ontario,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Paper manufacturing,,0.07
-2019,Ontario,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2019,Ontario,Salaried employees paid a fixed salary,Printing and related support activities,,0.08
-2019,Ontario,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Chemical manufacturing,,0.32
-2019,Ontario,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2019,Ontario,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2019,Ontario,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
-2019,Ontario,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2019,Ontario,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.14
-2019,Ontario,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.12
-2019,Ontario,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Durable goods,,1.71
-2019,Ontario,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2019,Ontario,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2019,Ontario,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.02
-2019,Ontario,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.08
-2019,Ontario,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2019,Ontario,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2019,Ontario,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2019,Ontario,Salaried employees paid a fixed salary,Foundries,,
-2019,Ontario,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.23
-2019,Ontario,Salaried employees paid a fixed salary,Forging and stamping,,
-2019,Ontario,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2019,Ontario,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.03
-2019,Ontario,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
-2019,Ontario,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Machinery manufacturing,,0.22
-2019,Ontario,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2019,Ontario,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2019,Ontario,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2019,Ontario,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Ontario,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2019,Ontario,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,0.25
-2019,Ontario,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Railroad rolling stock manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.14
-2019,Ontario,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2019,Ontario,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2019,Ontario,Employees paid by the hour,Manufacturing,,7.15
-2019,Ontario,Employees paid by the hour,Non-durable goods,,2.57
-2019,Ontario,Employees paid by the hour,Food manufacturing,,0.88
-2019,Ontario,Employees paid by the hour,Animal food manufacturing,,
-2019,Ontario,Employees paid by the hour,Grain and oilseed milling,,
-2019,Ontario,Employees paid by the hour,Sugar and confectionery product manufacturing,,
-2019,Ontario,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2019,Ontario,Employees paid by the hour,Dairy product manufacturing,,
-2019,Ontario,Employees paid by the hour,Meat product manufacturing,,
-2019,Ontario,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.27
-2019,Ontario,Employees paid by the hour,Other food manufacturing,,
-2019,Ontario,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2019,Ontario,Employees paid by the hour,Cannabis product manufacturing,,
-2019,Ontario,Employees paid by the hour,Textile mills,,0.03
-2019,Ontario,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2019,Ontario,Employees paid by the hour,Fabric mills,,0.02
-2019,Ontario,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
-2019,Ontario,Employees paid by the hour,Textile furnishings mills,,
-2019,Ontario,Employees paid by the hour,Other textile product mills,,
-2019,Ontario,Employees paid by the hour,Clothing manufacturing,,0.05
-2019,Ontario,Employees paid by the hour,Leather and allied product manufacturing,,
-2019,Ontario,Employees paid by the hour,Leather and hide tanning and finishing,,
-2019,Ontario,Employees paid by the hour,Footwear manufacturing,,
-2019,Ontario,Employees paid by the hour,Other leather and allied product manufacturing,,
-2019,Ontario,Employees paid by the hour,Paper manufacturing,,0.18
-2019,Ontario,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2019,Ontario,Employees paid by the hour,Printing and related support activities,,0.25
-2019,Ontario,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2019,Ontario,Employees paid by the hour,Chemical manufacturing,,0.33
-2019,Ontario,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2019,Ontario,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2019,Ontario,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
-2019,Ontario,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2019,Ontario,Employees paid by the hour,Other chemical product manufacturing,,
-2019,Ontario,Employees paid by the hour,Plastics and rubber products manufacturing,,0.57
-2019,Ontario,Employees paid by the hour,Plastic product manufacturing,,0.51
-2019,Ontario,Employees paid by the hour,Rubber product manufacturing,,
-2019,Ontario,Employees paid by the hour,Durable goods,,4.58
-2019,Ontario,Employees paid by the hour,Wood product manufacturing,,
-2019,Ontario,Employees paid by the hour,Sawmills and wood preservation,,
-2019,Ontario,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2019,Ontario,Employees paid by the hour,Other wood product manufacturing,,0.12
-2019,Ontario,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.24
-2019,Ontario,Employees paid by the hour,Clay product and refractory manufacturing,,
-2019,Ontario,Employees paid by the hour,Glass and glass product manufacturing,,
-2019,Ontario,Employees paid by the hour,Cement and concrete product manufacturing,,
-2019,Ontario,Employees paid by the hour,Lime and gypsum product manufacturing,,
-2019,Ontario,Employees paid by the hour,Primary metal manufacturing,,
-2019,Ontario,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2019,Ontario,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2019,Ontario,Employees paid by the hour,Alumina and aluminum production and processing,,
-2019,Ontario,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2019,Ontario,Employees paid by the hour,Foundries,,
-2019,Ontario,Employees paid by the hour,Fabricated metal product manufacturing,,0.78
-2019,Ontario,Employees paid by the hour,Forging and stamping,,
-2019,Ontario,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2019,Ontario,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2019,Ontario,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2019,Ontario,Employees paid by the hour,Hardware manufacturing,,
-2019,Ontario,Employees paid by the hour,Spring and wire product manufacturing,,
-2019,Ontario,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.17
-2019,Ontario,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
-2019,Ontario,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2019,Ontario,Employees paid by the hour,Machinery manufacturing,,0.68
-2019,Ontario,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2019,Ontario,Employees paid by the hour,Industrial machinery manufacturing,,
-2019,Ontario,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2019,Ontario,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2019,Ontario,Employees paid by the hour,Metalworking machinery manufacturing,,
-2019,Ontario,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2019,Ontario,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2019,Ontario,Employees paid by the hour,Computer and electronic product manufacturing,,
-2019,Ontario,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
-2019,Ontario,Employees paid by the hour,Communications equipment manufacturing,,
-2019,Ontario,Employees paid by the hour,Audio and video equipment manufacturing,,
-2019,Ontario,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2019,Ontario,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Ontario,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2019,Ontario,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2019,Ontario,Employees paid by the hour,Household appliance manufacturing,,
-2019,Ontario,Employees paid by the hour,Electrical equipment manufacturing,,
-2019,Ontario,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2019,Ontario,Employees paid by the hour,Transportation equipment manufacturing,,
-2019,Ontario,Employees paid by the hour,Motor vehicle manufacturing,,
-2019,Ontario,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2019,Ontario,Employees paid by the hour,Motor vehicle parts manufacturing,,0.74
-2019,Ontario,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2019,Ontario,Employees paid by the hour,Railroad rolling stock manufacturing,,
-2019,Ontario,Employees paid by the hour,Furniture and related product manufacturing,,0.36
-2019,Ontario,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.17
-2019,Ontario,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2019,Ontario,Employees paid by the hour,Miscellaneous manufacturing,,0.22
-2019,Ontario,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2019,Ontario,Employees paid by the hour,Other miscellaneous manufacturing,,
-2019,Manitoba,All employees,Manufacturing,46,9.3
-2019,Manitoba,All employees,Non-durable goods,,4.04
-2019,Manitoba,All employees,Food manufacturing,,1.76
-2019,Manitoba,All employees,Animal food manufacturing,,0.07
-2019,Manitoba,All employees,Meat product manufacturing,,0.86
-2019,Manitoba,All employees,Bakeries and tortilla manufacturing,,0.23
-2019,Manitoba,All employees,Beverage and tobacco product manufacturing,,0.18
-2019,Manitoba,All employees,Cannabis product manufacturing,,
-2019,Manitoba,All employees,Textile and fabric finishing and fabric coating,,
-2019,Manitoba,All employees,Other textile product mills,,
-2019,Manitoba,All employees,Cut and sew clothing manufacturing,,0.25
-2019,Manitoba,All employees,Leather and hide tanning and finishing,,
-2019,Manitoba,All employees,Paper manufacturing,,0.22
-2019,Manitoba,All employees,"Pulp, paper and paperboard mills",,
-2019,Manitoba,All employees,Printing and related support activities,,0.49
-2019,Manitoba,All employees,Chemical manufacturing,,0.5
-2019,Manitoba,All employees,Basic chemical manufacturing,,0.06
-2019,Manitoba,All employees,Durable goods,,5.26
-2019,Manitoba,All employees,Wood product manufacturing,,0.33
-2019,Manitoba,All employees,Sawmills and wood preservation,,0.06
-2019,Manitoba,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.06
-2019,Manitoba,All employees,Other wood product manufacturing,,0.2
-2019,Manitoba,All employees,Non-metallic mineral product manufacturing,,0.25
-2019,Manitoba,All employees,Cement and concrete product manufacturing,,0.17
-2019,Manitoba,All employees,Other non-metallic mineral product manufacturing,,0.05
-2019,Manitoba,All employees,Primary metal manufacturing,,0.53
-2019,Manitoba,All employees,Foundries,,0.13
-2019,Manitoba,All employees,Fabricated metal product manufacturing,,0.74
-2019,Manitoba,All employees,Architectural and structural metals manufacturing,,0.29
-2019,Manitoba,All employees,"Boiler, tank and shipping container manufacturing",,0.11
-2019,Manitoba,All employees,Spring and wire product manufacturing,,
-2019,Manitoba,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2019,Manitoba,All employees,Machinery manufacturing,,0.89
-2019,Manitoba,All employees,"Agricultural, construction and mining machinery manufacturing",,0.59
-2019,Manitoba,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.07
-2019,Manitoba,All employees,Other general-purpose machinery manufacturing,,0.12
-2019,Manitoba,All employees,Computer and electronic product manufacturing,,0.07
-2019,Manitoba,All employees,Semiconductor and other electronic component manufacturing,,0.04
-2019,Manitoba,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.02
-2019,Manitoba,All employees,Electrical equipment manufacturing,,0.12
-2019,Manitoba,All employees,Transportation equipment manufacturing,,1.44
-2019,Manitoba,All employees,Motor vehicle body and trailer manufacturing,,0.28
-2019,Manitoba,All employees,Aerospace product and parts manufacturing,,0.66
-2019,Manitoba,All employees,Furniture and related product manufacturing,,0.59
-2019,Manitoba,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.53
-2019,Manitoba,All employees,Office furniture (including fixtures) manufacturing,,0.05
-2019,Manitoba,All employees,Other furniture-related product manufacturing,,0.01
-2019,Manitoba,All employees,Miscellaneous manufacturing,,0.28
-2019,Manitoba,All employees,Medical equipment and supplies manufacturing,,0.09
-2019,Manitoba,All employees,Other miscellaneous manufacturing,,0.19
-2019,Manitoba,Salaried employees paid a fixed salary,Manufacturing,,2.15
-2019,Manitoba,Salaried employees paid a fixed salary,Non-durable goods,,0.89
-2019,Manitoba,Salaried employees paid a fixed salary,Food manufacturing,,0.28
-2019,Manitoba,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
-2019,Manitoba,Salaried employees paid a fixed salary,Other textile product mills,,
-2019,Manitoba,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Paper manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2019,Manitoba,Salaried employees paid a fixed salary,Printing and related support activities,,0.11
-2019,Manitoba,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Durable goods,,1.26
-2019,Manitoba,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2019,Manitoba,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2019,Manitoba,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.12
-2019,Manitoba,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Machinery manufacturing,,0.26
-2019,Manitoba,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2019,Manitoba,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2019,Manitoba,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Manitoba,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.34
-2019,Manitoba,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2019,Manitoba,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2019,Manitoba,Employees paid by the hour,Manufacturing,,6.76
-2019,Manitoba,Employees paid by the hour,Non-durable goods,,2.96
-2019,Manitoba,Employees paid by the hour,Food manufacturing,,1.44
-2019,Manitoba,Employees paid by the hour,Animal food manufacturing,,
-2019,Manitoba,Employees paid by the hour,Meat product manufacturing,,
-2019,Manitoba,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2019,Manitoba,Employees paid by the hour,Cannabis product manufacturing,,
-2019,Manitoba,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
-2019,Manitoba,Employees paid by the hour,Other textile product mills,,
-2019,Manitoba,Employees paid by the hour,Clothing manufacturing,,
-2019,Manitoba,Employees paid by the hour,Cut and sew clothing manufacturing,,
-2019,Manitoba,Employees paid by the hour,Leather and hide tanning and finishing,,
-2019,Manitoba,Employees paid by the hour,Paper manufacturing,,
-2019,Manitoba,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2019,Manitoba,Employees paid by the hour,Printing and related support activities,,0.34
-2019,Manitoba,Employees paid by the hour,Chemical manufacturing,,
-2019,Manitoba,Employees paid by the hour,Basic chemical manufacturing,,
-2019,Manitoba,Employees paid by the hour,Durable goods,,3.8
-2019,Manitoba,Employees paid by the hour,Wood product manufacturing,,
-2019,Manitoba,Employees paid by the hour,Sawmills and wood preservation,,
-2019,Manitoba,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2019,Manitoba,Employees paid by the hour,Other wood product manufacturing,,
-2019,Manitoba,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2019,Manitoba,Employees paid by the hour,Cement and concrete product manufacturing,,
-2019,Manitoba,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2019,Manitoba,Employees paid by the hour,Primary metal manufacturing,,0.41
-2019,Manitoba,Employees paid by the hour,Fabricated metal product manufacturing,,
-2019,Manitoba,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2019,Manitoba,Employees paid by the hour,Machinery manufacturing,,0.61
-2019,Manitoba,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2019,Manitoba,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2019,Manitoba,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2019,Manitoba,Employees paid by the hour,Computer and electronic product manufacturing,,
-2019,Manitoba,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Manitoba,Employees paid by the hour,Electrical equipment manufacturing,,
-2019,Manitoba,Employees paid by the hour,Transportation equipment manufacturing,,1.09
-2019,Manitoba,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,0.17
-2019,Manitoba,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2019,Manitoba,Employees paid by the hour,Furniture and related product manufacturing,,
-2019,Manitoba,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2019,Manitoba,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2019,Manitoba,Employees paid by the hour,Other furniture-related product manufacturing,,
-2019,Manitoba,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2019,Manitoba,Employees paid by the hour,Other miscellaneous manufacturing,,
-2019,Saskatchewan,All employees,Manufacturing,47,5.21
-2019,Saskatchewan,All employees,Non-durable goods,,2.09
-2019,Saskatchewan,All employees,Food manufacturing,,1
-2019,Saskatchewan,All employees,Animal food manufacturing,,0.11
-2019,Saskatchewan,All employees,Grain and oilseed milling,,0.25
-2019,Saskatchewan,All employees,Meat product manufacturing,,0.42
-2019,Saskatchewan,All employees,Beverage and tobacco product manufacturing,,0.22
-2019,Saskatchewan,All employees,Cannabis product manufacturing,,
-2019,Saskatchewan,All employees,Printing and related support activities,,0.1
-2019,Saskatchewan,All employees,Chemical manufacturing,,0.33
-2019,Saskatchewan,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.13
-2019,Saskatchewan,All employees,Durable goods,,3.12
-2019,Saskatchewan,All employees,Wood product manufacturing,,0.3
-2019,Saskatchewan,All employees,Sawmills and wood preservation,,0.09
-2019,Saskatchewan,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.17
-2019,Saskatchewan,All employees,Other wood product manufacturing,,0.04
-2019,Saskatchewan,All employees,Cement and concrete product manufacturing,,0.17
-2019,Saskatchewan,All employees,Fabricated metal product manufacturing,,0.66
-2019,Saskatchewan,All employees,Architectural and structural metals manufacturing,,0.26
-2019,Saskatchewan,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.06
-2019,Saskatchewan,All employees,Machinery manufacturing,,0.97
-2019,Saskatchewan,All employees,"Agricultural, construction and mining machinery manufacturing",,0.83
-2019,Saskatchewan,All employees,Computer and electronic product manufacturing,,
-2019,Saskatchewan,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Saskatchewan,All employees,Motor vehicle body and trailer manufacturing,,0.23
-2019,Saskatchewan,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.09
-2019,Saskatchewan,All employees,Miscellaneous manufacturing,,0.12
-2019,Saskatchewan,All employees,Medical equipment and supplies manufacturing,,0.05
-2019,Saskatchewan,All employees,Other miscellaneous manufacturing,,0.07
-2019,Saskatchewan,Salaried employees paid a fixed salary,Manufacturing,,1.31
-2019,Saskatchewan,Salaried employees paid a fixed salary,Non-durable goods,,
-2019,Saskatchewan,Salaried employees paid a fixed salary,Food manufacturing,,0.17
-2019,Saskatchewan,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2019,Saskatchewan,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2019,Saskatchewan,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,Saskatchewan,Salaried employees paid a fixed salary,Printing and related support activities,,
-2019,Saskatchewan,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2019,Saskatchewan,Salaried employees paid a fixed salary,Durable goods,,0.72
-2019,Saskatchewan,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.11
-2019,Saskatchewan,Salaried employees paid a fixed salary,Machinery manufacturing,,0.23
-2019,Saskatchewan,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,0.19
-2019,Saskatchewan,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2019,Saskatchewan,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2019,Saskatchewan,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Saskatchewan,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2019,Saskatchewan,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2019,Saskatchewan,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2019,Saskatchewan,Employees paid by the hour,Manufacturing,,3.7
-2019,Saskatchewan,Employees paid by the hour,Non-durable goods,,
-2019,Saskatchewan,Employees paid by the hour,Food manufacturing,,0.78
-2019,Saskatchewan,Employees paid by the hour,Grain and oilseed milling,,
-2019,Saskatchewan,Employees paid by the hour,Meat product manufacturing,,
-2019,Saskatchewan,Employees paid by the hour,Cannabis product manufacturing,,
-2019,Saskatchewan,Employees paid by the hour,Printing and related support activities,,
-2019,Saskatchewan,Employees paid by the hour,Chemical manufacturing,,
-2019,Saskatchewan,Employees paid by the hour,Durable goods,,2.28
-2019,Saskatchewan,Employees paid by the hour,Fabricated metal product manufacturing,,0.52
-2019,Saskatchewan,Employees paid by the hour,Machinery manufacturing,,0.69
-2019,Saskatchewan,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,0.6
-2019,Saskatchewan,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2019,Saskatchewan,Employees paid by the hour,Computer and electronic product manufacturing,,
-2019,Saskatchewan,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Saskatchewan,Employees paid by the hour,Transportation equipment manufacturing,,
-2019,Saskatchewan,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2019,Saskatchewan,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2019,Alberta,All employees,Manufacturing,48,6.11
-2019,Alberta,All employees,Non-durable goods,,2.55
-2019,Alberta,All employees,Food manufacturing,,1.09
-2019,Alberta,All employees,Animal food manufacturing,,0.04
-2019,Alberta,All employees,Grain and oilseed milling,,0.04
-2019,Alberta,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.07
-2019,Alberta,All employees,Meat product manufacturing,,0.54
-2019,Alberta,All employees,Bakeries and tortilla manufacturing,,0.16
-2019,Alberta,All employees,Other food manufacturing,,0.14
-2019,Alberta,All employees,Beverage and tobacco product manufacturing,,0.18
-2019,Alberta,All employees,Cannabis product manufacturing,,
-2019,Alberta,All employees,Cut and sew clothing manufacturing,,
-2019,Alberta,All employees,Other leather and allied product manufacturing,,
-2019,Alberta,All employees,Paper manufacturing,,0.1
-2019,Alberta,All employees,"Pulp, paper and paperboard mills",,0.08
-2019,Alberta,All employees,Converted paper product manufacturing,,0.03
-2019,Alberta,All employees,Printing and related support activities,,0.21
-2019,Alberta,All employees,Petroleum and coal product manufacturing,,0.18
-2019,Alberta,All employees,Chemical manufacturing,,0.46
-2019,Alberta,All employees,Basic chemical manufacturing,,0.16
-2019,Alberta,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2019,Alberta,All employees,Other chemical product manufacturing,,0.08
-2019,Alberta,All employees,Plastics and rubber products manufacturing,,0.29
-2019,Alberta,All employees,Durable goods,,3.56
-2019,Alberta,All employees,Wood product manufacturing,,0.46
-2019,Alberta,All employees,Sawmills and wood preservation,,0.16
-2019,Alberta,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.12
-2019,Alberta,All employees,Other wood product manufacturing,,0.18
-2019,Alberta,All employees,Non-metallic mineral product manufacturing,,0.36
-2019,Alberta,All employees,Glass and glass product manufacturing,,0.02
-2019,Alberta,All employees,Cement and concrete product manufacturing,,0.23
-2019,Alberta,All employees,Other non-metallic mineral product manufacturing,,0.06
-2019,Alberta,All employees,Primary metal manufacturing,,0.17
-2019,Alberta,All employees,Fabricated metal product manufacturing,,1
-2019,Alberta,All employees,Forging and stamping,,
-2019,Alberta,All employees,Architectural and structural metals manufacturing,,0.43
-2019,Alberta,All employees,"Boiler, tank and shipping container manufacturing",,0.15
-2019,Alberta,All employees,Spring and wire product manufacturing,,0.03
-2019,Alberta,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.2
-2019,Alberta,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2019,Alberta,All employees,Other fabricated metal product manufacturing,,0.12
-2019,Alberta,All employees,Machinery manufacturing,,0.84
-2019,Alberta,All employees,"Agricultural, construction and mining machinery manufacturing",,0.42
-2019,Alberta,All employees,Industrial machinery manufacturing,,0.03
-2019,Alberta,All employees,Commercial and service industry machinery manufacturing,,0.02
-2019,Alberta,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.11
-2019,Alberta,All employees,Metalworking machinery manufacturing,,0.04
-2019,Alberta,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
-2019,Alberta,All employees,Other general-purpose machinery manufacturing,,0.2
-2019,Alberta,All employees,Computer and electronic product manufacturing,,0.17
-2019,Alberta,All employees,Computer and peripheral equipment manufacturing,,
-2019,Alberta,All employees,Communications equipment manufacturing,,
-2019,Alberta,All employees,Semiconductor and other electronic component manufacturing,,0.04
-2019,Alberta,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.1
-2019,Alberta,All employees,"Electrical equipment, appliance and component manufacturing",,0.09
-2019,Alberta,All employees,Electrical equipment manufacturing,,0.05
-2019,Alberta,All employees,Other electrical equipment and component manufacturing,,
-2019,Alberta,All employees,Transportation equipment manufacturing,,0.1
-2019,Alberta,All employees,Motor vehicle body and trailer manufacturing,,0.06
-2019,Alberta,All employees,Motor vehicle parts manufacturing,,0.01
-2019,Alberta,All employees,Aerospace product and parts manufacturing,,0.02
-2019,Alberta,All employees,Furniture and related product manufacturing,,0.15
-2019,Alberta,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.09
-2019,Alberta,All employees,Office furniture (including fixtures) manufacturing,,0.04
-2019,Alberta,All employees,Other furniture-related product manufacturing,,0.03
-2019,Alberta,All employees,Miscellaneous manufacturing,,0.21
-2019,Alberta,All employees,Medical equipment and supplies manufacturing,,0.07
-2019,Alberta,All employees,Other miscellaneous manufacturing,,0.14
-2019,Alberta,Salaried employees paid a fixed salary,Manufacturing,,1.69
-2019,Alberta,Salaried employees paid a fixed salary,Non-durable goods,,0.86
-2019,Alberta,Salaried employees paid a fixed salary,Food manufacturing,,0.24
-2019,Alberta,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2019,Alberta,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Paper manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2019,Alberta,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Printing and related support activities,,0.04
-2019,Alberta,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2019,Alberta,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.06
-2019,Alberta,Salaried employees paid a fixed salary,Durable goods,,0.83
-2019,Alberta,Salaried employees paid a fixed salary,Wood product manufacturing,,0.06
-2019,Alberta,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2019,Alberta,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.07
-2019,Alberta,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,0.05
-2019,Alberta,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2019,Alberta,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2019,Alberta,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2019,Alberta,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2019,Alberta,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Alberta,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2019,Alberta,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.03
-2019,Alberta,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2019,Alberta,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2019,Alberta,Employees paid by the hour,Manufacturing,,4.18
-2019,Alberta,Employees paid by the hour,Non-durable goods,,1.59
-2019,Alberta,Employees paid by the hour,Food manufacturing,,0.81
-2019,Alberta,Employees paid by the hour,Grain and oilseed milling,,
-2019,Alberta,Employees paid by the hour,Meat product manufacturing,,
-2019,Alberta,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2019,Alberta,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2019,Alberta,Employees paid by the hour,Cannabis product manufacturing,,
-2019,Alberta,Employees paid by the hour,Paper manufacturing,,
-2019,Alberta,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2019,Alberta,Employees paid by the hour,Converted paper product manufacturing,,
-2019,Alberta,Employees paid by the hour,Printing and related support activities,,0.15
-2019,Alberta,Employees paid by the hour,Chemical manufacturing,,
-2019,Alberta,Employees paid by the hour,Basic chemical manufacturing,,
-2019,Alberta,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2019,Alberta,Employees paid by the hour,Other chemical product manufacturing,,
-2019,Alberta,Employees paid by the hour,Plastics and rubber products manufacturing,,0.21
-2019,Alberta,Employees paid by the hour,Durable goods,,2.59
-2019,Alberta,Employees paid by the hour,Wood product manufacturing,,0.38
-2019,Alberta,Employees paid by the hour,Sawmills and wood preservation,,
-2019,Alberta,Employees paid by the hour,Other wood product manufacturing,,0.14
-2019,Alberta,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.27
-2019,Alberta,Employees paid by the hour,Cement and concrete product manufacturing,,0.18
-2019,Alberta,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2019,Alberta,Employees paid by the hour,Fabricated metal product manufacturing,,
-2019,Alberta,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2019,Alberta,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2019,Alberta,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2019,Alberta,Employees paid by the hour,Machinery manufacturing,,
-2019,Alberta,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2019,Alberta,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2019,Alberta,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2019,Alberta,Employees paid by the hour,Computer and electronic product manufacturing,,
-2019,Alberta,Employees paid by the hour,Communications equipment manufacturing,,
-2019,Alberta,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,Alberta,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2019,Alberta,Employees paid by the hour,Electrical equipment manufacturing,,
-2019,Alberta,Employees paid by the hour,Transportation equipment manufacturing,,
-2019,Alberta,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2019,Alberta,Employees paid by the hour,Motor vehicle parts manufacturing,,
-2019,Alberta,Employees paid by the hour,Furniture and related product manufacturing,,0.12
-2019,Alberta,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2019,Alberta,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2019,Alberta,Employees paid by the hour,Other furniture-related product manufacturing,,
-2019,Alberta,Employees paid by the hour,Miscellaneous manufacturing,,
-2019,Alberta,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2019,Alberta,Employees paid by the hour,Other miscellaneous manufacturing,,
-2019,British Columbia,All employees,Manufacturing,59,6.64
-2019,British Columbia,All employees,Non-durable goods,,2.74
-2019,British Columbia,All employees,Food manufacturing,,1.16
-2019,British Columbia,All employees,Animal food manufacturing,,0.04
-2019,British Columbia,All employees,Grain and oilseed milling,,0.02
-2019,British Columbia,All employees,Sugar and confectionery product manufacturing,,0.05
-2019,British Columbia,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.07
-2019,British Columbia,All employees,Dairy product manufacturing,,0.1
-2019,British Columbia,All employees,Meat product manufacturing,,0.21
-2019,British Columbia,All employees,Seafood product preparation and packaging,,0.13
-2019,British Columbia,All employees,Bakeries and tortilla manufacturing,,0.28
-2019,British Columbia,All employees,Other food manufacturing,,0.25
-2019,British Columbia,All employees,Beverage and tobacco product manufacturing,,0.4
-2019,British Columbia,All employees,Cannabis product manufacturing,,
-2019,British Columbia,All employees,Fabric mills,,
-2019,British Columbia,All employees,Textile product mills,,0.04
-2019,British Columbia,All employees,Textile furnishings mills,,0.01
-2019,British Columbia,All employees,Other textile product mills,,0.03
-2019,British Columbia,All employees,Clothing manufacturing,,0.06
-2019,British Columbia,All employees,Cut and sew clothing manufacturing,,0.04
-2019,British Columbia,All employees,Other leather and allied product manufacturing,,0
-2019,British Columbia,All employees,Paper manufacturing,,0.31
-2019,British Columbia,All employees,"Pulp, paper and paperboard mills",,0.25
-2019,British Columbia,All employees,Converted paper product manufacturing,,0.05
-2019,British Columbia,All employees,Printing and related support activities,,0.19
-2019,British Columbia,All employees,Petroleum and coal product manufacturing,,0.04
-2019,British Columbia,All employees,Chemical manufacturing,,0.3
-2019,British Columbia,All employees,Basic chemical manufacturing,,0.03
-2019,British Columbia,All employees,Pharmaceutical and medicine manufacturing,,0.13
-2019,British Columbia,All employees,"Paint, coating and adhesive manufacturing",,0.02
-2019,British Columbia,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.08
-2019,British Columbia,All employees,Other chemical product manufacturing,,0.03
-2019,British Columbia,All employees,Plastics and rubber products manufacturing,,0.24
-2019,British Columbia,All employees,Plastic product manufacturing,,0.21
-2019,British Columbia,All employees,Durable goods,,3.9
-2019,British Columbia,All employees,Wood product manufacturing,,1.14
-2019,British Columbia,All employees,Sawmills and wood preservation,,0.62
-2019,British Columbia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.21
-2019,British Columbia,All employees,Other wood product manufacturing,,0.31
-2019,British Columbia,All employees,Non-metallic mineral product manufacturing,,0.3
-2019,British Columbia,All employees,Glass and glass product manufacturing,,0.06
-2019,British Columbia,All employees,Cement and concrete product manufacturing,,0.17
-2019,British Columbia,All employees,Other non-metallic mineral product manufacturing,,0.05
-2019,British Columbia,All employees,Primary metal manufacturing,,0.16
-2019,British Columbia,All employees,Fabricated metal product manufacturing,,0.55
-2019,British Columbia,All employees,Forging and stamping,,0.01
-2019,British Columbia,All employees,Cutlery and hand tool manufacturing,,
-2019,British Columbia,All employees,Architectural and structural metals manufacturing,,0.27
-2019,British Columbia,All employees,"Boiler, tank and shipping container manufacturing",,0.03
-2019,British Columbia,All employees,Spring and wire product manufacturing,,0.02
-2019,British Columbia,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.08
-2019,British Columbia,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
-2019,British Columbia,All employees,Other fabricated metal product manufacturing,,0.08
-2019,British Columbia,All employees,Machinery manufacturing,,0.42
-2019,British Columbia,All employees,"Agricultural, construction and mining machinery manufacturing",,0.05
-2019,British Columbia,All employees,Industrial machinery manufacturing,,0.1
-2019,British Columbia,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.05
-2019,British Columbia,All employees,Metalworking machinery manufacturing,,0.04
-2019,British Columbia,All employees,Other general-purpose machinery manufacturing,,0.1
-2019,British Columbia,All employees,Computer and electronic product manufacturing,,0.25
-2019,British Columbia,All employees,Computer and peripheral equipment manufacturing,,0.03
-2019,British Columbia,All employees,Communications equipment manufacturing,,0.04
-2019,British Columbia,All employees,Semiconductor and other electronic component manufacturing,,0.07
-2019,British Columbia,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.1
-2019,British Columbia,All employees,"Electrical equipment, appliance and component manufacturing",,0.17
-2019,British Columbia,All employees,Electrical equipment manufacturing,,0.05
-2019,British Columbia,All employees,Other electrical equipment and component manufacturing,,0.09
-2019,British Columbia,All employees,Transportation equipment manufacturing,,0.35
-2019,British Columbia,All employees,Motor vehicle body and trailer manufacturing,,0.07
-2019,British Columbia,All employees,Aerospace product and parts manufacturing,,0.08
-2019,British Columbia,All employees,Ship and boat building,,0.12
-2019,British Columbia,All employees,Furniture and related product manufacturing,,0.26
-2019,British Columbia,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
-2019,British Columbia,All employees,Office furniture (including fixtures) manufacturing,,0.03
-2019,British Columbia,All employees,Other furniture-related product manufacturing,,0.02
-2019,British Columbia,All employees,Miscellaneous manufacturing,,0.31
-2019,British Columbia,All employees,Medical equipment and supplies manufacturing,,0.11
-2019,British Columbia,All employees,Other miscellaneous manufacturing,,0.21
-2019,British Columbia,Salaried employees paid a fixed salary,Manufacturing,,1.55
-2019,British Columbia,Salaried employees paid a fixed salary,Non-durable goods,,0.62
-2019,British Columbia,Salaried employees paid a fixed salary,Food manufacturing,,0.2
-2019,British Columbia,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2019,British Columbia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Paper manufacturing,,0.06
-2019,British Columbia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2019,British Columbia,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Printing and related support activities,,
-2019,British Columbia,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2019,British Columbia,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.05
-2019,British Columbia,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.04
-2019,British Columbia,Salaried employees paid a fixed salary,Durable goods,,0.93
-2019,British Columbia,Salaried employees paid a fixed salary,Wood product manufacturing,,0.12
-2019,British Columbia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2019,British Columbia,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2019,British Columbia,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.03
-2019,British Columbia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.05
-2019,British Columbia,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.1
-2019,British Columbia,Salaried employees paid a fixed salary,Forging and stamping,,
-2019,British Columbia,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2019,British Columbia,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2019,British Columbia,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Machinery manufacturing,,0.12
-2019,British Columbia,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2019,British Columbia,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,British Columbia,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Ship and boat building,,
-2019,British Columbia,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2019,British Columbia,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2019,British Columbia,Employees paid by the hour,Manufacturing,,4.77
-2019,British Columbia,Employees paid by the hour,Non-durable goods,,1.98
-2019,British Columbia,Employees paid by the hour,Food manufacturing,,0.91
-2019,British Columbia,Employees paid by the hour,Animal food manufacturing,,
-2019,British Columbia,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2019,British Columbia,Employees paid by the hour,Meat product manufacturing,,
-2019,British Columbia,Employees paid by the hour,Seafood product preparation and packaging,,
-2019,British Columbia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2019,British Columbia,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2019,British Columbia,Employees paid by the hour,Cannabis product manufacturing,,
-2019,British Columbia,Employees paid by the hour,Clothing manufacturing,,
-2019,British Columbia,Employees paid by the hour,Other leather and allied product manufacturing,,
-2019,British Columbia,Employees paid by the hour,Paper manufacturing,,0.24
-2019,British Columbia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2019,British Columbia,Employees paid by the hour,Converted paper product manufacturing,,
-2019,British Columbia,Employees paid by the hour,Printing and related support activities,,0.12
-2019,British Columbia,Employees paid by the hour,Basic chemical manufacturing,,
-2019,British Columbia,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2019,British Columbia,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2019,British Columbia,Employees paid by the hour,Other chemical product manufacturing,,
-2019,British Columbia,Employees paid by the hour,Plastics and rubber products manufacturing,,0.18
-2019,British Columbia,Employees paid by the hour,Plastic product manufacturing,,0.16
-2019,British Columbia,Employees paid by the hour,Durable goods,,2.79
-2019,British Columbia,Employees paid by the hour,Wood product manufacturing,,0.99
-2019,British Columbia,Employees paid by the hour,Sawmills and wood preservation,,0.55
-2019,British Columbia,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2019,British Columbia,Employees paid by the hour,Other wood product manufacturing,,0.26
-2019,British Columbia,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.23
-2019,British Columbia,Employees paid by the hour,Glass and glass product manufacturing,,
-2019,British Columbia,Employees paid by the hour,Cement and concrete product manufacturing,,
-2019,British Columbia,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2019,British Columbia,Employees paid by the hour,Primary metal manufacturing,,
-2019,British Columbia,Employees paid by the hour,Fabricated metal product manufacturing,,0.41
-2019,British Columbia,Employees paid by the hour,Forging and stamping,,
-2019,British Columbia,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2019,British Columbia,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2019,British Columbia,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2019,British Columbia,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2019,British Columbia,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2019,British Columbia,Employees paid by the hour,Machinery manufacturing,,0.28
-2019,British Columbia,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2019,British Columbia,Employees paid by the hour,Industrial machinery manufacturing,,
-2019,British Columbia,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2019,British Columbia,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2019,British Columbia,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2019,British Columbia,Employees paid by the hour,Electrical equipment manufacturing,,
-2019,British Columbia,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2019,British Columbia,Employees paid by the hour,Transportation equipment manufacturing,,
-2019,British Columbia,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2019,British Columbia,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2019,British Columbia,Employees paid by the hour,Ship and boat building,,
-2019,British Columbia,Employees paid by the hour,Furniture and related product manufacturing,,
-2019,British Columbia,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2019,British Columbia,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2019,British Columbia,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2019,British Columbia,Employees paid by the hour,Other miscellaneous manufacturing,,
-2019,Yukon,All employees,Cannabis product manufacturing,,
-2019,Yukon,All employees,Durable goods,,
-2019,Yukon,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,Yukon,Salaried employees paid a fixed salary,Durable goods,,
-2019,Yukon,Employees paid by the hour,Cannabis product manufacturing,,
-2019,Yukon,Employees paid by the hour,Durable goods,,
-2019,Northwest Territories,All employees,Cannabis product manufacturing,,
-2019,Northwest Territories,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,Northwest Territories,Employees paid by the hour,Cannabis product manufacturing,,
-2019,Nunavut,All employees,Cannabis product manufacturing,,
-2019,Nunavut,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2019,Nunavut,Employees paid by the hour,Cannabis product manufacturing,,
-2020,Canada,All employees,Non-durable goods,,3.87
-2020,Canada,All employees,Food manufacturing,,1.53
-2020,Canada,All employees,Animal food manufacturing,,0.07
-2020,Canada,All employees,Grain and oilseed milling,,0.06
-2020,Canada,All employees,Sugar and confectionery product manufacturing,,0.06
-2020,Canada,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.12
-2020,Canada,All employees,Dairy product manufacturing,,0.16
-2020,Canada,All employees,Meat product manufacturing,,0.42
-2020,Canada,All employees,Seafood product preparation and packaging,,0.13
-2020,Canada,All employees,Bakeries and tortilla manufacturing,,0.3
-2020,Canada,All employees,Other food manufacturing,,0.23
-2020,Canada,All employees,Beverage and tobacco product manufacturing,,0.3
-2020,Canada,All employees,Beverage manufacturing,,0.27
-2020,Canada,All employees,Tobacco manufacturing,,0.01
-2020,Canada,All employees,Cannabis product manufacturing,,0.02
-2020,Canada,All employees,Textile mills,,0.04
-2020,Canada,All employees,"Fibre, yarn and thread mills",,0
-2020,Canada,All employees,Fabric mills,,0.02
-2020,Canada,All employees,Textile and fabric finishing and fabric coating,,0.01
-2020,Canada,All employees,Textile product mills,,0.05
-2020,Canada,All employees,Textile furnishings mills,,0.02
-2020,Canada,All employees,Other textile product mills,,0.04
-2020,Canada,All employees,Clothing manufacturing,,0.1
-2020,Canada,All employees,Clothing knitting mills,,0.01
-2020,Canada,All employees,Cut and sew clothing manufacturing,,0.08
-2020,Canada,All employees,Clothing accessories and other clothing manufacturing,,0.01
-2020,Canada,All employees,Leather and allied product manufacturing,,0.01
-2020,Canada,All employees,Leather and hide tanning and finishing,,0
-2020,Canada,All employees,Footwear manufacturing,,0.01
-2020,Canada,All employees,Other leather and allied product manufacturing,,0
-2020,Canada,All employees,Paper manufacturing,,0.31
-2020,Canada,All employees,"Pulp, paper and paperboard mills",,0.14
-2020,Canada,All employees,Converted paper product manufacturing,,0.17
-2020,Canada,All employees,Printing and related support activities,,0.27
-2020,Canada,All employees,Petroleum and coal product manufacturing,,0.1
-2020,Canada,All employees,Chemical manufacturing,,0.56
-2020,Canada,All employees,Basic chemical manufacturing,,0.08
-2020,Canada,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.03
-2020,Canada,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.05
-2020,Canada,All employees,Pharmaceutical and medicine manufacturing,,0.2
-2020,Canada,All employees,"Paint, coating and adhesive manufacturing",,0.04
-2020,Canada,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.1
-2020,Canada,All employees,Other chemical product manufacturing,,0.07
-2020,Canada,All employees,Plastics and rubber products manufacturing,,0.59
-2020,Canada,All employees,Plastic product manufacturing,,0.51
-2020,Canada,All employees,Rubber product manufacturing,,0.09
-2020,Canada,All employees,Durable goods,,5.46
-2020,Canada,All employees,Wood product manufacturing,,0.55
-2020,Canada,All employees,Sawmills and wood preservation,,0.21
-2020,Canada,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.12
-2020,Canada,All employees,Other wood product manufacturing,,0.23
-2020,Canada,All employees,Non-metallic mineral product manufacturing,,0.32
-2020,Canada,All employees,Clay product and refractory manufacturing,,0.01
-2020,Canada,All employees,Glass and glass product manufacturing,,0.05
-2020,Canada,All employees,Cement and concrete product manufacturing,,0.19
-2020,Canada,All employees,Lime and gypsum product manufacturing,,0.01
-2020,Canada,All employees,Other non-metallic mineral product manufacturing,,0.06
-2020,Canada,All employees,Primary metal manufacturing,,0.34
-2020,Canada,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.09
-2020,Canada,All employees,Steel product manufacturing from purchased steel,,0.05
-2020,Canada,All employees,Alumina and aluminum production and processing,,0.06
-2020,Canada,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
-2020,Canada,All employees,Foundries,,0.05
-2020,Canada,All employees,Fabricated metal product manufacturing,,0.95
-2020,Canada,All employees,Forging and stamping,,0.03
-2020,Canada,All employees,Cutlery and hand tool manufacturing,,0.02
-2020,Canada,All employees,Architectural and structural metals manufacturing,,0.37
-2020,Canada,All employees,"Boiler, tank and shipping container manufacturing",,0.07
-2020,Canada,All employees,Hardware manufacturing,,0.04
-2020,Canada,All employees,Spring and wire product manufacturing,,0.03
-2020,Canada,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.19
-2020,Canada,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2020,Canada,All employees,Other fabricated metal product manufacturing,,0.14
-2020,Canada,All employees,Machinery manufacturing,,0.82
-2020,Canada,All employees,"Agricultural, construction and mining machinery manufacturing",,0.18
-2020,Canada,All employees,Industrial machinery manufacturing,,0.11
-2020,Canada,All employees,Commercial and service industry machinery manufacturing,,0.1
-2020,Canada,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.11
-2020,Canada,All employees,Metalworking machinery manufacturing,,0.12
-2020,Canada,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
-2020,Canada,All employees,Other general-purpose machinery manufacturing,,0.19
-2020,Canada,All employees,Computer and electronic product manufacturing,,0.35
-2020,Canada,All employees,Computer and peripheral equipment manufacturing,,0.04
-2020,Canada,All employees,Communications equipment manufacturing,,0.07
-2020,Canada,All employees,Audio and video equipment manufacturing,,0.01
-2020,Canada,All employees,Semiconductor and other electronic component manufacturing,,0.1
-2020,Canada,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.14
-2020,Canada,All employees,Manufacturing and reproducing magnetic and optical media,,0
-2020,Canada,All employees,"Electrical equipment, appliance and component manufacturing",,0.23
-2020,Canada,All employees,Electric lighting equipment manufacturing,,0.04
-2020,Canada,All employees,Household appliance manufacturing,,0.01
-2020,Canada,All employees,Electrical equipment manufacturing,,0.09
-2020,Canada,All employees,Other electrical equipment and component manufacturing,,0.08
-2020,Canada,All employees,Transportation equipment manufacturing,,1.19
-2020,Canada,All employees,Motor vehicle manufacturing,,0.24
-2020,Canada,All employees,Motor vehicle body and trailer manufacturing,,0.09
-2020,Canada,All employees,Motor vehicle parts manufacturing,,0.43
-2020,Canada,All employees,Aerospace product and parts manufacturing,,0.3
-2020,Canada,All employees,Railroad rolling stock manufacturing,,0.03
-2020,Canada,All employees,Ship and boat building,,0.05
-2020,Canada,All employees,Other transportation equipment manufacturing,,0.05
-2020,Canada,All employees,Furniture and related product manufacturing,,0.37
-2020,Canada,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.23
-2020,Canada,All employees,Office furniture (including fixtures) manufacturing,,0.12
-2020,Canada,All employees,Other furniture-related product manufacturing,,0.03
-2020,Canada,All employees,Miscellaneous manufacturing,,0.34
-2020,Canada,All employees,Medical equipment and supplies manufacturing,,0.12
-2020,Canada,All employees,Other miscellaneous manufacturing,,0.22
-2020,Canada,Salaried employees paid a fixed salary,Manufacturing,,2.57
-2020,Canada,Salaried employees paid a fixed salary,Non-durable goods,,1.1
-2020,Canada,Salaried employees paid a fixed salary,Food manufacturing,,0.31
-2020,Canada,Salaried employees paid a fixed salary,Animal food manufacturing,,0.02
-2020,Canada,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2020,Canada,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,0.02
-2020,Canada,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Meat product manufacturing,,0.09
-2020,Canada,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,0.02
-2020,Canada,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.04
-2020,Canada,Salaried employees paid a fixed salary,Other food manufacturing,,0.05
-2020,Canada,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,0.1
-2020,Canada,Salaried employees paid a fixed salary,Beverage manufacturing,,0.09
-2020,Canada,Salaried employees paid a fixed salary,Tobacco manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Textile mills,,0.01
-2020,Canada,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2020,Canada,Salaried employees paid a fixed salary,Fabric mills,,
-2020,Canada,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
-2020,Canada,Salaried employees paid a fixed salary,Textile product mills,,
-2020,Canada,Salaried employees paid a fixed salary,Clothing manufacturing,,0.03
-2020,Canada,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,0.02
-2020,Canada,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,0
-2020,Canada,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2020,Canada,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Paper manufacturing,,0.08
-2020,Canada,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2020,Canada,Salaried employees paid a fixed salary,Printing and related support activities,,0.07
-2020,Canada,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Chemical manufacturing,,0.29
-2020,Canada,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2020,Canada,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2020,Canada,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,0.1
-2020,Canada,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2020,Canada,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Rubber product manufacturing,,0.02
-2020,Canada,Salaried employees paid a fixed salary,Durable goods,,1.47
-2020,Canada,Salaried employees paid a fixed salary,Wood product manufacturing,,0.08
-2020,Canada,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.03
-2020,Canada,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,0.02
-2020,Canada,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.02
-2020,Canada,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.08
-2020,Canada,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,0.05
-2020,Canada,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,0.02
-2020,Canada,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2020,Canada,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2020,Canada,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2020,Canada,Salaried employees paid a fixed salary,Foundries,,0.01
-2020,Canada,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.18
-2020,Canada,Salaried employees paid a fixed salary,Forging and stamping,,
-2020,Canada,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.08
-2020,Canada,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2020,Canada,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2020,Canada,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
-2020,Canada,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,0.03
-2020,Canada,Salaried employees paid a fixed salary,Machinery manufacturing,,0.25
-2020,Canada,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,0.05
-2020,Canada,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,0.04
-2020,Canada,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,0.04
-2020,Canada,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2020,Canada,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,0.03
-2020,Canada,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2020,Canada,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,0.06
-2020,Canada,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.21
-2020,Canada,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Communications equipment manufacturing,,0.04
-2020,Canada,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,0.09
-2020,Canada,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.09
-2020,Canada,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,0.04
-2020,Canada,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.32
-2020,Canada,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,0.11
-2020,Canada,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Ship and boat building,,
-2020,Canada,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.04
-2020,Canada,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.02
-2020,Canada,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,0.01
-2020,Canada,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.13
-2020,Canada,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2020,Canada,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.09
-2020,Canada,Employees paid by the hour,Manufacturing,,6.39
-2020,Canada,Employees paid by the hour,Non-durable goods,,2.64
-2020,Canada,Employees paid by the hour,Food manufacturing,,1.19
-2020,Canada,Employees paid by the hour,Animal food manufacturing,,0.05
-2020,Canada,Employees paid by the hour,Grain and oilseed milling,,
-2020,Canada,Employees paid by the hour,Sugar and confectionery product manufacturing,,
-2020,Canada,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,0.1
-2020,Canada,Employees paid by the hour,Dairy product manufacturing,,
-2020,Canada,Employees paid by the hour,Meat product manufacturing,,0.32
-2020,Canada,Employees paid by the hour,Seafood product preparation and packaging,,0.1
-2020,Canada,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.25
-2020,Canada,Employees paid by the hour,Other food manufacturing,,0.17
-2020,Canada,Employees paid by the hour,Beverage and tobacco product manufacturing,,0.19
-2020,Canada,Employees paid by the hour,Beverage manufacturing,,0.17
-2020,Canada,Employees paid by the hour,Tobacco manufacturing,,
-2020,Canada,Employees paid by the hour,Cannabis product manufacturing,,
-2020,Canada,Employees paid by the hour,Textile mills,,0.03
-2020,Canada,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2020,Canada,Employees paid by the hour,Fabric mills,,
-2020,Canada,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
-2020,Canada,Employees paid by the hour,Textile product mills,,
-2020,Canada,Employees paid by the hour,Clothing manufacturing,,0.06
-2020,Canada,Employees paid by the hour,Cut and sew clothing manufacturing,,0.05
-2020,Canada,Employees paid by the hour,Leather and allied product manufacturing,,0.01
-2020,Canada,Employees paid by the hour,Leather and hide tanning and finishing,,
-2020,Canada,Employees paid by the hour,Footwear manufacturing,,0.01
-2020,Canada,Employees paid by the hour,Other leather and allied product manufacturing,,0
-2020,Canada,Employees paid by the hour,Paper manufacturing,,0.22
-2020,Canada,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2020,Canada,Employees paid by the hour,Printing and related support activities,,0.18
-2020,Canada,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2020,Canada,Employees paid by the hour,Chemical manufacturing,,0.27
-2020,Canada,Employees paid by the hour,Basic chemical manufacturing,,
-2020,Canada,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2020,Canada,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2020,Canada,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,0.1
-2020,Canada,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2020,Canada,Employees paid by the hour,Other chemical product manufacturing,,
-2020,Canada,Employees paid by the hour,Rubber product manufacturing,,0.06
-2020,Canada,Employees paid by the hour,Durable goods,,3.75
-2020,Canada,Employees paid by the hour,Wood product manufacturing,,0.45
-2020,Canada,Employees paid by the hour,Sawmills and wood preservation,,0.17
-2020,Canada,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,0.09
-2020,Canada,Employees paid by the hour,Other wood product manufacturing,,0.18
-2020,Canada,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.23
-2020,Canada,Employees paid by the hour,Clay product and refractory manufacturing,,
-2020,Canada,Employees paid by the hour,Glass and glass product manufacturing,,
-2020,Canada,Employees paid by the hour,Cement and concrete product manufacturing,,0.14
-2020,Canada,Employees paid by the hour,Lime and gypsum product manufacturing,,
-2020,Canada,Employees paid by the hour,Other non-metallic mineral product manufacturing,,0.04
-2020,Canada,Employees paid by the hour,Primary metal manufacturing,,
-2020,Canada,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2020,Canada,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2020,Canada,Employees paid by the hour,Alumina and aluminum production and processing,,
-2020,Canada,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2020,Canada,Employees paid by the hour,Foundries,,0.04
-2020,Canada,Employees paid by the hour,Fabricated metal product manufacturing,,0.72
-2020,Canada,Employees paid by the hour,Forging and stamping,,
-2020,Canada,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2020,Canada,Employees paid by the hour,Architectural and structural metals manufacturing,,0.27
-2020,Canada,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2020,Canada,Employees paid by the hour,Hardware manufacturing,,
-2020,Canada,Employees paid by the hour,Spring and wire product manufacturing,,
-2020,Canada,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.16
-2020,Canada,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
-2020,Canada,Employees paid by the hour,Other fabricated metal product manufacturing,,0.1
-2020,Canada,Employees paid by the hour,Machinery manufacturing,,0.52
-2020,Canada,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,0.12
-2020,Canada,Employees paid by the hour,Industrial machinery manufacturing,,0.07
-2020,Canada,Employees paid by the hour,Commercial and service industry machinery manufacturing,,0.05
-2020,Canada,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2020,Canada,Employees paid by the hour,Metalworking machinery manufacturing,,0.08
-2020,Canada,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2020,Canada,Employees paid by the hour,Other general-purpose machinery manufacturing,,0.12
-2020,Canada,Employees paid by the hour,Computer and electronic product manufacturing,,0.12
-2020,Canada,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
-2020,Canada,Employees paid by the hour,Communications equipment manufacturing,,0.02
-2020,Canada,Employees paid by the hour,Audio and video equipment manufacturing,,
-2020,Canada,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2020,Canada,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,0.04
-2020,Canada,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.12
-2020,Canada,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2020,Canada,Employees paid by the hour,Household appliance manufacturing,,
-2020,Canada,Employees paid by the hour,Electrical equipment manufacturing,,0.05
-2020,Canada,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2020,Canada,Employees paid by the hour,Transportation equipment manufacturing,,0.85
-2020,Canada,Employees paid by the hour,Motor vehicle manufacturing,,
-2020,Canada,Employees paid by the hour,Motor vehicle parts manufacturing,,0.3
-2020,Canada,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2020,Canada,Employees paid by the hour,Ship and boat building,,
-2020,Canada,Employees paid by the hour,Other transportation equipment manufacturing,,
-2020,Canada,Employees paid by the hour,Furniture and related product manufacturing,,0.31
-2020,Canada,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.19
-2020,Canada,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,0.09
-2020,Canada,Employees paid by the hour,Other furniture-related product manufacturing,,
-2020,Canada,Employees paid by the hour,Miscellaneous manufacturing,,0.17
-2020,Canada,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2020,Canada,Employees paid by the hour,Other miscellaneous manufacturing,,0.11
-2020,Newfoundland and Labrador,All employees,Manufacturing,10,4.4
-2020,Newfoundland and Labrador,All employees,Non-durable goods,,3.26
-2020,Newfoundland and Labrador,All employees,Food manufacturing,,2.57
-2020,Newfoundland and Labrador,All employees,Seafood product preparation and packaging,,2.11
-2020,Newfoundland and Labrador,All employees,Cannabis product manufacturing,,
-2020,Newfoundland and Labrador,All employees,Durable goods,,1.14
-2020,Newfoundland and Labrador,All employees,Sawmills and wood preservation,,
-2020,Newfoundland and Labrador,All employees,Ship and boat building,,
-2020,Newfoundland and Labrador,All employees,Other miscellaneous manufacturing,,0.05
-2020,Newfoundland and Labrador,Salaried employees paid a fixed salary,Manufacturing,,1.25
-2020,Newfoundland and Labrador,Salaried employees paid a fixed salary,Non-durable goods,,
-2020,Newfoundland and Labrador,Salaried employees paid a fixed salary,Food manufacturing,,
-2020,Newfoundland and Labrador,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,Newfoundland and Labrador,Salaried employees paid a fixed salary,Durable goods,,
-2020,Newfoundland and Labrador,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2020,Newfoundland and Labrador,Employees paid by the hour,Manufacturing,,3.03
-2020,Newfoundland and Labrador,Employees paid by the hour,Non-durable goods,,
-2020,Newfoundland and Labrador,Employees paid by the hour,Food manufacturing,,
-2020,Newfoundland and Labrador,Employees paid by the hour,Cannabis product manufacturing,,
-2020,Newfoundland and Labrador,Employees paid by the hour,Durable goods,,
-2020,Newfoundland and Labrador,Employees paid by the hour,Other miscellaneous manufacturing,,
-2020,Prince Edward Island,All employees,Manufacturing,11,7.87
-2020,Prince Edward Island,All employees,Non-durable goods,,5.13
-2020,Prince Edward Island,All employees,Food manufacturing,,3.24
-2020,Prince Edward Island,All employees,Seafood product preparation and packaging,,
-2020,Prince Edward Island,All employees,Cannabis product manufacturing,,
-2020,Prince Edward Island,All employees,Printing and related support activities,,0.17
-2020,Prince Edward Island,All employees,Durable goods,,2.73
-2020,Prince Edward Island,Salaried employees paid a fixed salary,Manufacturing,,
-2020,Prince Edward Island,Salaried employees paid a fixed salary,Food manufacturing,,
-2020,Prince Edward Island,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2020,Prince Edward Island,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,Prince Edward Island,Salaried employees paid a fixed salary,Durable goods,,
-2020,Prince Edward Island,Employees paid by the hour,Manufacturing,,
-2020,Prince Edward Island,Employees paid by the hour,Food manufacturing,,
-2020,Prince Edward Island,Employees paid by the hour,Seafood product preparation and packaging,,
-2020,Prince Edward Island,Employees paid by the hour,Cannabis product manufacturing,,
-2020,Prince Edward Island,Employees paid by the hour,Durable goods,,
-2020,Nova Scotia,All employees,Manufacturing,12,7.58
-2020,Nova Scotia,All employees,Non-durable goods,,4.75
-2020,Nova Scotia,All employees,Food manufacturing,,2.22
-2020,Nova Scotia,All employees,Animal food manufacturing,,0.07
-2020,Nova Scotia,All employees,Dairy product manufacturing,,
-2020,Nova Scotia,All employees,Meat product manufacturing,,0.15
-2020,Nova Scotia,All employees,Seafood product preparation and packaging,,1.23
-2020,Nova Scotia,All employees,Bakeries and tortilla manufacturing,,0.23
-2020,Nova Scotia,All employees,Beverage and tobacco product manufacturing,,0.33
-2020,Nova Scotia,All employees,Cannabis product manufacturing,,
-2020,Nova Scotia,All employees,Fabric mills,,
-2020,Nova Scotia,All employees,Clothing manufacturing,,
-2020,Nova Scotia,All employees,Paper manufacturing,,0.18
-2020,Nova Scotia,All employees,"Pulp, paper and paperboard mills",,
-2020,Nova Scotia,All employees,Printing and related support activities,,0.16
-2020,Nova Scotia,All employees,Plastics and rubber products manufacturing,,1.33
-2020,Nova Scotia,All employees,Durable goods,,2.83
-2020,Nova Scotia,All employees,Wood product manufacturing,,0.35
-2020,Nova Scotia,All employees,Sawmills and wood preservation,,0.18
-2020,Nova Scotia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.06
-2020,Nova Scotia,All employees,Other wood product manufacturing,,0.11
-2020,Nova Scotia,All employees,Non-metallic mineral product manufacturing,,0.19
-2020,Nova Scotia,All employees,Cement and concrete product manufacturing,,0.14
-2020,Nova Scotia,All employees,Other non-metallic mineral product manufacturing,,0.03
-2020,Nova Scotia,All employees,Fabricated metal product manufacturing,,0.47
-2020,Nova Scotia,All employees,Spring and wire product manufacturing,,0.02
-2020,Nova Scotia,All employees,Machinery manufacturing,,0.25
-2020,Nova Scotia,All employees,Commercial and service industry machinery manufacturing,,0.08
-2020,Nova Scotia,All employees,Other general-purpose machinery manufacturing,,0.04
-2020,Nova Scotia,All employees,Transportation equipment manufacturing,,1
-2020,Nova Scotia,All employees,Aerospace product and parts manufacturing,,0.36
-2020,Nova Scotia,All employees,Ship and boat building,,0.61
-2020,Nova Scotia,All employees,Miscellaneous manufacturing,,0.11
-2020,Nova Scotia,All employees,Medical equipment and supplies manufacturing,,0.05
-2020,Nova Scotia,All employees,Other miscellaneous manufacturing,,0.07
-2020,Nova Scotia,Salaried employees paid a fixed salary,Manufacturing,,1.82
-2020,Nova Scotia,Salaried employees paid a fixed salary,Non-durable goods,,1.02
-2020,Nova Scotia,Salaried employees paid a fixed salary,Food manufacturing,,0.4
-2020,Nova Scotia,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2020,Nova Scotia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2020,Nova Scotia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2020,Nova Scotia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,Nova Scotia,Salaried employees paid a fixed salary,Paper manufacturing,,
-2020,Nova Scotia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2020,Nova Scotia,Salaried employees paid a fixed salary,Printing and related support activities,,
-2020,Nova Scotia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.27
-2020,Nova Scotia,Salaried employees paid a fixed salary,Durable goods,,0.81
-2020,Nova Scotia,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2020,Nova Scotia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,0.02
-2020,Nova Scotia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2020,Nova Scotia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2020,Nova Scotia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.06
-2020,Nova Scotia,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2020,Nova Scotia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2020,Nova Scotia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2020,Nova Scotia,Salaried employees paid a fixed salary,Ship and boat building,,
-2020,Nova Scotia,Employees paid by the hour,Manufacturing,,5.4
-2020,Nova Scotia,Employees paid by the hour,Non-durable goods,,3.5
-2020,Nova Scotia,Employees paid by the hour,Food manufacturing,,1.68
-2020,Nova Scotia,Employees paid by the hour,Animal food manufacturing,,
-2020,Nova Scotia,Employees paid by the hour,Seafood product preparation and packaging,,
-2020,Nova Scotia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2020,Nova Scotia,Employees paid by the hour,Cannabis product manufacturing,,
-2020,Nova Scotia,Employees paid by the hour,Paper manufacturing,,
-2020,Nova Scotia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2020,Nova Scotia,Employees paid by the hour,Printing and related support activities,,
-2020,Nova Scotia,Employees paid by the hour,Plastics and rubber products manufacturing,,1.03
-2020,Nova Scotia,Employees paid by the hour,Durable goods,,1.9
-2020,Nova Scotia,Employees paid by the hour,Wood product manufacturing,,
-2020,Nova Scotia,Employees paid by the hour,Sawmills and wood preservation,,0.16
-2020,Nova Scotia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2020,Nova Scotia,Employees paid by the hour,Cement and concrete product manufacturing,,
-2020,Nova Scotia,Employees paid by the hour,Fabricated metal product manufacturing,,0.36
-2020,Nova Scotia,Employees paid by the hour,Machinery manufacturing,,
-2020,Nova Scotia,Employees paid by the hour,Transportation equipment manufacturing,,
-2020,Nova Scotia,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2020,Nova Scotia,Employees paid by the hour,Ship and boat building,,
-2020,New Brunswick,All employees,Manufacturing,13,9.48
-2020,New Brunswick,All employees,Non-durable goods,,5.38
-2020,New Brunswick,All employees,Food manufacturing,,3.34
-2020,New Brunswick,All employees,Seafood product preparation and packaging,,1.32
-2020,New Brunswick,All employees,Beverage and tobacco product manufacturing,,0.37
-2020,New Brunswick,All employees,Cannabis product manufacturing,,
-2020,New Brunswick,All employees,"Fibre, yarn and thread mills",,
-2020,New Brunswick,All employees,Paper manufacturing,,0.89
-2020,New Brunswick,All employees,"Pulp, paper and paperboard mills",,0.55
-2020,New Brunswick,All employees,Converted paper product manufacturing,,0.34
-2020,New Brunswick,All employees,Printing and related support activities,,0.07
-2020,New Brunswick,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.1
-2020,New Brunswick,All employees,Durable goods,,4.1
-2020,New Brunswick,All employees,Wood product manufacturing,,1.68
-2020,New Brunswick,All employees,Sawmills and wood preservation,,0.89
-2020,New Brunswick,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.24
-2020,New Brunswick,All employees,Other wood product manufacturing,,0.55
-2020,New Brunswick,All employees,Non-metallic mineral product manufacturing,,0.29
-2020,New Brunswick,All employees,Other non-metallic mineral product manufacturing,,0.1
-2020,New Brunswick,All employees,Fabricated metal product manufacturing,,0.77
-2020,New Brunswick,All employees,Architectural and structural metals manufacturing,,0.47
-2020,New Brunswick,All employees,Machinery manufacturing,,0.36
-2020,New Brunswick,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.1
-2020,New Brunswick,All employees,Other general-purpose machinery manufacturing,,0.09
-2020,New Brunswick,All employees,Computer and electronic product manufacturing,,
-2020,New Brunswick,All employees,Furniture and related product manufacturing,,0.22
-2020,New Brunswick,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.2
-2020,New Brunswick,All employees,Miscellaneous manufacturing,,0.29
-2020,New Brunswick,All employees,Medical equipment and supplies manufacturing,,0.03
-2020,New Brunswick,All employees,Other miscellaneous manufacturing,,0.26
-2020,New Brunswick,Salaried employees paid a fixed salary,Manufacturing,,2.26
-2020,New Brunswick,Salaried employees paid a fixed salary,Non-durable goods,,1.29
-2020,New Brunswick,Salaried employees paid a fixed salary,Food manufacturing,,0.75
-2020,New Brunswick,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,New Brunswick,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2020,New Brunswick,Salaried employees paid a fixed salary,Paper manufacturing,,
-2020,New Brunswick,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2020,New Brunswick,Salaried employees paid a fixed salary,Durable goods,,0.98
-2020,New Brunswick,Salaried employees paid a fixed salary,Wood product manufacturing,,0.25
-2020,New Brunswick,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2020,New Brunswick,Salaried employees paid a fixed salary,Other wood product manufacturing,,0.09
-2020,New Brunswick,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2020,New Brunswick,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.2
-2020,New Brunswick,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2020,New Brunswick,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2020,New Brunswick,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2020,New Brunswick,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2020,New Brunswick,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.1
-2020,New Brunswick,Employees paid by the hour,Manufacturing,,6.9
-2020,New Brunswick,Employees paid by the hour,Non-durable goods,,3.97
-2020,New Brunswick,Employees paid by the hour,Food manufacturing,,2.51
-2020,New Brunswick,Employees paid by the hour,Cannabis product manufacturing,,
-2020,New Brunswick,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2020,New Brunswick,Employees paid by the hour,Paper manufacturing,,
-2020,New Brunswick,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2020,New Brunswick,Employees paid by the hour,Durable goods,,2.93
-2020,New Brunswick,Employees paid by the hour,Wood product manufacturing,,1.36
-2020,New Brunswick,Employees paid by the hour,Sawmills and wood preservation,,
-2020,New Brunswick,Employees paid by the hour,Other wood product manufacturing,,0.44
-2020,New Brunswick,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2020,New Brunswick,Employees paid by the hour,Fabricated metal product manufacturing,,0.52
-2020,New Brunswick,Employees paid by the hour,Machinery manufacturing,,
-2020,New Brunswick,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2020,New Brunswick,Employees paid by the hour,Computer and electronic product manufacturing,,
-2020,New Brunswick,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2020,New Brunswick,Employees paid by the hour,Other miscellaneous manufacturing,,0.14
-2020,Quebec,All employees,Manufacturing,24,11.77
-2020,Quebec,All employees,Non-durable goods,,4.79
-2020,Quebec,All employees,Food manufacturing,,1.8
-2020,Quebec,All employees,Animal food manufacturing,,0.08
-2020,Quebec,All employees,Grain and oilseed milling,,0.04
-2020,Quebec,All employees,Sugar and confectionery product manufacturing,,0.1
-2020,Quebec,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.14
-2020,Quebec,All employees,Dairy product manufacturing,,0.26
-2020,Quebec,All employees,Meat product manufacturing,,0.51
-2020,Quebec,All employees,Seafood product preparation and packaging,,0.04
-2020,Quebec,All employees,Bakeries and tortilla manufacturing,,0.32
-2020,Quebec,All employees,Other food manufacturing,,0.33
-2020,Quebec,All employees,Beverage and tobacco product manufacturing,,0.25
-2020,Quebec,All employees,Cannabis product manufacturing,,
-2020,Quebec,All employees,Textile mills,,0.07
-2020,Quebec,All employees,"Fibre, yarn and thread mills",,0.01
-2020,Quebec,All employees,Fabric mills,,0.05
-2020,Quebec,All employees,Textile and fabric finishing and fabric coating,,0.01
-2020,Quebec,All employees,Textile product mills,,0.09
-2020,Quebec,All employees,Textile furnishings mills,,0.04
-2020,Quebec,All employees,Other textile product mills,,0.05
-2020,Quebec,All employees,Clothing manufacturing,,0.24
-2020,Quebec,All employees,Clothing knitting mills,,0.01
-2020,Quebec,All employees,Cut and sew clothing manufacturing,,0.2
-2020,Quebec,All employees,Clothing accessories and other clothing manufacturing,,0.02
-2020,Quebec,All employees,Leather and allied product manufacturing,,0.03
-2020,Quebec,All employees,Leather and hide tanning and finishing,,0
-2020,Quebec,All employees,Footwear manufacturing,,0.02
-2020,Quebec,All employees,Other leather and allied product manufacturing,,0.01
-2020,Quebec,All employees,Paper manufacturing,,0.5
-2020,Quebec,All employees,"Pulp, paper and paperboard mills",,0.23
-2020,Quebec,All employees,Converted paper product manufacturing,,0.27
-2020,Quebec,All employees,Printing and related support activities,,0.29
-2020,Quebec,All employees,Petroleum and coal product manufacturing,,0.1
-2020,Quebec,All employees,Chemical manufacturing,,0.66
-2020,Quebec,All employees,Basic chemical manufacturing,,0.08
-2020,Quebec,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.03
-2020,Quebec,All employees,Pharmaceutical and medicine manufacturing,,0.26
-2020,Quebec,All employees,"Paint, coating and adhesive manufacturing",,0.06
-2020,Quebec,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.12
-2020,Quebec,All employees,Other chemical product manufacturing,,0.09
-2020,Quebec,All employees,Plastics and rubber products manufacturing,,0.75
-2020,Quebec,All employees,Plastic product manufacturing,,0.64
-2020,Quebec,All employees,Rubber product manufacturing,,0.11
-2020,Quebec,All employees,Durable goods,,6.98
-2020,Quebec,All employees,Wood product manufacturing,,0.77
-2020,Quebec,All employees,Sawmills and wood preservation,,0.26
-2020,Quebec,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.15
-2020,Quebec,All employees,Other wood product manufacturing,,0.36
-2020,Quebec,All employees,Non-metallic mineral product manufacturing,,0.4
-2020,Quebec,All employees,Clay product and refractory manufacturing,,0.01
-2020,Quebec,All employees,Glass and glass product manufacturing,,0.07
-2020,Quebec,All employees,Cement and concrete product manufacturing,,0.23
-2020,Quebec,All employees,Lime and gypsum product manufacturing,,0.02
-2020,Quebec,All employees,Other non-metallic mineral product manufacturing,,0.07
-2020,Quebec,All employees,Primary metal manufacturing,,0.49
-2020,Quebec,All employees,Iron and steel mills and ferro-alloy manufacturing,,
-2020,Quebec,All employees,Steel product manufacturing from purchased steel,,
-2020,Quebec,All employees,Alumina and aluminum production and processing,,0.18
-2020,Quebec,All employees,Non-ferrous metal (except aluminum) production and processing,,0.14
-2020,Quebec,All employees,Foundries,,0.1
-2020,Quebec,All employees,Fabricated metal product manufacturing,,1.21
-2020,Quebec,All employees,Forging and stamping,,0.06
-2020,Quebec,All employees,Cutlery and hand tool manufacturing,,0.02
-2020,Quebec,All employees,Architectural and structural metals manufacturing,,0.48
-2020,Quebec,All employees,"Boiler, tank and shipping container manufacturing",,0.07
-2020,Quebec,All employees,Hardware manufacturing,,0.03
-2020,Quebec,All employees,Spring and wire product manufacturing,,0.03
-2020,Quebec,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.25
-2020,Quebec,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2020,Quebec,All employees,Other fabricated metal product manufacturing,,0.19
-2020,Quebec,All employees,Machinery manufacturing,,0.95
-2020,Quebec,All employees,"Agricultural, construction and mining machinery manufacturing",,0.13
-2020,Quebec,All employees,Industrial machinery manufacturing,,0.17
-2020,Quebec,All employees,Commercial and service industry machinery manufacturing,,0.19
-2020,Quebec,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.16
-2020,Quebec,All employees,Metalworking machinery manufacturing,,0.05
-2020,Quebec,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.06
-2020,Quebec,All employees,Other general-purpose machinery manufacturing,,0.19
-2020,Quebec,All employees,Computer and electronic product manufacturing,,0.43
-2020,Quebec,All employees,Communications equipment manufacturing,,0.07
-2020,Quebec,All employees,Audio and video equipment manufacturing,,0.01
-2020,Quebec,All employees,Semiconductor and other electronic component manufacturing,,0.15
-2020,Quebec,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.19
-2020,Quebec,All employees,Manufacturing and reproducing magnetic and optical media,,0
-2020,Quebec,All employees,"Electrical equipment, appliance and component manufacturing",,0.33
-2020,Quebec,All employees,Electric lighting equipment manufacturing,,0.08
-2020,Quebec,All employees,Household appliance manufacturing,,0.01
-2020,Quebec,All employees,Electrical equipment manufacturing,,0.12
-2020,Quebec,All employees,Other electrical equipment and component manufacturing,,0.11
-2020,Quebec,All employees,Transportation equipment manufacturing,,1.4
-2020,Quebec,All employees,Motor vehicle body and trailer manufacturing,,0.13
-2020,Quebec,All employees,Motor vehicle parts manufacturing,,0.12
-2020,Quebec,All employees,Aerospace product and parts manufacturing,,0.82
-2020,Quebec,All employees,Other transportation equipment manufacturing,,0.12
-2020,Quebec,All employees,Furniture and related product manufacturing,,0.57
-2020,Quebec,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.4
-2020,Quebec,All employees,Office furniture (including fixtures) manufacturing,,0.14
-2020,Quebec,All employees,Other furniture-related product manufacturing,,0.04
-2020,Quebec,All employees,Miscellaneous manufacturing,,0.43
-2020,Quebec,All employees,Medical equipment and supplies manufacturing,,0.14
-2020,Quebec,All employees,Other miscellaneous manufacturing,,0.29
-2020,Quebec,Salaried employees paid a fixed salary,Manufacturing,,3.07
-2020,Quebec,Salaried employees paid a fixed salary,Non-durable goods,,1.2
-2020,Quebec,Salaried employees paid a fixed salary,Food manufacturing,,0.32
-2020,Quebec,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2020,Quebec,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Other food manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Textile mills,,0.02
-2020,Quebec,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2020,Quebec,Salaried employees paid a fixed salary,Fabric mills,,
-2020,Quebec,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
-2020,Quebec,Salaried employees paid a fixed salary,Textile product mills,,
-2020,Quebec,Salaried employees paid a fixed salary,Textile furnishings mills,,
-2020,Quebec,Salaried employees paid a fixed salary,Other textile product mills,,
-2020,Quebec,Salaried employees paid a fixed salary,Clothing manufacturing,,0.06
-2020,Quebec,Salaried employees paid a fixed salary,Clothing knitting mills,,
-2020,Quebec,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,0.05
-2020,Quebec,Salaried employees paid a fixed salary,Clothing accessories and other clothing manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2020,Quebec,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Paper manufacturing,,0.14
-2020,Quebec,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2020,Quebec,Salaried employees paid a fixed salary,Printing and related support activities,,0.07
-2020,Quebec,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Chemical manufacturing,,0.28
-2020,Quebec,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2020,Quebec,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
-2020,Quebec,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2020,Quebec,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.13
-2020,Quebec,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.11
-2020,Quebec,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Durable goods,,1.86
-2020,Quebec,Salaried employees paid a fixed salary,Wood product manufacturing,,0.1
-2020,Quebec,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2020,Quebec,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2020,Quebec,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,0.09
-2020,Quebec,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2020,Quebec,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2020,Quebec,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2020,Quebec,Salaried employees paid a fixed salary,Foundries,,
-2020,Quebec,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.21
-2020,Quebec,Salaried employees paid a fixed salary,Forging and stamping,,
-2020,Quebec,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.1
-2020,Quebec,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2020,Quebec,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Machinery manufacturing,,0.32
-2020,Quebec,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2020,Quebec,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2020,Quebec,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2020,Quebec,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,Quebec,Salaried employees paid a fixed salary,Manufacturing and reproducing magnetic and optical media,,
-2020,Quebec,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2020,Quebec,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,0.43
-2020,Quebec,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Other transportation equipment manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2020,Quebec,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2020,Quebec,Employees paid by the hour,Manufacturing,,8.23
-2020,Quebec,Employees paid by the hour,Non-durable goods,,3.41
-2020,Quebec,Employees paid by the hour,Food manufacturing,,1.43
-2020,Quebec,Employees paid by the hour,Animal food manufacturing,,
-2020,Quebec,Employees paid by the hour,Grain and oilseed milling,,
-2020,Quebec,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2020,Quebec,Employees paid by the hour,Dairy product manufacturing,,
-2020,Quebec,Employees paid by the hour,Meat product manufacturing,,
-2020,Quebec,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2020,Quebec,Employees paid by the hour,Other food manufacturing,,
-2020,Quebec,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2020,Quebec,Employees paid by the hour,Cannabis product manufacturing,,
-2020,Quebec,Employees paid by the hour,Textile mills,,0.06
-2020,Quebec,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2020,Quebec,Employees paid by the hour,Fabric mills,,
-2020,Quebec,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
-2020,Quebec,Employees paid by the hour,Textile product mills,,
-2020,Quebec,Employees paid by the hour,Textile furnishings mills,,
-2020,Quebec,Employees paid by the hour,Other textile product mills,,
-2020,Quebec,Employees paid by the hour,Clothing manufacturing,,0.15
-2020,Quebec,Employees paid by the hour,Clothing knitting mills,,
-2020,Quebec,Employees paid by the hour,Cut and sew clothing manufacturing,,0.12
-2020,Quebec,Employees paid by the hour,Clothing accessories and other clothing manufacturing,,
-2020,Quebec,Employees paid by the hour,Leather and hide tanning and finishing,,
-2020,Quebec,Employees paid by the hour,Footwear manufacturing,,
-2020,Quebec,Employees paid by the hour,Other leather and allied product manufacturing,,
-2020,Quebec,Employees paid by the hour,Paper manufacturing,,0.36
-2020,Quebec,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2020,Quebec,Employees paid by the hour,Printing and related support activities,,0.19
-2020,Quebec,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2020,Quebec,Employees paid by the hour,Chemical manufacturing,,0.36
-2020,Quebec,Employees paid by the hour,Basic chemical manufacturing,,
-2020,Quebec,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2020,Quebec,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2020,Quebec,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
-2020,Quebec,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2020,Quebec,Employees paid by the hour,Other chemical product manufacturing,,
-2020,Quebec,Employees paid by the hour,Plastics and rubber products manufacturing,,0.59
-2020,Quebec,Employees paid by the hour,Plastic product manufacturing,,0.51
-2020,Quebec,Employees paid by the hour,Rubber product manufacturing,,
-2020,Quebec,Employees paid by the hour,Durable goods,,4.82
-2020,Quebec,Employees paid by the hour,Wood product manufacturing,,0.63
-2020,Quebec,Employees paid by the hour,Sawmills and wood preservation,,
-2020,Quebec,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2020,Quebec,Employees paid by the hour,Other wood product manufacturing,,0.29
-2020,Quebec,Employees paid by the hour,Non-metallic mineral product manufacturing,,0.29
-2020,Quebec,Employees paid by the hour,Clay product and refractory manufacturing,,
-2020,Quebec,Employees paid by the hour,Glass and glass product manufacturing,,
-2020,Quebec,Employees paid by the hour,Cement and concrete product manufacturing,,
-2020,Quebec,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2020,Quebec,Employees paid by the hour,Primary metal manufacturing,,
-2020,Quebec,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2020,Quebec,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2020,Quebec,Employees paid by the hour,Alumina and aluminum production and processing,,
-2020,Quebec,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2020,Quebec,Employees paid by the hour,Foundries,,
-2020,Quebec,Employees paid by the hour,Fabricated metal product manufacturing,,0.94
-2020,Quebec,Employees paid by the hour,Forging and stamping,,
-2020,Quebec,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2020,Quebec,Employees paid by the hour,Architectural and structural metals manufacturing,,0.36
-2020,Quebec,Employees paid by the hour,Hardware manufacturing,,
-2020,Quebec,Employees paid by the hour,Spring and wire product manufacturing,,
-2020,Quebec,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2020,Quebec,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2020,Quebec,Employees paid by the hour,Machinery manufacturing,,0.59
-2020,Quebec,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2020,Quebec,Employees paid by the hour,Industrial machinery manufacturing,,
-2020,Quebec,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2020,Quebec,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2020,Quebec,Employees paid by the hour,Metalworking machinery manufacturing,,
-2020,Quebec,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2020,Quebec,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2020,Quebec,Employees paid by the hour,Communications equipment manufacturing,,
-2020,Quebec,Employees paid by the hour,Audio and video equipment manufacturing,,
-2020,Quebec,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2020,Quebec,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,Quebec,Employees paid by the hour,Manufacturing and reproducing magnetic and optical media,,
-2020,Quebec,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2020,Quebec,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2020,Quebec,Employees paid by the hour,Household appliance manufacturing,,
-2020,Quebec,Employees paid by the hour,Electrical equipment manufacturing,,
-2020,Quebec,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2020,Quebec,Employees paid by the hour,Transportation equipment manufacturing,,0.96
-2020,Quebec,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2020,Quebec,Employees paid by the hour,Other transportation equipment manufacturing,,
-2020,Quebec,Employees paid by the hour,Furniture and related product manufacturing,,
-2020,Quebec,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2020,Quebec,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2020,Quebec,Employees paid by the hour,Miscellaneous manufacturing,,
-2020,Quebec,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2020,Quebec,Employees paid by the hour,Other miscellaneous manufacturing,,
-2020,Ontario,All employees,Manufacturing,35,10.49
-2020,Ontario,All employees,Non-durable goods,,4.04
-2020,Ontario,All employees,Food manufacturing,,1.41
-2020,Ontario,All employees,Animal food manufacturing,,0.07
-2020,Ontario,All employees,Grain and oilseed milling,,0.06
-2020,Ontario,All employees,Sugar and confectionery product manufacturing,,0.07
-2020,Ontario,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.1
-2020,Ontario,All employees,Dairy product manufacturing,,0.16
-2020,Ontario,All employees,Meat product manufacturing,,0.35
-2020,Ontario,All employees,Seafood product preparation and packaging,,0.01
-2020,Ontario,All employees,Bakeries and tortilla manufacturing,,0.38
-2020,Ontario,All employees,Other food manufacturing,,0.22
-2020,Ontario,All employees,Beverage and tobacco product manufacturing,,0.33
-2020,Ontario,All employees,Cannabis product manufacturing,,
-2020,Ontario,All employees,Textile mills,,0.04
-2020,Ontario,All employees,"Fibre, yarn and thread mills",,0
-2020,Ontario,All employees,Fabric mills,,0.03
-2020,Ontario,All employees,Textile and fabric finishing and fabric coating,,0.01
-2020,Ontario,All employees,Textile product mills,,0.05
-2020,Ontario,All employees,Textile furnishings mills,,0.01
-2020,Ontario,All employees,Other textile product mills,,0.03
-2020,Ontario,All employees,Clothing manufacturing,,0.07
-2020,Ontario,All employees,Clothing knitting mills,,
-2020,Ontario,All employees,Cut and sew clothing manufacturing,,0.05
-2020,Ontario,All employees,Clothing accessories and other clothing manufacturing,,
-2020,Ontario,All employees,Leather and allied product manufacturing,,0.01
-2020,Ontario,All employees,Leather and hide tanning and finishing,,0
-2020,Ontario,All employees,Footwear manufacturing,,0
-2020,Ontario,All employees,Other leather and allied product manufacturing,,0.01
-2020,Ontario,All employees,Paper manufacturing,,0.26
-2020,Ontario,All employees,"Pulp, paper and paperboard mills",,0.05
-2020,Ontario,All employees,Converted paper product manufacturing,,0.2
-2020,Ontario,All employees,Printing and related support activities,,0.33
-2020,Ontario,All employees,Petroleum and coal product manufacturing,,0.09
-2020,Ontario,All employees,Chemical manufacturing,,0.69
-2020,Ontario,All employees,Basic chemical manufacturing,,0.09
-2020,Ontario,All employees,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,0.04
-2020,Ontario,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.03
-2020,Ontario,All employees,Pharmaceutical and medicine manufacturing,,0.26
-2020,Ontario,All employees,"Paint, coating and adhesive manufacturing",,0.05
-2020,Ontario,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.14
-2020,Ontario,All employees,Other chemical product manufacturing,,0.07
-2020,Ontario,All employees,Plastics and rubber products manufacturing,,0.75
-2020,Ontario,All employees,Plastic product manufacturing,,0.67
-2020,Ontario,All employees,Rubber product manufacturing,,0.08
-2020,Ontario,All employees,Durable goods,,6.46
-2020,Ontario,All employees,Wood product manufacturing,,0.27
-2020,Ontario,All employees,Sawmills and wood preservation,,0.05
-2020,Ontario,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.07
-2020,Ontario,All employees,Other wood product manufacturing,,0.15
-2020,Ontario,All employees,Non-metallic mineral product manufacturing,,0.33
-2020,Ontario,All employees,Clay product and refractory manufacturing,,0.02
-2020,Ontario,All employees,Glass and glass product manufacturing,,0.04
-2020,Ontario,All employees,Cement and concrete product manufacturing,,0.19
-2020,Ontario,All employees,Lime and gypsum product manufacturing,,0.01
-2020,Ontario,All employees,Other non-metallic mineral product manufacturing,,0.07
-2020,Ontario,All employees,Primary metal manufacturing,,0.44
-2020,Ontario,All employees,Iron and steel mills and ferro-alloy manufacturing,,0.19
-2020,Ontario,All employees,Steel product manufacturing from purchased steel,,0.07
-2020,Ontario,All employees,Alumina and aluminum production and processing,,0.04
-2020,Ontario,All employees,Non-ferrous metal (except aluminum) production and processing,,0.08
-2020,Ontario,All employees,Foundries,,0.06
-2020,Ontario,All employees,Fabricated metal product manufacturing,,1.07
-2020,Ontario,All employees,Forging and stamping,,0.04
-2020,Ontario,All employees,Cutlery and hand tool manufacturing,,0.03
-2020,Ontario,All employees,Architectural and structural metals manufacturing,,0.36
-2020,Ontario,All employees,"Boiler, tank and shipping container manufacturing",,0.07
-2020,Ontario,All employees,Hardware manufacturing,,0.06
-2020,Ontario,All employees,Spring and wire product manufacturing,,0.03
-2020,Ontario,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.22
-2020,Ontario,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.09
-2020,Ontario,All employees,Other fabricated metal product manufacturing,,0.16
-2020,Ontario,All employees,Machinery manufacturing,,0.97
-2020,Ontario,All employees,"Agricultural, construction and mining machinery manufacturing",,0.14
-2020,Ontario,All employees,Industrial machinery manufacturing,,0.12
-2020,Ontario,All employees,Commercial and service industry machinery manufacturing,,0.1
-2020,Ontario,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.1
-2020,Ontario,All employees,Metalworking machinery manufacturing,,0.24
-2020,Ontario,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.03
-2020,Ontario,All employees,Other general-purpose machinery manufacturing,,0.26
-2020,Ontario,All employees,Computer and electronic product manufacturing,,0.47
-2020,Ontario,All employees,Computer and peripheral equipment manufacturing,,0.06
-2020,Ontario,All employees,Communications equipment manufacturing,,0.1
-2020,Ontario,All employees,Audio and video equipment manufacturing,,0.01
-2020,Ontario,All employees,Semiconductor and other electronic component manufacturing,,0.13
-2020,Ontario,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.16
-2020,Ontario,All employees,"Electrical equipment, appliance and component manufacturing",,0.27
-2020,Ontario,All employees,Electric lighting equipment manufacturing,,0.03
-2020,Ontario,All employees,Household appliance manufacturing,,0.02
-2020,Ontario,All employees,Electrical equipment manufacturing,,0.12
-2020,Ontario,All employees,Other electrical equipment and component manufacturing,,0.1
-2020,Ontario,All employees,Transportation equipment manufacturing,,1.84
-2020,Ontario,All employees,Motor vehicle manufacturing,,0.5
-2020,Ontario,All employees,Motor vehicle body and trailer manufacturing,,0.06
-2020,Ontario,All employees,Motor vehicle parts manufacturing,,0.99
-2020,Ontario,All employees,Aerospace product and parts manufacturing,,0.17
-2020,Ontario,All employees,Railroad rolling stock manufacturing,,0.05
-2020,Ontario,All employees,Furniture and related product manufacturing,,0.41
-2020,Ontario,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.19
-2020,Ontario,All employees,Office furniture (including fixtures) manufacturing,,0.19
-2020,Ontario,All employees,Other furniture-related product manufacturing,,0.03
-2020,Ontario,All employees,Miscellaneous manufacturing,,0.39
-2020,Ontario,All employees,Medical equipment and supplies manufacturing,,0.15
-2020,Ontario,All employees,Other miscellaneous manufacturing,,0.24
-2020,Ontario,Salaried employees paid a fixed salary,Manufacturing,,3.04
-2020,Ontario,Salaried employees paid a fixed salary,Non-durable goods,,1.27
-2020,Ontario,Salaried employees paid a fixed salary,Food manufacturing,,0.32
-2020,Ontario,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2020,Ontario,Salaried employees paid a fixed salary,Sugar and confectionery product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Dairy product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,0.07
-2020,Ontario,Salaried employees paid a fixed salary,Other food manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Textile mills,,
-2020,Ontario,Salaried employees paid a fixed salary,"Fibre, yarn and thread mills",,
-2020,Ontario,Salaried employees paid a fixed salary,Fabric mills,,
-2020,Ontario,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,0
-2020,Ontario,Salaried employees paid a fixed salary,Textile furnishings mills,,
-2020,Ontario,Salaried employees paid a fixed salary,Other textile product mills,,
-2020,Ontario,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Leather and allied product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2020,Ontario,Salaried employees paid a fixed salary,Footwear manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Paper manufacturing,,0.07
-2020,Ontario,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2020,Ontario,Salaried employees paid a fixed salary,Printing and related support activities,,
-2020,Ontario,Salaried employees paid a fixed salary,Petroleum and coal product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Chemical manufacturing,,0.38
-2020,Ontario,Salaried employees paid a fixed salary,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2020,Ontario,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2020,Ontario,Salaried employees paid a fixed salary,"Paint, coating and adhesive manufacturing",,
-2020,Ontario,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2020,Ontario,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.18
-2020,Ontario,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.16
-2020,Ontario,Salaried employees paid a fixed salary,Rubber product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Durable goods,,1.78
-2020,Ontario,Salaried employees paid a fixed salary,Wood product manufacturing,,0.03
-2020,Ontario,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2020,Ontario,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2020,Ontario,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Clay product and refractory manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Lime and gypsum product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Iron and steel mills and ferro-alloy manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Steel product manufacturing from purchased steel,,
-2020,Ontario,Salaried employees paid a fixed salary,Alumina and aluminum production and processing,,
-2020,Ontario,Salaried employees paid a fixed salary,Non-ferrous metal (except aluminum) production and processing,,
-2020,Ontario,Salaried employees paid a fixed salary,Foundries,,
-2020,Ontario,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.2
-2020,Ontario,Salaried employees paid a fixed salary,Forging and stamping,,
-2020,Ontario,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.08
-2020,Ontario,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2020,Ontario,Salaried employees paid a fixed salary,Hardware manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Spring and wire product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2020,Ontario,Salaried employees paid a fixed salary,"Coating, engraving, cold and heat treating and allied activities",,
-2020,Ontario,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Machinery manufacturing,,0.28
-2020,Ontario,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2020,Ontario,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Commercial and service industry machinery manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2020,Ontario,Salaried employees paid a fixed salary,Metalworking machinery manufacturing,,0.06
-2020,Ontario,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2020,Ontario,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.28
-2020,Ontario,Salaried employees paid a fixed salary,Computer and peripheral equipment manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Audio and video equipment manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,Ontario,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,0.1
-2020,Ontario,Salaried employees paid a fixed salary,Electric lighting equipment manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Household appliance manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Motor vehicle manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,0.27
-2020,Ontario,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,0.06
-2020,Ontario,Salaried employees paid a fixed salary,Railroad rolling stock manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.05
-2020,Ontario,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,0.17
-2020,Ontario,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2020,Ontario,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,0.11
-2020,Ontario,Employees paid by the hour,Manufacturing,,7.04
-2020,Ontario,Employees paid by the hour,Non-durable goods,,2.63
-2020,Ontario,Employees paid by the hour,Food manufacturing,,1.07
-2020,Ontario,Employees paid by the hour,Animal food manufacturing,,
-2020,Ontario,Employees paid by the hour,Grain and oilseed milling,,
-2020,Ontario,Employees paid by the hour,Sugar and confectionery product manufacturing,,
-2020,Ontario,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2020,Ontario,Employees paid by the hour,Dairy product manufacturing,,
-2020,Ontario,Employees paid by the hour,Meat product manufacturing,,
-2020,Ontario,Employees paid by the hour,Bakeries and tortilla manufacturing,,0.3
-2020,Ontario,Employees paid by the hour,Other food manufacturing,,
-2020,Ontario,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2020,Ontario,Employees paid by the hour,Cannabis product manufacturing,,
-2020,Ontario,Employees paid by the hour,Textile mills,,
-2020,Ontario,Employees paid by the hour,"Fibre, yarn and thread mills",,
-2020,Ontario,Employees paid by the hour,Fabric mills,,
-2020,Ontario,Employees paid by the hour,Textile and fabric finishing and fabric coating,,0.01
-2020,Ontario,Employees paid by the hour,Textile furnishings mills,,
-2020,Ontario,Employees paid by the hour,Other textile product mills,,
-2020,Ontario,Employees paid by the hour,Clothing manufacturing,,
-2020,Ontario,Employees paid by the hour,Leather and allied product manufacturing,,
-2020,Ontario,Employees paid by the hour,Leather and hide tanning and finishing,,
-2020,Ontario,Employees paid by the hour,Footwear manufacturing,,
-2020,Ontario,Employees paid by the hour,Other leather and allied product manufacturing,,
-2020,Ontario,Employees paid by the hour,Paper manufacturing,,0.18
-2020,Ontario,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2020,Ontario,Employees paid by the hour,Printing and related support activities,,
-2020,Ontario,Employees paid by the hour,Petroleum and coal product manufacturing,,
-2020,Ontario,Employees paid by the hour,Chemical manufacturing,,0.31
-2020,Ontario,Employees paid by the hour,"Resin, synthetic rubber, and artificial and synthetic fibres and filaments manufacturing",,
-2020,Ontario,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2020,Ontario,Employees paid by the hour,"Paint, coating and adhesive manufacturing",,
-2020,Ontario,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2020,Ontario,Employees paid by the hour,Other chemical product manufacturing,,
-2020,Ontario,Employees paid by the hour,Plastics and rubber products manufacturing,,0.52
-2020,Ontario,Employees paid by the hour,Plastic product manufacturing,,0.47
-2020,Ontario,Employees paid by the hour,Rubber product manufacturing,,
-2020,Ontario,Employees paid by the hour,Durable goods,,4.41
-2020,Ontario,Employees paid by the hour,Wood product manufacturing,,0.22
-2020,Ontario,Employees paid by the hour,Sawmills and wood preservation,,
-2020,Ontario,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2020,Ontario,Employees paid by the hour,Other wood product manufacturing,,0.12
-2020,Ontario,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2020,Ontario,Employees paid by the hour,Clay product and refractory manufacturing,,
-2020,Ontario,Employees paid by the hour,Glass and glass product manufacturing,,
-2020,Ontario,Employees paid by the hour,Cement and concrete product manufacturing,,
-2020,Ontario,Employees paid by the hour,Lime and gypsum product manufacturing,,
-2020,Ontario,Employees paid by the hour,Primary metal manufacturing,,
-2020,Ontario,Employees paid by the hour,Iron and steel mills and ferro-alloy manufacturing,,
-2020,Ontario,Employees paid by the hour,Steel product manufacturing from purchased steel,,
-2020,Ontario,Employees paid by the hour,Alumina and aluminum production and processing,,
-2020,Ontario,Employees paid by the hour,Non-ferrous metal (except aluminum) production and processing,,
-2020,Ontario,Employees paid by the hour,Foundries,,
-2020,Ontario,Employees paid by the hour,Fabricated metal product manufacturing,,0.81
-2020,Ontario,Employees paid by the hour,Forging and stamping,,
-2020,Ontario,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2020,Ontario,Employees paid by the hour,Architectural and structural metals manufacturing,,0.26
-2020,Ontario,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2020,Ontario,Employees paid by the hour,Hardware manufacturing,,
-2020,Ontario,Employees paid by the hour,Spring and wire product manufacturing,,
-2020,Ontario,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.18
-2020,Ontario,Employees paid by the hour,"Coating, engraving, cold and heat treating and allied activities",,
-2020,Ontario,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2020,Ontario,Employees paid by the hour,Machinery manufacturing,,0.63
-2020,Ontario,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2020,Ontario,Employees paid by the hour,Industrial machinery manufacturing,,
-2020,Ontario,Employees paid by the hour,Commercial and service industry machinery manufacturing,,
-2020,Ontario,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2020,Ontario,Employees paid by the hour,Metalworking machinery manufacturing,,0.16
-2020,Ontario,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2020,Ontario,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2020,Ontario,Employees paid by the hour,Computer and electronic product manufacturing,,0.16
-2020,Ontario,Employees paid by the hour,Computer and peripheral equipment manufacturing,,
-2020,Ontario,Employees paid by the hour,Communications equipment manufacturing,,
-2020,Ontario,Employees paid by the hour,Audio and video equipment manufacturing,,
-2020,Ontario,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2020,Ontario,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,Ontario,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,0.15
-2020,Ontario,Employees paid by the hour,Electric lighting equipment manufacturing,,
-2020,Ontario,Employees paid by the hour,Household appliance manufacturing,,
-2020,Ontario,Employees paid by the hour,Electrical equipment manufacturing,,
-2020,Ontario,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2020,Ontario,Employees paid by the hour,Transportation equipment manufacturing,,
-2020,Ontario,Employees paid by the hour,Motor vehicle manufacturing,,
-2020,Ontario,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2020,Ontario,Employees paid by the hour,Motor vehicle parts manufacturing,,0.71
-2020,Ontario,Employees paid by the hour,Aerospace product and parts manufacturing,,0.11
-2020,Ontario,Employees paid by the hour,Railroad rolling stock manufacturing,,
-2020,Ontario,Employees paid by the hour,Furniture and related product manufacturing,,0.33
-2020,Ontario,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2020,Ontario,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2020,Ontario,Employees paid by the hour,Miscellaneous manufacturing,,0.18
-2020,Ontario,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2020,Ontario,Employees paid by the hour,Other miscellaneous manufacturing,,0.1
-2020,Manitoba,All employees,Manufacturing,46,9.4
-2020,Manitoba,All employees,Non-durable goods,,4.27
-2020,Manitoba,All employees,Food manufacturing,,1.88
-2020,Manitoba,All employees,Animal food manufacturing,,0.07
-2020,Manitoba,All employees,Meat product manufacturing,,0.95
-2020,Manitoba,All employees,Bakeries and tortilla manufacturing,,0.23
-2020,Manitoba,All employees,Beverage and tobacco product manufacturing,,0.19
-2020,Manitoba,All employees,Cannabis product manufacturing,,
-2020,Manitoba,All employees,Textile and fabric finishing and fabric coating,,
-2020,Manitoba,All employees,Other textile product mills,,
-2020,Manitoba,All employees,Cut and sew clothing manufacturing,,0.26
-2020,Manitoba,All employees,Leather and hide tanning and finishing,,
-2020,Manitoba,All employees,Paper manufacturing,,0.23
-2020,Manitoba,All employees,"Pulp, paper and paperboard mills",,
-2020,Manitoba,All employees,Printing and related support activities,,0.5
-2020,Manitoba,All employees,Chemical manufacturing,,0.57
-2020,Manitoba,All employees,Basic chemical manufacturing,,0.08
-2020,Manitoba,All employees,Durable goods,,5.13
-2020,Manitoba,All employees,Wood product manufacturing,,0.32
-2020,Manitoba,All employees,Sawmills and wood preservation,,0.06
-2020,Manitoba,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.06
-2020,Manitoba,All employees,Other wood product manufacturing,,0.21
-2020,Manitoba,All employees,Non-metallic mineral product manufacturing,,0.26
-2020,Manitoba,All employees,Cement and concrete product manufacturing,,0.18
-2020,Manitoba,All employees,Other non-metallic mineral product manufacturing,,0.05
-2020,Manitoba,All employees,Primary metal manufacturing,,0.46
-2020,Manitoba,All employees,Foundries,,
-2020,Manitoba,All employees,Fabricated metal product manufacturing,,0.75
-2020,Manitoba,All employees,Architectural and structural metals manufacturing,,0.29
-2020,Manitoba,All employees,"Boiler, tank and shipping container manufacturing",,0.13
-2020,Manitoba,All employees,Spring and wire product manufacturing,,
-2020,Manitoba,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.07
-2020,Manitoba,All employees,Machinery manufacturing,,0.87
-2020,Manitoba,All employees,"Agricultural, construction and mining machinery manufacturing",,0.56
-2020,Manitoba,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.07
-2020,Manitoba,All employees,Other general-purpose machinery manufacturing,,0.12
-2020,Manitoba,All employees,Computer and electronic product manufacturing,,0.08
-2020,Manitoba,All employees,Semiconductor and other electronic component manufacturing,,0.04
-2020,Manitoba,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,Manitoba,All employees,Electrical equipment manufacturing,,
-2020,Manitoba,All employees,Transportation equipment manufacturing,,1.46
-2020,Manitoba,All employees,Motor vehicle body and trailer manufacturing,,0.34
-2020,Manitoba,All employees,Aerospace product and parts manufacturing,,0.69
-2020,Manitoba,All employees,Furniture and related product manufacturing,,0.54
-2020,Manitoba,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.49
-2020,Manitoba,All employees,Office furniture (including fixtures) manufacturing,,
-2020,Manitoba,All employees,Other furniture-related product manufacturing,,
-2020,Manitoba,All employees,Miscellaneous manufacturing,,0.26
-2020,Manitoba,All employees,Medical equipment and supplies manufacturing,,0.1
-2020,Manitoba,All employees,Other miscellaneous manufacturing,,0.16
-2020,Manitoba,Salaried employees paid a fixed salary,Manufacturing,,2.29
-2020,Manitoba,Salaried employees paid a fixed salary,Non-durable goods,,1.06
-2020,Manitoba,Salaried employees paid a fixed salary,Food manufacturing,,0.37
-2020,Manitoba,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Meat product manufacturing,,0.16
-2020,Manitoba,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Textile and fabric finishing and fabric coating,,
-2020,Manitoba,Salaried employees paid a fixed salary,Other textile product mills,,
-2020,Manitoba,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Cut and sew clothing manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Leather and hide tanning and finishing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Paper manufacturing,,0.05
-2020,Manitoba,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2020,Manitoba,Salaried employees paid a fixed salary,Printing and related support activities,,0.13
-2020,Manitoba,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Durable goods,,1.23
-2020,Manitoba,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2020,Manitoba,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2020,Manitoba,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Primary metal manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2020,Manitoba,Salaried employees paid a fixed salary,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2020,Manitoba,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,Manitoba,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.06
-2020,Manitoba,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.05
-2020,Manitoba,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2020,Manitoba,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2020,Manitoba,Employees paid by the hour,Manufacturing,,6.77
-2020,Manitoba,Employees paid by the hour,Non-durable goods,,3.06
-2020,Manitoba,Employees paid by the hour,Food manufacturing,,1.48
-2020,Manitoba,Employees paid by the hour,Animal food manufacturing,,
-2020,Manitoba,Employees paid by the hour,Meat product manufacturing,,0.78
-2020,Manitoba,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2020,Manitoba,Employees paid by the hour,Cannabis product manufacturing,,
-2020,Manitoba,Employees paid by the hour,Textile and fabric finishing and fabric coating,,
-2020,Manitoba,Employees paid by the hour,Other textile product mills,,
-2020,Manitoba,Employees paid by the hour,Clothing manufacturing,,
-2020,Manitoba,Employees paid by the hour,Cut and sew clothing manufacturing,,
-2020,Manitoba,Employees paid by the hour,Leather and hide tanning and finishing,,
-2020,Manitoba,Employees paid by the hour,Paper manufacturing,,0.18
-2020,Manitoba,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2020,Manitoba,Employees paid by the hour,Printing and related support activities,,0.33
-2020,Manitoba,Employees paid by the hour,Chemical manufacturing,,
-2020,Manitoba,Employees paid by the hour,Basic chemical manufacturing,,
-2020,Manitoba,Employees paid by the hour,Durable goods,,3.71
-2020,Manitoba,Employees paid by the hour,Wood product manufacturing,,
-2020,Manitoba,Employees paid by the hour,Sawmills and wood preservation,,
-2020,Manitoba,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2020,Manitoba,Employees paid by the hour,Other wood product manufacturing,,
-2020,Manitoba,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2020,Manitoba,Employees paid by the hour,Cement and concrete product manufacturing,,
-2020,Manitoba,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2020,Manitoba,Employees paid by the hour,Primary metal manufacturing,,
-2020,Manitoba,Employees paid by the hour,Fabricated metal product manufacturing,,
-2020,Manitoba,Employees paid by the hour,Architectural and structural metals manufacturing,,
-2020,Manitoba,Employees paid by the hour,Machinery manufacturing,,
-2020,Manitoba,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2020,Manitoba,Employees paid by the hour,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,
-2020,Manitoba,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2020,Manitoba,Employees paid by the hour,Computer and electronic product manufacturing,,
-2020,Manitoba,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,Manitoba,Employees paid by the hour,Electrical equipment manufacturing,,
-2020,Manitoba,Employees paid by the hour,Transportation equipment manufacturing,,
-2020,Manitoba,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2020,Manitoba,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2020,Manitoba,Employees paid by the hour,Furniture and related product manufacturing,,0.45
-2020,Manitoba,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.41
-2020,Manitoba,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2020,Manitoba,Employees paid by the hour,Other furniture-related product manufacturing,,
-2020,Manitoba,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2020,Manitoba,Employees paid by the hour,Other miscellaneous manufacturing,,
-2020,Saskatchewan,All employees,Manufacturing,47,5.2
-2020,Saskatchewan,All employees,Non-durable goods,,2.28
-2020,Saskatchewan,All employees,Food manufacturing,,1.09
-2020,Saskatchewan,All employees,Animal food manufacturing,,0.11
-2020,Saskatchewan,All employees,Grain and oilseed milling,,0.29
-2020,Saskatchewan,All employees,Meat product manufacturing,,0.47
-2020,Saskatchewan,All employees,Beverage and tobacco product manufacturing,,0.22
-2020,Saskatchewan,All employees,Cannabis product manufacturing,,
-2020,Saskatchewan,All employees,Printing and related support activities,,0.09
-2020,Saskatchewan,All employees,Chemical manufacturing,,0.33
-2020,Saskatchewan,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.13
-2020,Saskatchewan,All employees,Durable goods,,2.92
-2020,Saskatchewan,All employees,Wood product manufacturing,,0.31
-2020,Saskatchewan,All employees,Sawmills and wood preservation,,0.09
-2020,Saskatchewan,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.17
-2020,Saskatchewan,All employees,Other wood product manufacturing,,0.05
-2020,Saskatchewan,All employees,Cement and concrete product manufacturing,,0.15
-2020,Saskatchewan,All employees,Fabricated metal product manufacturing,,0.64
-2020,Saskatchewan,All employees,Architectural and structural metals manufacturing,,0.25
-2020,Saskatchewan,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.06
-2020,Saskatchewan,All employees,Machinery manufacturing,,1.01
-2020,Saskatchewan,All employees,"Agricultural, construction and mining machinery manufacturing",,0.86
-2020,Saskatchewan,All employees,Computer and electronic product manufacturing,,
-2020,Saskatchewan,All employees,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,Saskatchewan,All employees,Motor vehicle body and trailer manufacturing,,0.21
-2020,Saskatchewan,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.09
-2020,Saskatchewan,All employees,Miscellaneous manufacturing,,0.11
-2020,Saskatchewan,All employees,Medical equipment and supplies manufacturing,,0.04
-2020,Saskatchewan,All employees,Other miscellaneous manufacturing,,0.07
-2020,Saskatchewan,Salaried employees paid a fixed salary,Manufacturing,,1.42
-2020,Saskatchewan,Salaried employees paid a fixed salary,Non-durable goods,,0.71
-2020,Saskatchewan,Salaried employees paid a fixed salary,Food manufacturing,,0.22
-2020,Saskatchewan,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2020,Saskatchewan,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2020,Saskatchewan,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,Saskatchewan,Salaried employees paid a fixed salary,Printing and related support activities,,
-2020,Saskatchewan,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2020,Saskatchewan,Salaried employees paid a fixed salary,Durable goods,,0.71
-2020,Saskatchewan,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,
-2020,Saskatchewan,Salaried employees paid a fixed salary,Machinery manufacturing,,
-2020,Saskatchewan,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2020,Saskatchewan,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2020,Saskatchewan,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,
-2020,Saskatchewan,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,Saskatchewan,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2020,Saskatchewan,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2020,Saskatchewan,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2020,Saskatchewan,Employees paid by the hour,Manufacturing,,3.6
-2020,Saskatchewan,Employees paid by the hour,Non-durable goods,,1.51
-2020,Saskatchewan,Employees paid by the hour,Food manufacturing,,0.84
-2020,Saskatchewan,Employees paid by the hour,Grain and oilseed milling,,
-2020,Saskatchewan,Employees paid by the hour,Meat product manufacturing,,
-2020,Saskatchewan,Employees paid by the hour,Cannabis product manufacturing,,
-2020,Saskatchewan,Employees paid by the hour,Printing and related support activities,,
-2020,Saskatchewan,Employees paid by the hour,Chemical manufacturing,,
-2020,Saskatchewan,Employees paid by the hour,Durable goods,,2.09
-2020,Saskatchewan,Employees paid by the hour,Fabricated metal product manufacturing,,
-2020,Saskatchewan,Employees paid by the hour,Machinery manufacturing,,
-2020,Saskatchewan,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2020,Saskatchewan,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2020,Saskatchewan,Employees paid by the hour,Computer and electronic product manufacturing,,
-2020,Saskatchewan,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,Saskatchewan,Employees paid by the hour,Transportation equipment manufacturing,,
-2020,Saskatchewan,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,
-2020,Saskatchewan,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2020,Alberta,All employees,Manufacturing,48,6.13
-2020,Alberta,All employees,Non-durable goods,,2.73
-2020,Alberta,All employees,Food manufacturing,,1.22
-2020,Alberta,All employees,Animal food manufacturing,,0.05
-2020,Alberta,All employees,Grain and oilseed milling,,0.06
-2020,Alberta,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.08
-2020,Alberta,All employees,Meat product manufacturing,,0.63
-2020,Alberta,All employees,Bakeries and tortilla manufacturing,,0.16
-2020,Alberta,All employees,Other food manufacturing,,0.15
-2020,Alberta,All employees,Beverage and tobacco product manufacturing,,0.2
-2020,Alberta,All employees,Cannabis product manufacturing,,
-2020,Alberta,All employees,Cut and sew clothing manufacturing,,0.01
-2020,Alberta,All employees,Other leather and allied product manufacturing,,
-2020,Alberta,All employees,Paper manufacturing,,0.13
-2020,Alberta,All employees,"Pulp, paper and paperboard mills",,0.1
-2020,Alberta,All employees,Converted paper product manufacturing,,0.03
-2020,Alberta,All employees,Printing and related support activities,,0.19
-2020,Alberta,All employees,Petroleum and coal product manufacturing,,0.17
-2020,Alberta,All employees,Chemical manufacturing,,0.49
-2020,Alberta,All employees,Basic chemical manufacturing,,0.17
-2020,Alberta,All employees,"Pesticide, fertilizer and other agricultural chemical manufacturing",,0.14
-2020,Alberta,All employees,Other chemical product manufacturing,,0.08
-2020,Alberta,All employees,Plastics and rubber products manufacturing,,0.3
-2020,Alberta,All employees,Durable goods,,3.4
-2020,Alberta,All employees,Wood product manufacturing,,0.48
-2020,Alberta,All employees,Sawmills and wood preservation,,0.17
-2020,Alberta,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.13
-2020,Alberta,All employees,Other wood product manufacturing,,0.18
-2020,Alberta,All employees,Non-metallic mineral product manufacturing,,0.32
-2020,Alberta,All employees,Glass and glass product manufacturing,,0.02
-2020,Alberta,All employees,Cement and concrete product manufacturing,,0.22
-2020,Alberta,All employees,Other non-metallic mineral product manufacturing,,0.07
-2020,Alberta,All employees,Primary metal manufacturing,,0.14
-2020,Alberta,All employees,Fabricated metal product manufacturing,,0.94
-2020,Alberta,All employees,Forging and stamping,,
-2020,Alberta,All employees,Architectural and structural metals manufacturing,,0.42
-2020,Alberta,All employees,"Boiler, tank and shipping container manufacturing",,0.12
-2020,Alberta,All employees,Spring and wire product manufacturing,,0.03
-2020,Alberta,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.18
-2020,Alberta,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.06
-2020,Alberta,All employees,Other fabricated metal product manufacturing,,0.12
-2020,Alberta,All employees,Machinery manufacturing,,0.79
-2020,Alberta,All employees,"Agricultural, construction and mining machinery manufacturing",,0.34
-2020,Alberta,All employees,Industrial machinery manufacturing,,0.04
-2020,Alberta,All employees,Commercial and service industry machinery manufacturing,,0.02
-2020,Alberta,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.15
-2020,Alberta,All employees,Metalworking machinery manufacturing,,0.03
-2020,Alberta,All employees,"Engine, turbine and power transmission equipment manufacturing",,0.02
-2020,Alberta,All employees,Other general-purpose machinery manufacturing,,0.19
-2020,Alberta,All employees,Computer and electronic product manufacturing,,0.17
-2020,Alberta,All employees,Computer and peripheral equipment manufacturing,,
-2020,Alberta,All employees,Communications equipment manufacturing,,
-2020,Alberta,All employees,Semiconductor and other electronic component manufacturing,,0.04
-2020,Alberta,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.1
-2020,Alberta,All employees,"Electrical equipment, appliance and component manufacturing",,0.09
-2020,Alberta,All employees,Electrical equipment manufacturing,,0.05
-2020,Alberta,All employees,Other electrical equipment and component manufacturing,,
-2020,Alberta,All employees,Transportation equipment manufacturing,,0.11
-2020,Alberta,All employees,Motor vehicle body and trailer manufacturing,,0.06
-2020,Alberta,All employees,Motor vehicle parts manufacturing,,0.01
-2020,Alberta,All employees,Aerospace product and parts manufacturing,,0.03
-2020,Alberta,All employees,Furniture and related product manufacturing,,0.16
-2020,Alberta,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.09
-2020,Alberta,All employees,Office furniture (including fixtures) manufacturing,,0.04
-2020,Alberta,All employees,Other furniture-related product manufacturing,,0.02
-2020,Alberta,All employees,Miscellaneous manufacturing,,0.21
-2020,Alberta,All employees,Medical equipment and supplies manufacturing,,0.06
-2020,Alberta,All employees,Other miscellaneous manufacturing,,0.14
-2020,Alberta,Salaried employees paid a fixed salary,Manufacturing,,1.89
-2020,Alberta,Salaried employees paid a fixed salary,Non-durable goods,,0.96
-2020,Alberta,Salaried employees paid a fixed salary,Food manufacturing,,0.24
-2020,Alberta,Salaried employees paid a fixed salary,Grain and oilseed milling,,
-2020,Alberta,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Paper manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2020,Alberta,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Printing and related support activities,,
-2020,Alberta,Salaried employees paid a fixed salary,Chemical manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2020,Alberta,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Durable goods,,0.93
-2020,Alberta,Salaried employees paid a fixed salary,Wood product manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2020,Alberta,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.17
-2020,Alberta,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.08
-2020,Alberta,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2020,Alberta,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2020,Alberta,Salaried employees paid a fixed salary,Machinery manufacturing,,0.26
-2020,Alberta,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,0.13
-2020,Alberta,Salaried employees paid a fixed salary,"Engine, turbine and power transmission equipment manufacturing",,
-2020,Alberta,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Computer and electronic product manufacturing,,0.09
-2020,Alberta,Salaried employees paid a fixed salary,Communications equipment manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,Alberta,Salaried employees paid a fixed salary,"Electrical equipment, appliance and component manufacturing",,
-2020,Alberta,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Motor vehicle parts manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,0.02
-2020,Alberta,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Other furniture-related product manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Miscellaneous manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2020,Alberta,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2020,Alberta,Employees paid by the hour,Manufacturing,,4.01
-2020,Alberta,Employees paid by the hour,Non-durable goods,,1.71
-2020,Alberta,Employees paid by the hour,Food manufacturing,,0.94
-2020,Alberta,Employees paid by the hour,Grain and oilseed milling,,
-2020,Alberta,Employees paid by the hour,Meat product manufacturing,,
-2020,Alberta,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2020,Alberta,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2020,Alberta,Employees paid by the hour,Cannabis product manufacturing,,
-2020,Alberta,Employees paid by the hour,Paper manufacturing,,
-2020,Alberta,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2020,Alberta,Employees paid by the hour,Converted paper product manufacturing,,
-2020,Alberta,Employees paid by the hour,Printing and related support activities,,
-2020,Alberta,Employees paid by the hour,Chemical manufacturing,,
-2020,Alberta,Employees paid by the hour,Basic chemical manufacturing,,
-2020,Alberta,Employees paid by the hour,"Pesticide, fertilizer and other agricultural chemical manufacturing",,
-2020,Alberta,Employees paid by the hour,Other chemical product manufacturing,,
-2020,Alberta,Employees paid by the hour,Plastics and rubber products manufacturing,,
-2020,Alberta,Employees paid by the hour,Durable goods,,2.3
-2020,Alberta,Employees paid by the hour,Wood product manufacturing,,
-2020,Alberta,Employees paid by the hour,Sawmills and wood preservation,,
-2020,Alberta,Employees paid by the hour,Other wood product manufacturing,,
-2020,Alberta,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2020,Alberta,Employees paid by the hour,Cement and concrete product manufacturing,,
-2020,Alberta,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2020,Alberta,Employees paid by the hour,Fabricated metal product manufacturing,,0.72
-2020,Alberta,Employees paid by the hour,Architectural and structural metals manufacturing,,0.31
-2020,Alberta,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2020,Alberta,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2020,Alberta,Employees paid by the hour,Machinery manufacturing,,0.49
-2020,Alberta,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,0.2
-2020,Alberta,Employees paid by the hour,"Engine, turbine and power transmission equipment manufacturing",,
-2020,Alberta,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2020,Alberta,Employees paid by the hour,Computer and electronic product manufacturing,,0.07
-2020,Alberta,Employees paid by the hour,Communications equipment manufacturing,,
-2020,Alberta,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,Alberta,Employees paid by the hour,"Electrical equipment, appliance and component manufacturing",,
-2020,Alberta,Employees paid by the hour,Electrical equipment manufacturing,,
-2020,Alberta,Employees paid by the hour,Transportation equipment manufacturing,,
-2020,Alberta,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2020,Alberta,Employees paid by the hour,Motor vehicle parts manufacturing,,
-2020,Alberta,Employees paid by the hour,Furniture and related product manufacturing,,0.12
-2020,Alberta,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.07
-2020,Alberta,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2020,Alberta,Employees paid by the hour,Other furniture-related product manufacturing,,
-2020,Alberta,Employees paid by the hour,Miscellaneous manufacturing,,
-2020,Alberta,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2020,Alberta,Employees paid by the hour,Other miscellaneous manufacturing,,
-2020,British Columbia,All employees,Manufacturing,59,6.68
-2020,British Columbia,All employees,Non-durable goods,,2.84
-2020,British Columbia,All employees,Food manufacturing,,1.22
-2020,British Columbia,All employees,Animal food manufacturing,,0.05
-2020,British Columbia,All employees,Grain and oilseed milling,,0.02
-2020,British Columbia,All employees,Sugar and confectionery product manufacturing,,0.05
-2020,British Columbia,All employees,Fruit and vegetable preserving and specialty food manufacturing,,0.08
-2020,British Columbia,All employees,Dairy product manufacturing,,0.1
-2020,British Columbia,All employees,Meat product manufacturing,,0.24
-2020,British Columbia,All employees,Seafood product preparation and packaging,,0.14
-2020,British Columbia,All employees,Bakeries and tortilla manufacturing,,0.28
-2020,British Columbia,All employees,Other food manufacturing,,0.25
-2020,British Columbia,All employees,Beverage and tobacco product manufacturing,,0.43
-2020,British Columbia,All employees,Cannabis product manufacturing,,
-2020,British Columbia,All employees,Fabric mills,,
-2020,British Columbia,All employees,Textile product mills,,0.04
-2020,British Columbia,All employees,Textile furnishings mills,,
-2020,British Columbia,All employees,Other textile product mills,,
-2020,British Columbia,All employees,Clothing manufacturing,,0.05
-2020,British Columbia,All employees,Cut and sew clothing manufacturing,,0.04
-2020,British Columbia,All employees,Other leather and allied product manufacturing,,
-2020,British Columbia,All employees,Paper manufacturing,,0.31
-2020,British Columbia,All employees,"Pulp, paper and paperboard mills",,0.25
-2020,British Columbia,All employees,Converted paper product manufacturing,,0.05
-2020,British Columbia,All employees,Printing and related support activities,,0.17
-2020,British Columbia,All employees,Petroleum and coal product manufacturing,,0.04
-2020,British Columbia,All employees,Chemical manufacturing,,0.33
-2020,British Columbia,All employees,Basic chemical manufacturing,,0.03
-2020,British Columbia,All employees,Pharmaceutical and medicine manufacturing,,0.16
-2020,British Columbia,All employees,"Paint, coating and adhesive manufacturing",,0.03
-2020,British Columbia,All employees,"Soap, cleaning compound and toilet preparation manufacturing",,0.08
-2020,British Columbia,All employees,Other chemical product manufacturing,,0.03
-2020,British Columbia,All employees,Plastics and rubber products manufacturing,,0.25
-2020,British Columbia,All employees,Plastic product manufacturing,,0.22
-2020,British Columbia,All employees,Durable goods,,3.85
-2020,British Columbia,All employees,Wood product manufacturing,,1.07
-2020,British Columbia,All employees,Sawmills and wood preservation,,0.58
-2020,British Columbia,All employees,"Veneer, plywood and engineered wood product manufacturing",,0.2
-2020,British Columbia,All employees,Other wood product manufacturing,,0.29
-2020,British Columbia,All employees,Non-metallic mineral product manufacturing,,0.28
-2020,British Columbia,All employees,Glass and glass product manufacturing,,0.06
-2020,British Columbia,All employees,Cement and concrete product manufacturing,,0.16
-2020,British Columbia,All employees,Other non-metallic mineral product manufacturing,,0.05
-2020,British Columbia,All employees,Primary metal manufacturing,,0.16
-2020,British Columbia,All employees,Fabricated metal product manufacturing,,0.56
-2020,British Columbia,All employees,Forging and stamping,,0.01
-2020,British Columbia,All employees,Cutlery and hand tool manufacturing,,
-2020,British Columbia,All employees,Architectural and structural metals manufacturing,,0.28
-2020,British Columbia,All employees,"Boiler, tank and shipping container manufacturing",,0.03
-2020,British Columbia,All employees,Spring and wire product manufacturing,,0.01
-2020,British Columbia,All employees,"Machine shops, turned product, and screw, nut and bolt manufacturing",,0.09
-2020,British Columbia,All employees,"Coating, engraving, cold and heat treating and allied activities",,0.03
-2020,British Columbia,All employees,Other fabricated metal product manufacturing,,0.07
-2020,British Columbia,All employees,Machinery manufacturing,,0.42
-2020,British Columbia,All employees,"Agricultural, construction and mining machinery manufacturing",,0.05
-2020,British Columbia,All employees,Industrial machinery manufacturing,,0.1
-2020,British Columbia,All employees,"Ventilation, heating, air-conditioning and commercial refrigeration equipment manufacturing",,0.05
-2020,British Columbia,All employees,Metalworking machinery manufacturing,,0.04
-2020,British Columbia,All employees,Other general-purpose machinery manufacturing,,0.11
-2020,British Columbia,All employees,Computer and electronic product manufacturing,,0.25
-2020,British Columbia,All employees,Computer and peripheral equipment manufacturing,,0.03
-2020,British Columbia,All employees,Communications equipment manufacturing,,0.05
-2020,British Columbia,All employees,Semiconductor and other electronic component manufacturing,,0.06
-2020,British Columbia,All employees,"Navigational, measuring, medical and control instruments manufacturing",,0.11
-2020,British Columbia,All employees,"Electrical equipment, appliance and component manufacturing",,0.19
-2020,British Columbia,All employees,Electrical equipment manufacturing,,0.05
-2020,British Columbia,All employees,Other electrical equipment and component manufacturing,,0.11
-2020,British Columbia,All employees,Transportation equipment manufacturing,,0.36
-2020,British Columbia,All employees,Motor vehicle body and trailer manufacturing,,0.06
-2020,British Columbia,All employees,Aerospace product and parts manufacturing,,0.09
-2020,British Columbia,All employees,Ship and boat building,,0.12
-2020,British Columbia,All employees,Furniture and related product manufacturing,,0.25
-2020,British Columbia,All employees,Household and institutional furniture and kitchen cabinet manufacturing,,0.21
-2020,British Columbia,All employees,Office furniture (including fixtures) manufacturing,,0.03
-2020,British Columbia,All employees,Other furniture-related product manufacturing,,0.02
-2020,British Columbia,All employees,Miscellaneous manufacturing,,0.3
-2020,British Columbia,All employees,Medical equipment and supplies manufacturing,,0.1
-2020,British Columbia,All employees,Other miscellaneous manufacturing,,0.2
-2020,British Columbia,Salaried employees paid a fixed salary,Manufacturing,,1.69
-2020,British Columbia,Salaried employees paid a fixed salary,Non-durable goods,,0.69
-2020,British Columbia,Salaried employees paid a fixed salary,Food manufacturing,,0.2
-2020,British Columbia,Salaried employees paid a fixed salary,Animal food manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Fruit and vegetable preserving and specialty food manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Meat product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Seafood product preparation and packaging,,
-2020,British Columbia,Salaried employees paid a fixed salary,Bakeries and tortilla manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Beverage and tobacco product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Clothing manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Other leather and allied product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Paper manufacturing,,0.08
-2020,British Columbia,Salaried employees paid a fixed salary,"Pulp, paper and paperboard mills",,
-2020,British Columbia,Salaried employees paid a fixed salary,Converted paper product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Printing and related support activities,,0.05
-2020,British Columbia,Salaried employees paid a fixed salary,Basic chemical manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Pharmaceutical and medicine manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,"Soap, cleaning compound and toilet preparation manufacturing",,
-2020,British Columbia,Salaried employees paid a fixed salary,Other chemical product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Plastics and rubber products manufacturing,,0.05
-2020,British Columbia,Salaried employees paid a fixed salary,Plastic product manufacturing,,0.04
-2020,British Columbia,Salaried employees paid a fixed salary,Durable goods,,
-2020,British Columbia,Salaried employees paid a fixed salary,Wood product manufacturing,,0.16
-2020,British Columbia,Salaried employees paid a fixed salary,Sawmills and wood preservation,,
-2020,British Columbia,Salaried employees paid a fixed salary,"Veneer, plywood and engineered wood product manufacturing",,
-2020,British Columbia,Salaried employees paid a fixed salary,Other wood product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Non-metallic mineral product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Glass and glass product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Cement and concrete product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Other non-metallic mineral product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Primary metal manufacturing,,0.04
-2020,British Columbia,Salaried employees paid a fixed salary,Fabricated metal product manufacturing,,0.12
-2020,British Columbia,Salaried employees paid a fixed salary,Forging and stamping,,
-2020,British Columbia,Salaried employees paid a fixed salary,Cutlery and hand tool manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Architectural and structural metals manufacturing,,0.07
-2020,British Columbia,Salaried employees paid a fixed salary,"Boiler, tank and shipping container manufacturing",,
-2020,British Columbia,Salaried employees paid a fixed salary,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2020,British Columbia,Salaried employees paid a fixed salary,Other fabricated metal product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Machinery manufacturing,,0.14
-2020,British Columbia,Salaried employees paid a fixed salary,"Agricultural, construction and mining machinery manufacturing",,
-2020,British Columbia,Salaried employees paid a fixed salary,Industrial machinery manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Other general-purpose machinery manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Semiconductor and other electronic component manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,British Columbia,Salaried employees paid a fixed salary,Electrical equipment manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Other electrical equipment and component manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Transportation equipment manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Motor vehicle body and trailer manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Aerospace product and parts manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Ship and boat building,,
-2020,British Columbia,Salaried employees paid a fixed salary,Furniture and related product manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Household and institutional furniture and kitchen cabinet manufacturing,,0.02
-2020,British Columbia,Salaried employees paid a fixed salary,Office furniture (including fixtures) manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Medical equipment and supplies manufacturing,,
-2020,British Columbia,Salaried employees paid a fixed salary,Other miscellaneous manufacturing,,
-2020,British Columbia,Employees paid by the hour,Manufacturing,,4.68
-2020,British Columbia,Employees paid by the hour,Non-durable goods,,2.03
-2020,British Columbia,Employees paid by the hour,Food manufacturing,,0.98
-2020,British Columbia,Employees paid by the hour,Animal food manufacturing,,
-2020,British Columbia,Employees paid by the hour,Fruit and vegetable preserving and specialty food manufacturing,,
-2020,British Columbia,Employees paid by the hour,Meat product manufacturing,,
-2020,British Columbia,Employees paid by the hour,Seafood product preparation and packaging,,
-2020,British Columbia,Employees paid by the hour,Bakeries and tortilla manufacturing,,
-2020,British Columbia,Employees paid by the hour,Beverage and tobacco product manufacturing,,
-2020,British Columbia,Employees paid by the hour,Cannabis product manufacturing,,
-2020,British Columbia,Employees paid by the hour,Clothing manufacturing,,
-2020,British Columbia,Employees paid by the hour,Other leather and allied product manufacturing,,
-2020,British Columbia,Employees paid by the hour,Paper manufacturing,,0.22
-2020,British Columbia,Employees paid by the hour,"Pulp, paper and paperboard mills",,
-2020,British Columbia,Employees paid by the hour,Converted paper product manufacturing,,
-2020,British Columbia,Employees paid by the hour,Printing and related support activities,,0.11
-2020,British Columbia,Employees paid by the hour,Basic chemical manufacturing,,
-2020,British Columbia,Employees paid by the hour,Pharmaceutical and medicine manufacturing,,
-2020,British Columbia,Employees paid by the hour,"Soap, cleaning compound and toilet preparation manufacturing",,
-2020,British Columbia,Employees paid by the hour,Other chemical product manufacturing,,
-2020,British Columbia,Employees paid by the hour,Plastics and rubber products manufacturing,,0.19
-2020,British Columbia,Employees paid by the hour,Plastic product manufacturing,,0.17
-2020,British Columbia,Employees paid by the hour,Durable goods,,
-2020,British Columbia,Employees paid by the hour,Wood product manufacturing,,0.88
-2020,British Columbia,Employees paid by the hour,Sawmills and wood preservation,,
-2020,British Columbia,Employees paid by the hour,"Veneer, plywood and engineered wood product manufacturing",,
-2020,British Columbia,Employees paid by the hour,Other wood product manufacturing,,0.24
-2020,British Columbia,Employees paid by the hour,Non-metallic mineral product manufacturing,,
-2020,British Columbia,Employees paid by the hour,Glass and glass product manufacturing,,
-2020,British Columbia,Employees paid by the hour,Cement and concrete product manufacturing,,
-2020,British Columbia,Employees paid by the hour,Other non-metallic mineral product manufacturing,,
-2020,British Columbia,Employees paid by the hour,Primary metal manufacturing,,0.13
-2020,British Columbia,Employees paid by the hour,Fabricated metal product manufacturing,,0.41
-2020,British Columbia,Employees paid by the hour,Forging and stamping,,
-2020,British Columbia,Employees paid by the hour,Cutlery and hand tool manufacturing,,
-2020,British Columbia,Employees paid by the hour,Architectural and structural metals manufacturing,,0.2
-2020,British Columbia,Employees paid by the hour,"Boiler, tank and shipping container manufacturing",,
-2020,British Columbia,Employees paid by the hour,"Machine shops, turned product, and screw, nut and bolt manufacturing",,
-2020,British Columbia,Employees paid by the hour,Other fabricated metal product manufacturing,,
-2020,British Columbia,Employees paid by the hour,Machinery manufacturing,,0.26
-2020,British Columbia,Employees paid by the hour,"Agricultural, construction and mining machinery manufacturing",,
-2020,British Columbia,Employees paid by the hour,Industrial machinery manufacturing,,
-2020,British Columbia,Employees paid by the hour,Other general-purpose machinery manufacturing,,
-2020,British Columbia,Employees paid by the hour,Semiconductor and other electronic component manufacturing,,
-2020,British Columbia,Employees paid by the hour,"Navigational, measuring, medical and control instruments manufacturing",,
-2020,British Columbia,Employees paid by the hour,Electrical equipment manufacturing,,
-2020,British Columbia,Employees paid by the hour,Other electrical equipment and component manufacturing,,
-2020,British Columbia,Employees paid by the hour,Transportation equipment manufacturing,,
-2020,British Columbia,Employees paid by the hour,Motor vehicle body and trailer manufacturing,,
-2020,British Columbia,Employees paid by the hour,Aerospace product and parts manufacturing,,
-2020,British Columbia,Employees paid by the hour,Ship and boat building,,
-2020,British Columbia,Employees paid by the hour,Furniture and related product manufacturing,,
-2020,British Columbia,Employees paid by the hour,Household and institutional furniture and kitchen cabinet manufacturing,,0.17
-2020,British Columbia,Employees paid by the hour,Office furniture (including fixtures) manufacturing,,
-2020,British Columbia,Employees paid by the hour,Medical equipment and supplies manufacturing,,
-2020,British Columbia,Employees paid by the hour,Other miscellaneous manufacturing,,
-2020,Yukon,All employees,Cannabis product manufacturing,,
-2020,Yukon,All employees,Durable goods,,
-2020,Yukon,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,Yukon,Salaried employees paid a fixed salary,Durable goods,,
-2020,Yukon,Employees paid by the hour,Cannabis product manufacturing,,
-2020,Yukon,Employees paid by the hour,Durable goods,,
-2020,Northwest Territories,All employees,Cannabis product manufacturing,,
-2020,Northwest Territories,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,Northwest Territories,Employees paid by the hour,Cannabis product manufacturing,,
-2020,Nunavut,All employees,Cannabis product manufacturing,,
-2020,Nunavut,Salaried employees paid a fixed salary,Cannabis product manufacturing,,
-2020,Nunavut,Employees paid by the hour,Cannabis product manufacturing,,
diff --git a/tests/assets/progress-calculation/data/temp/indicator_9-5-1.csv b/tests/assets/progress-calculation/data/temp/indicator_9-5-1.csv
deleted file mode 100644
index e761b306..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_9-5-1.csv
+++ /dev/null
@@ -1,457 +0,0 @@
-Year,Geography,Science type,GeoCode,Value
-2010,,,NA,1.83
-2011,,,NA,1.79
-2012,,,NA,1.77
-2013,,,NA,1.71
-2014,,,NA,1.71
-2015,,,NA,1.69
-2016,,,NA,1.73
-2017,,,NA,1.69
-2018,,,NA,1.74
-2019,,,NA,1.75
-2020,,,NA,1.84
-2021,,,NA,NA
-2010,Canada,Natural sciences and engineering,NA,1.67
-2010,Canada,"Social sciences, humanities and the arts",NA,0.16
-2010,Newfoundland and Labrador,Total sciences,10,0.86
-2010,Newfoundland and Labrador,Natural sciences and engineering,NA,0.72
-2010,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.14
-2010,Prince Edward Island,Total sciences,11,1.3
-2010,Prince Edward Island,Natural sciences and engineering,NA,1.07
-2010,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.23
-2010,Nova Scotia,Total sciences,12,1.42
-2010,Nova Scotia,Natural sciences and engineering,NA,1.19
-2010,Nova Scotia,"Social sciences, humanities and the arts",NA,0.23
-2010,New Brunswick,Total sciences,13,0.96
-2010,New Brunswick,Natural sciences and engineering,NA,0.79
-2010,New Brunswick,"Social sciences, humanities and the arts",NA,0.17
-2010,Quebec,Total sciences,24,2.42
-2010,Quebec,Natural sciences and engineering,NA,2.23
-2010,Quebec,"Social sciences, humanities and the arts",NA,0.18
-2010,Ontario,Total sciences,35,2.2
-2010,Ontario,Natural sciences and engineering,NA,2.01
-2010,Ontario,"Social sciences, humanities and the arts",NA,0.19
-2010,Manitoba,Total sciences,46,1.26
-2010,Manitoba,Natural sciences and engineering,NA,1.1
-2010,Manitoba,"Social sciences, humanities and the arts",NA,0.16
-2010,Saskatchewan,Total sciences,47,0.94
-2010,Saskatchewan,Natural sciences and engineering,NA,0.84
-2010,Saskatchewan,"Social sciences, humanities and the arts",NA,0.09
-2010,Alberta,Total sciences,48,1.1
-2010,Alberta,Natural sciences and engineering,NA,1.02
-2010,Alberta,"Social sciences, humanities and the arts",NA,0.08
-2010,British Columbia,Total sciences,59,1.46
-2010,British Columbia,Natural sciences and engineering,NA,1.33
-2010,British Columbia,"Social sciences, humanities and the arts",NA,0.13
-2010,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
-2010,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
-2010,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
-2010,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
-2010,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
-2010,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
-2010,"National Capital Region, Quebec",Total sciences,NA,NA
-2010,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
-2010,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
-2010,"National Capital Region, Ontario",Total sciences,NA,NA
-2010,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
-2010,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
-2011,Canada,Natural sciences and engineering,NA,1.64
-2011,Canada,"Social sciences, humanities and the arts",NA,0.15
-2011,Newfoundland and Labrador,Total sciences,10,0.91
-2011,Newfoundland and Labrador,Natural sciences and engineering,NA,0.74
-2011,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.17
-2011,Prince Edward Island,Total sciences,11,1.2
-2011,Prince Edward Island,Natural sciences and engineering,NA,0.98
-2011,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.24
-2011,Nova Scotia,Total sciences,12,1.34
-2011,Nova Scotia,Natural sciences and engineering,NA,1.12
-2011,Nova Scotia,"Social sciences, humanities and the arts",NA,0.22
-2011,New Brunswick,Total sciences,13,0.94
-2011,New Brunswick,Natural sciences and engineering,NA,0.79
-2011,New Brunswick,"Social sciences, humanities and the arts",NA,0.15
-2011,Quebec,Total sciences,24,2.43
-2011,Quebec,Natural sciences and engineering,NA,2.25
-2011,Quebec,"Social sciences, humanities and the arts",NA,0.18
-2011,Ontario,Total sciences,35,2.18
-2011,Ontario,Natural sciences and engineering,NA,2
-2011,Ontario,"Social sciences, humanities and the arts",NA,0.18
-2011,Manitoba,Total sciences,46,1.16
-2011,Manitoba,Natural sciences and engineering,NA,1
-2011,Manitoba,"Social sciences, humanities and the arts",NA,0.16
-2011,Saskatchewan,Total sciences,47,0.77
-2011,Saskatchewan,Natural sciences and engineering,NA,0.7
-2011,Saskatchewan,"Social sciences, humanities and the arts",NA,0.07
-2011,Alberta,Total sciences,48,1.1
-2011,Alberta,Natural sciences and engineering,NA,1.03
-2011,Alberta,"Social sciences, humanities and the arts",NA,0.07
-2011,British Columbia,Total sciences,59,1.39
-2011,British Columbia,Natural sciences and engineering,NA,1.27
-2011,British Columbia,"Social sciences, humanities and the arts",NA,0.12
-2011,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
-2011,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
-2011,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
-2011,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
-2011,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
-2011,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
-2011,"National Capital Region, Quebec",Total sciences,NA,NA
-2011,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
-2011,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
-2011,"National Capital Region, Ontario",Total sciences,NA,NA
-2011,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
-2011,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
-2012,Canada,Natural sciences and engineering,NA,1.6
-2012,Canada,"Social sciences, humanities and the arts",NA,0.17
-2012,Newfoundland and Labrador,Total sciences,10,1.18
-2012,Newfoundland and Labrador,Natural sciences and engineering,NA,0.99
-2012,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.19
-2012,Prince Edward Island,Total sciences,11,1.4
-2012,Prince Edward Island,Natural sciences and engineering,NA,1.13
-2012,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.27
-2012,Nova Scotia,Total sciences,12,1.35
-2012,Nova Scotia,Natural sciences and engineering,NA,1.05
-2012,Nova Scotia,"Social sciences, humanities and the arts",NA,0.29
-2012,New Brunswick,Total sciences,13,0.89
-2012,New Brunswick,Natural sciences and engineering,NA,0.68
-2012,New Brunswick,"Social sciences, humanities and the arts",NA,0.21
-2012,Quebec,Total sciences,24,2.33
-2012,Quebec,Natural sciences and engineering,NA,2.12
-2012,Quebec,"Social sciences, humanities and the arts",NA,0.21
-2012,Ontario,Total sciences,35,2.15
-2012,Ontario,Natural sciences and engineering,NA,1.94
-2012,Ontario,"Social sciences, humanities and the arts",NA,0.21
-2012,Manitoba,Total sciences,46,1.15
-2012,Manitoba,Natural sciences and engineering,NA,0.98
-2012,Manitoba,"Social sciences, humanities and the arts",NA,0.18
-2012,Saskatchewan,Total sciences,47,0.79
-2012,Saskatchewan,Natural sciences and engineering,NA,0.7
-2012,Saskatchewan,"Social sciences, humanities and the arts",NA,0.09
-2012,Alberta,Total sciences,48,1.19
-2012,Alberta,Natural sciences and engineering,NA,1.11
-2012,Alberta,"Social sciences, humanities and the arts",NA,0.08
-2012,British Columbia,Total sciences,59,1.35
-2012,British Columbia,Natural sciences and engineering,NA,1.21
-2012,British Columbia,"Social sciences, humanities and the arts",NA,0.14
-2012,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
-2012,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
-2012,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
-2012,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
-2012,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
-2012,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
-2012,"National Capital Region, Quebec",Total sciences,NA,NA
-2012,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
-2012,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
-2012,"National Capital Region, Ontario",Total sciences,NA,NA
-2012,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
-2012,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
-2013,Canada,Natural sciences and engineering,NA,1.53
-2013,Canada,"Social sciences, humanities and the arts",NA,0.18
-2013,Newfoundland and Labrador,Total sciences,10,0.91
-2013,Newfoundland and Labrador,Natural sciences and engineering,NA,0.76
-2013,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.16
-2013,Prince Edward Island,Total sciences,11,1.3
-2013,Prince Edward Island,Natural sciences and engineering,NA,1.06
-2013,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.23
-2013,Nova Scotia,Total sciences,12,1.36
-2013,Nova Scotia,Natural sciences and engineering,NA,1.09
-2013,Nova Scotia,"Social sciences, humanities and the arts",NA,0.27
-2013,New Brunswick,Total sciences,13,0.91
-2013,New Brunswick,Natural sciences and engineering,NA,0.71
-2013,New Brunswick,"Social sciences, humanities and the arts",NA,0.2
-2013,Quebec,Total sciences,24,2.31
-2013,Quebec,Natural sciences and engineering,NA,2.08
-2013,Quebec,"Social sciences, humanities and the arts",NA,0.23
-2013,Ontario,Total sciences,35,2.04
-2013,Ontario,Natural sciences and engineering,NA,1.83
-2013,Ontario,"Social sciences, humanities and the arts",NA,0.21
-2013,Manitoba,Total sciences,46,1.13
-2013,Manitoba,Natural sciences and engineering,NA,0.95
-2013,Manitoba,"Social sciences, humanities and the arts",NA,0.18
-2013,Saskatchewan,Total sciences,47,0.85
-2013,Saskatchewan,Natural sciences and engineering,NA,0.77
-2013,Saskatchewan,"Social sciences, humanities and the arts",NA,0.08
-2013,Alberta,Total sciences,48,1.09
-2013,Alberta,Natural sciences and engineering,NA,1.02
-2013,Alberta,"Social sciences, humanities and the arts",NA,0.07
-2013,British Columbia,Total sciences,59,1.4
-2013,British Columbia,Natural sciences and engineering,NA,1.23
-2013,British Columbia,"Social sciences, humanities and the arts",NA,0.17
-2013,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
-2013,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
-2013,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
-2013,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
-2013,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
-2013,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
-2013,"National Capital Region, Quebec",Total sciences,NA,NA
-2013,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
-2013,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
-2013,"National Capital Region, Ontario",Total sciences,NA,NA
-2013,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
-2013,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
-2014,Canada,Natural sciences and engineering,NA,1.54
-2014,Canada,"Social sciences, humanities and the arts",NA,0.17
-2014,Newfoundland and Labrador,Total sciences,10,1.05
-2014,Newfoundland and Labrador,Natural sciences and engineering,NA,0.89
-2014,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.16
-2014,Prince Edward Island,Total sciences,11,1.14
-2014,Prince Edward Island,Natural sciences and engineering,NA,0.96
-2014,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.19
-2014,Nova Scotia,Total sciences,12,1.48
-2014,Nova Scotia,Natural sciences and engineering,NA,1.2
-2014,Nova Scotia,"Social sciences, humanities and the arts",NA,0.28
-2014,New Brunswick,Total sciences,13,0.93
-2014,New Brunswick,Natural sciences and engineering,NA,0.72
-2014,New Brunswick,"Social sciences, humanities and the arts",NA,0.21
-2014,Quebec,Total sciences,24,2.41
-2014,Quebec,Natural sciences and engineering,NA,2.19
-2014,Quebec,"Social sciences, humanities and the arts",NA,0.22
-2014,Ontario,Total sciences,35,2.08
-2014,Ontario,Natural sciences and engineering,NA,1.88
-2014,Ontario,"Social sciences, humanities and the arts",NA,0.2
-2014,Manitoba,Total sciences,46,1.19
-2014,Manitoba,Natural sciences and engineering,NA,1.01
-2014,Manitoba,"Social sciences, humanities and the arts",NA,0.18
-2014,Saskatchewan,Total sciences,47,0.81
-2014,Saskatchewan,Natural sciences and engineering,NA,0.73
-2014,Saskatchewan,"Social sciences, humanities and the arts",NA,0.08
-2014,Alberta,Total sciences,48,1
-2014,Alberta,Natural sciences and engineering,NA,0.93
-2014,Alberta,"Social sciences, humanities and the arts",NA,0.07
-2014,British Columbia,Total sciences,59,1.35
-2014,British Columbia,Natural sciences and engineering,NA,1.19
-2014,British Columbia,"Social sciences, humanities and the arts",NA,0.16
-2014,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
-2014,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
-2014,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
-2014,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
-2014,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
-2014,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
-2014,"National Capital Region, Quebec",Total sciences,NA,NA
-2014,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
-2014,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
-2014,"National Capital Region, Ontario",Total sciences,NA,NA
-2014,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
-2014,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
-2015,Canada,Natural sciences and engineering,NA,1.52
-2015,Canada,"Social sciences, humanities and the arts",NA,0.18
-2015,Newfoundland and Labrador,Total sciences,10,1.19
-2015,Newfoundland and Labrador,Natural sciences and engineering,NA,1.03
-2015,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.17
-2015,Prince Edward Island,Total sciences,11,1.3
-2015,Prince Edward Island,Natural sciences and engineering,NA,1.08
-2015,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.21
-2015,Nova Scotia,Total sciences,12,1.52
-2015,Nova Scotia,Natural sciences and engineering,NA,1.23
-2015,Nova Scotia,"Social sciences, humanities and the arts",NA,0.28
-2015,New Brunswick,Total sciences,13,0.92
-2015,New Brunswick,Natural sciences and engineering,NA,0.72
-2015,New Brunswick,"Social sciences, humanities and the arts",NA,0.2
-2015,Quebec,Total sciences,24,2.26
-2015,Quebec,Natural sciences and engineering,NA,2.04
-2015,Quebec,"Social sciences, humanities and the arts",NA,0.22
-2015,Ontario,Total sciences,35,1.93
-2015,Ontario,Natural sciences and engineering,NA,1.73
-2015,Ontario,"Social sciences, humanities and the arts",NA,0.2
-2015,Manitoba,Total sciences,46,1.22
-2015,Manitoba,Natural sciences and engineering,NA,1.05
-2015,Manitoba,"Social sciences, humanities and the arts",NA,0.17
-2015,Saskatchewan,Total sciences,47,0.96
-2015,Saskatchewan,Natural sciences and engineering,NA,0.87
-2015,Saskatchewan,"Social sciences, humanities and the arts",NA,0.08
-2015,Alberta,Total sciences,48,1.09
-2015,Alberta,Natural sciences and engineering,NA,1.01
-2015,Alberta,"Social sciences, humanities and the arts",NA,0.08
-2015,British Columbia,Total sciences,59,1.43
-2015,British Columbia,Natural sciences and engineering,NA,1.26
-2015,British Columbia,"Social sciences, humanities and the arts",NA,0.17
-2015,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
-2015,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
-2015,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
-2015,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
-2015,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
-2015,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
-2015,"National Capital Region, Quebec",Total sciences,NA,NA
-2015,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
-2015,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
-2015,"National Capital Region, Ontario",Total sciences,NA,NA
-2015,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
-2015,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
-2016,Canada,Natural sciences and engineering,NA,1.55
-2016,Canada,"Social sciences, humanities and the arts",NA,0.18
-2016,Newfoundland and Labrador,Total sciences,10,1.15
-2016,Newfoundland and Labrador,Natural sciences and engineering,NA,0.98
-2016,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.17
-2016,Prince Edward Island,Total sciences,11,1.32
-2016,Prince Edward Island,Natural sciences and engineering,NA,1.13
-2016,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.19
-2016,Nova Scotia,Total sciences,12,1.54
-2016,Nova Scotia,Natural sciences and engineering,NA,1.24
-2016,Nova Scotia,"Social sciences, humanities and the arts",NA,0.29
-2016,New Brunswick,Total sciences,13,1.05
-2016,New Brunswick,Natural sciences and engineering,NA,0.86
-2016,New Brunswick,"Social sciences, humanities and the arts",NA,0.2
-2016,Quebec,Total sciences,24,2.21
-2016,Quebec,Natural sciences and engineering,NA,1.99
-2016,Quebec,"Social sciences, humanities and the arts",NA,0.22
-2016,Ontario,Total sciences,35,1.97
-2016,Ontario,Natural sciences and engineering,NA,1.78
-2016,Ontario,"Social sciences, humanities and the arts",NA,0.19
-2016,Manitoba,Total sciences,46,1.22
-2016,Manitoba,Natural sciences and engineering,NA,1.04
-2016,Manitoba,"Social sciences, humanities and the arts",NA,0.18
-2016,Saskatchewan,Total sciences,47,0.93
-2016,Saskatchewan,Natural sciences and engineering,NA,0.83
-2016,Saskatchewan,"Social sciences, humanities and the arts",NA,0.1
-2016,Alberta,Total sciences,48,1.07
-2016,Alberta,Natural sciences and engineering,NA,0.98
-2016,Alberta,"Social sciences, humanities and the arts",NA,0.09
-2016,British Columbia,Total sciences,59,1.59
-2016,British Columbia,Natural sciences and engineering,NA,1.43
-2016,British Columbia,"Social sciences, humanities and the arts",NA,0.16
-2016,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
-2016,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
-2016,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
-2016,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
-2016,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
-2016,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
-2016,"National Capital Region, Quebec",Total sciences,NA,NA
-2016,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
-2016,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
-2016,"National Capital Region, Ontario",Total sciences,NA,NA
-2016,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
-2016,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
-2017,Canada,Natural sciences and engineering,NA,1.51
-2017,Canada,"Social sciences, humanities and the arts",NA,0.18
-2017,Newfoundland and Labrador,Total sciences,10,1.24
-2017,Newfoundland and Labrador,Natural sciences and engineering,NA,1.04
-2017,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.21
-2017,Prince Edward Island,Total sciences,11,1.25
-2017,Prince Edward Island,Natural sciences and engineering,NA,1.08
-2017,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.19
-2017,Nova Scotia,Total sciences,12,1.55
-2017,Nova Scotia,Natural sciences and engineering,NA,1.26
-2017,Nova Scotia,"Social sciences, humanities and the arts",NA,0.29
-2017,New Brunswick,Total sciences,13,0.91
-2017,New Brunswick,Natural sciences and engineering,NA,0.72
-2017,New Brunswick,"Social sciences, humanities and the arts",NA,0.2
-2017,Quebec,Total sciences,24,2.26
-2017,Quebec,Natural sciences and engineering,NA,2.04
-2017,Quebec,"Social sciences, humanities and the arts",NA,0.22
-2017,Ontario,Total sciences,35,1.93
-2017,Ontario,Natural sciences and engineering,NA,1.73
-2017,Ontario,"Social sciences, humanities and the arts",NA,0.2
-2017,Manitoba,Total sciences,46,1.21
-2017,Manitoba,Natural sciences and engineering,NA,1.04
-2017,Manitoba,"Social sciences, humanities and the arts",NA,0.17
-2017,Saskatchewan,Total sciences,47,0.83
-2017,Saskatchewan,Natural sciences and engineering,NA,0.74
-2017,Saskatchewan,"Social sciences, humanities and the arts",NA,0.09
-2017,Alberta,Total sciences,48,1
-2017,Alberta,Natural sciences and engineering,NA,0.91
-2017,Alberta,"Social sciences, humanities and the arts",NA,0.09
-2017,British Columbia,Total sciences,59,1.49
-2017,British Columbia,Natural sciences and engineering,NA,1.34
-2017,British Columbia,"Social sciences, humanities and the arts",NA,0.16
-2017,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
-2017,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
-2017,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
-2017,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
-2017,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
-2017,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
-2017,"National Capital Region, Quebec",Total sciences,NA,NA
-2017,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
-2017,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
-2017,"National Capital Region, Ontario",Total sciences,NA,NA
-2017,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
-2017,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
-2018,Canada,Natural sciences and engineering,NA,1.56
-2018,Canada,"Social sciences, humanities and the arts",NA,0.18
-2018,Newfoundland and Labrador,Total sciences,10,1.53
-2018,Newfoundland and Labrador,Natural sciences and engineering,NA,1.3
-2018,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.23
-2018,Prince Edward Island,Total sciences,11,1.22
-2018,Prince Edward Island,Natural sciences and engineering,NA,1.03
-2018,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.19
-2018,Nova Scotia,Total sciences,12,1.46
-2018,Nova Scotia,Natural sciences and engineering,NA,1.19
-2018,Nova Scotia,"Social sciences, humanities and the arts",NA,0.28
-2018,New Brunswick,Total sciences,13,0.98
-2018,New Brunswick,Natural sciences and engineering,NA,0.78
-2018,New Brunswick,"Social sciences, humanities and the arts",NA,0.2
-2018,Quebec,Total sciences,24,2.26
-2018,Quebec,Natural sciences and engineering,NA,2.04
-2018,Quebec,"Social sciences, humanities and the arts",NA,0.22
-2018,Ontario,Total sciences,35,1.99
-2018,Ontario,Natural sciences and engineering,NA,1.79
-2018,Ontario,"Social sciences, humanities and the arts",NA,0.19
-2018,Manitoba,Total sciences,46,1.12
-2018,Manitoba,Natural sciences and engineering,NA,0.96
-2018,Manitoba,"Social sciences, humanities and the arts",NA,0.17
-2018,Saskatchewan,Total sciences,47,0.89
-2018,Saskatchewan,Natural sciences and engineering,NA,0.79
-2018,Saskatchewan,"Social sciences, humanities and the arts",NA,0.1
-2018,Alberta,Total sciences,48,1.05
-2018,Alberta,Natural sciences and engineering,NA,0.97
-2018,Alberta,"Social sciences, humanities and the arts",NA,0.09
-2018,British Columbia,Total sciences,59,1.6
-2018,British Columbia,Natural sciences and engineering,NA,1.44
-2018,British Columbia,"Social sciences, humanities and the arts",NA,0.16
-2018,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
-2018,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
-2018,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
-2018,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
-2018,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
-2018,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
-2018,"National Capital Region, Quebec",Total sciences,NA,NA
-2018,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
-2018,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
-2018,"National Capital Region, Ontario",Total sciences,NA,NA
-2018,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
-2018,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
-2019,Canada,Natural sciences and engineering,NA,1.56
-2019,Canada,"Social sciences, humanities and the arts",NA,0.18
-2019,Newfoundland and Labrador,Total sciences,10,1.62
-2019,Newfoundland and Labrador,Natural sciences and engineering,NA,1.42
-2019,Newfoundland and Labrador,"Social sciences, humanities and the arts",NA,0.2
-2019,Prince Edward Island,Total sciences,11,1.13
-2019,Prince Edward Island,Natural sciences and engineering,NA,0.97
-2019,Prince Edward Island,"Social sciences, humanities and the arts",NA,0.17
-2019,Nova Scotia,Total sciences,12,1.5
-2019,Nova Scotia,Natural sciences and engineering,NA,1.24
-2019,Nova Scotia,"Social sciences, humanities and the arts",NA,0.26
-2019,New Brunswick,Total sciences,13,0.93
-2019,New Brunswick,Natural sciences and engineering,NA,0.73
-2019,New Brunswick,"Social sciences, humanities and the arts",NA,0.2
-2019,Quebec,Total sciences,24,2.18
-2019,Quebec,Natural sciences and engineering,NA,1.96
-2019,Quebec,"Social sciences, humanities and the arts",NA,0.22
-2019,Ontario,Total sciences,35,2.02
-2019,Ontario,Natural sciences and engineering,NA,1.82
-2019,Ontario,"Social sciences, humanities and the arts",NA,0.2
-2019,Manitoba,Total sciences,46,1.17
-2019,Manitoba,Natural sciences and engineering,NA,1
-2019,Manitoba,"Social sciences, humanities and the arts",NA,0.18
-2019,Saskatchewan,Total sciences,47,0.95
-2019,Saskatchewan,Natural sciences and engineering,NA,0.84
-2019,Saskatchewan,"Social sciences, humanities and the arts",NA,0.11
-2019,Alberta,Total sciences,48,1.08
-2019,Alberta,Natural sciences and engineering,NA,0.99
-2019,Alberta,"Social sciences, humanities and the arts",NA,0.09
-2019,British Columbia,Total sciences,59,1.57
-2019,British Columbia,Natural sciences and engineering,NA,1.41
-2019,British Columbia,"Social sciences, humanities and the arts",NA,0.17
-2019,"Yukon, Northwest Territories and Nunavut",Total sciences,NA,NA
-2019,"Yukon, Northwest Territories and Nunavut",Natural sciences and engineering,NA,NA
-2019,"Yukon, Northwest Territories and Nunavut","Social sciences, humanities and the arts",NA,NA
-2019,"National Capital Region, Ontario/Quebec",Total sciences,NA,NA
-2019,"National Capital Region, Ontario/Quebec",Natural sciences and engineering,NA,NA
-2019,"National Capital Region, Ontario/Quebec","Social sciences, humanities and the arts",NA,NA
-2019,"National Capital Region, Quebec",Total sciences,NA,NA
-2019,"National Capital Region, Quebec",Natural sciences and engineering,NA,NA
-2019,"National Capital Region, Quebec","Social sciences, humanities and the arts",NA,NA
-2019,"National Capital Region, Ontario",Total sciences,NA,NA
-2019,"National Capital Region, Ontario",Natural sciences and engineering,NA,NA
-2019,"National Capital Region, Ontario","Social sciences, humanities and the arts",NA,NA
-2020,Canada,Natural sciences and engineering,NA,1.65
-2020,Canada,"Social sciences, humanities and the arts",NA,0.19
-2021,Canada,Natural sciences and engineering,NA,NA
-2021,Canada,"Social sciences, humanities and the arts",NA,NA
diff --git a/tests/assets/progress-calculation/data/temp/indicator_9-5-2.csv b/tests/assets/progress-calculation/data/temp/indicator_9-5-2.csv
deleted file mode 100644
index e3646cd9..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_9-5-2.csv
+++ /dev/null
@@ -1,739 +0,0 @@
-Year,Type of science,Value
-2010,,70550.79959944433
-2010,,68329.85066142055
-2010,,67303.44623678036
-2010,,69489.09354968125
-2010,,69517.50052468931
-2010,,66024.18001389063
-2010,,57068.350013937976
-2010,,60226.420365685895
-2010,,69403.25275802036
-2010,,80080.9591948497
-2010,,108350.18978014459
-2010,,142335.79261640925
-2010,,173704.36100202432
-2010,,231594.4047165501
-2010,,379661.11428838066
-2010,,981224.0253314862
-2010,,3851344.790756384
-2010,,27631487.286659703
-2011,,73830.70453989519
-2011,,70182.00135603019
-2011,,69712.54027683185
-2011,,70972.41232263345
-2011,,72653.66293717064
-2011,,69201.65765424403
-2011,,60698.97572776271
-2011,,61351.53986419422
-2011,,70168.75777498311
-2011,,80539.21762321012
-2011,,107770.08613121057
-2011,,143206.32987591097
-2011,,179662.9388329853
-2011,,235612.44250614004
-2011,,387097.9843238212
-2011,,943218.3684778821
-2011,,3827252.074736891
-2011,,27361617.500828635
-2012,,73528.84297298786
-2012,,67611.98195284358
-2012,,67783.11584205388
-2012,,68236.91668288942
-2012,,70501.83748059007
-2012,,67852.96327105115
-2012,,60798.83933251085
-2012,,59272.785028587314
-2012,,66448.9670370521
-2012,,78057.59809249433
-2012,,98256.26893724038
-2012,,135329.68132745192
-2012,,174663.9456605862
-2012,,226193.92570133557
-2012,,369673.8844468847
-2012,,859356.718926163
-2012,,3593843.827146765
-2012,,24248199.279711884
-2013,,75721.39982263456
-2013,,67525.14967309253
-2013,,68169.93980139348
-2013,,67659.0996450976
-2013,,70408.76957471238
-2013,,68710.82457621588
-2013,,63304.816357061354
-2013,,59102.13437051536
-2013,,65055.398956211095
-2013,,77307.13251514209
-2013,,93719.25348539474
-2013,,130724.13817966818
-2013,,173720.94137437252
-2013,,225451.4002111232
-2013,,363891.4101823583
-2013,,821861.9199443933
-2013,,3492359.059971748
-2013,,23125000
-2014,,4544.834580763787
-2014,,3974.3561171655037
-2014,,3990.062548270227
-2014,,3934.0854803649095
-2014,,4099.142202350345
-2014,,4076.342314549706
-2014,,3846.4441960032927
-2014,,3455.8466250051138
-2014,,3752.3978523659393
-2014,,4434.499949116071
-2014,,5283.869438494224
-2014,,7384.844734214606
-2014,,10015.111065813735
-2014,,13177.628410036345
-2014,,21045.17829396377
-2014,,46112.51837557521
-2014,,195350.53554040895
-2014,,1246601.941747573
-2014,,76450.44171733393
-2014,,66854.20014741848
-2014,,67118.40417386232
-2014,,66176.79200044773
-2014,,68953.27573818613
-2014,,68569.7498996788
-2014,,64702.543645957776
-2014,,58132.14899112964
-2014,,63120.55328190638
-2014,,74594.45968404073
-2014,,88882.03638023669
-2014,,124223.36432974291
-2014,,168468.10400323645
-2014,,221666.04632832683
-2014,,354009.1829531871
-2014,,775676.7239521733
-2014,,3286067.8351184684
-2014,,20969579.28802589
-2015,,3382.7672852002497
-2015,,2955.3898923161114
-2015,,2914.1115026319612
-2015,,2877.4627606328954
-2015,,2985.793442978304
-2015,,3012.8659589552335
-2015,,2894.739424388425
-2015,,2543.697343129682
-2015,,2707.8007609379088
-2015,,3156.1899437903967
-2015,,3720.4335881585116
-2015,,5214.655243527346
-2015,,7202.2656618760075
-2015,,9632.561322545227
-2015,,15155.244934873119
-2015,,32941.570587085786
-2015,,132366.13819922225
-2015,,894956.3898369359
-2015,,77860.98259833796
-2015,,68024.05887737761
-2015,,67073.9562809187
-2015,,66230.41404982157
-2015,,68723.85585702604
-2015,,69346.98258069842
-2015,,66628.07014100817
-2015,,58548.15240627302
-2015,,62325.31242972339
-2015,,72645.86345198913
-2015,,85633.03072405524
-2015,,120025.45458830739
-2015,,165774.182522502
-2015,,221712.17416976983
-2015,,348827.5020602999
-2015,,758214.4552078389
-2015,,3046664.672449895
-2015,,20599165.718619645
-2016,,3291.9946464296972
-2016,,2873.670351471667
-2016,,2781.713357008985
-2016,,2756.503499875435
-2016,,2846.443501623427
-2016,,2928.8978036682097
-2016,,2821.747031612616
-2016,,2508.6266037291502
-2016,,2573.2880694712753
-2016,,2965.6400767780874
-2016,,3483.681794614106
-2016,,4820.167694055665
-2016,,6763.278356227589
-2016,,9238.074332831928
-2016,,14271.537851821493
-2016,,30722.378969053698
-2016,,116054.81306039587
-2016,,793705.8891588568
-2016,,76291.73598970748
-2016,,66597.10094416409
-2016,,64466.00429989627
-2016,,63881.7676982794
-2016,,65966.1206833954
-2016,,67876.99312349447
-2016,,65393.78179092911
-2016,,58137.238696918415
-2016,,59635.763452557345
-2016,,68728.49262480762
-2016,,80734.07167751466
-2016,,111707.03498556408
-2016,,156738.48295525686
-2016,,214091.69933434692
-2016,,330741.8495164112
-2016,,711988.8933673698
-2016,,2689561.8338690577
-2016,,18394076.13097304
-2017,,2707.359329722883
-2017,,2356.9397926809106
-2017,,2251.6994164279376
-2017,,2250.419170390527
-2017,,2304.6296997547975
-2017,,2404.6938263947013
-2017,,2340.6884436158757
-2017,,2123.913464410565
-2017,,2098.874024542735
-2017,,2370.1286736994443
-2017,,2835.6159373639493
-2017,,3691.2931134557416
-2017,,5351.284402802334
-2017,,7530.190609612834
-2017,,11464.753983799452
-2017,,24643.196126751365
-2017,,88524.64144392135
-2017,,628749.1668518108
-2017,,77705.03941934317
-2017,,67647.5034136067
-2017,,64626.95586549795
-2017,,64590.210994689245
-2017,,66146.12981010014
-2017,,69018.11167805994
-2017,,67181.0667253355
-2017,,60959.31842641278
-2017,,60240.6511107716
-2017,,68026.04294036656
-2017,,81386.185340066
-2017,,105945.32973160518
-2017,,153589.42601329312
-2017,,216127.11387484186
-2017,,329054.64393431466
-2017,,707294.5602103815
-2017,,2540782.3326086616
-2017,,18045989.780048877
-2018,,3033.619050557944
-2018,,2622.658538477356
-2018,,2481.467630827517
-2018,,2502.644617806219
-2018,,2538.3947096517395
-2018,,2683.097243170069
-2018,,2654.132846202347
-2018,,2476.6213149115083
-2018,,2342.3667801804245
-2018,,2600.2182718436648
-2018,,3138.1492875075137
-2018,,3930.817610062893
-2018,,5758.390894713364
-2018,,8336.605788135405
-2018,,12684.208854729086
-2018,,27017.999315036635
-2018,,94278.37941514945
-2018,,675689.9651052131
-2018,,79491.26350945573
-2018,,68722.68320542229
-2018,,65022.9953217151
-2018,,65577.9052903714
-2018,,66514.68077998234
-2018,,70306.38535154871
-2018,,69547.41843006588
-2018,,64896.005159433946
-2018,,61378.074127294254
-2018,,68134.67096048563
-2018,,82230.3156025443
-2018,,103000.95471501265
-2018,,150889.66688745003
-2018,,218447.77357830864
-2018,,332369.94219653175
-2018,,707964.6017699115
-2018,,2470418.1297766236
-2018,,17705403.40488527
-2010,Natural sciences and engineering,58389.16863357517
-2010,Natural sciences and engineering,56551.06952194083
-2010,Natural sciences and engineering,55701.597915994134
-2010,Natural sciences and engineering,57510.48073874098
-2010,Natural sciences and engineering,57533.99088552221
-2010,Natural sciences and engineering,54642.85313011458
-2010,Natural sciences and engineering,47230.839785265314
-2010,Natural sciences and engineering,49844.518203820844
-2010,Natural sciences and engineering,57439.437285110624
-2010,Natural sciences and engineering,66276.50795333237
-2010,Natural sciences and engineering,89672.6548596419
-2010,Natural sciences and engineering,117799.77895159902
-2010,Natural sciences and engineering,143760.99611228926
-2010,Natural sciences and engineering,191671.88505817595
-2010,Natural sciences and engineering,314214.67866637633
-2010,Natural sciences and engineering,812079.4577478726
-2010,Natural sciences and engineering,3187445.3830468976
-2010,Natural sciences and engineering,22868338.557993732
-2010,Social sciences and humanities,12161.630965869172
-2010,Social sciences and humanities,11778.781139479717
-2010,Social sciences and humanities,11601.848320786226
-2010,Social sciences and humanities,11978.612810940262
-2010,Social sciences and humanities,11983.509639167105
-2010,Social sciences and humanities,11381.326883776053
-2010,Social sciences and humanities,9837.510228672656
-2010,Social sciences and humanities,10381.902161865053
-2010,Social sciences and humanities,11963.815472909722
-2010,Social sciences and humanities,13804.451241517329
-2010,Social sciences and humanities,18677.534920502676
-2010,Social sciences and humanities,24536.013664810245
-2010,Social sciences and humanities,29943.364889735065
-2010,Social sciences and humanities,39922.51965837417
-2010,Social sciences and humanities,65446.43562200436
-2010,Social sciences and humanities,169144.5675836137
-2010,Social sciences and humanities,663899.4077094864
-2010,Social sciences and humanities,4763148.72866597
-2011,Natural sciences and engineering,61582.230903627904
-2011,Natural sciences and engineering,58538.84558896982
-2011,Natural sciences and engineering,58147.26784689589
-2011,Natural sciences and engineering,59198.12780708572
-2011,Natural sciences and engineering,60600.45986116154
-2011,Natural sciences and engineering,57721.14037290095
-2011,Natural sciences and engineering,50629.048743005464
-2011,Natural sciences and engineering,51173.352844931476
-2011,Natural sciences and engineering,58527.79911079906
-2011,Natural sciences and engineering,67177.8053233935
-2011,Natural sciences and engineering,89891.08759012118
-2011,Natural sciences and engineering,119448.47781472866
-2011,Natural sciences and engineering,149856.9552192029
-2011,Natural sciences and engineering,196524.46673240792
-2011,Natural sciences and engineering,322878.63974096556
-2011,Natural sciences and engineering,786738.955318529
-2011,Natural sciences and engineering,3192313.041865641
-2011,Natural sciences and engineering,22822340.07292012
-2011,Social sciences and humanities,12244.0017583424
-2011,Social sciences and humanities,11638.904888722633
-2011,Social sciences and humanities,11561.049986551518
-2011,Social sciences and humanities,11769.985762530005
-2011,Social sciences and humanities,12048.802490731267
-2011,Social sciences and humanities,11476.325781788019
-2011,Social sciences and humanities,10066.250487135934
-2011,Social sciences and humanities,10174.47099625462
-2011,Social sciences and humanities,11636.70858800144
-2011,Social sciences and humanities,13356.534091602018
-2011,Social sciences and humanities,17872.470976817352
-2011,Social sciences and humanities,23749.178146592625
-2011,Social sciences and humanities,29795.10154601537
-2011,Social sciences and humanities,39073.70488078809
-2011,Social sciences and humanities,64195.89830882025
-2011,Social sciences and humanities,156422.2830340667
-2011,Social sciences and humanities,634707.2186934954
-2011,Social sciences and humanities,4537620.152469341
-2012,Natural sciences and engineering,60373.82811842334
-2012,Natural sciences and engineering,55515.55025374891
-2012,Natural sciences and engineering,55656.06664969187
-2012,Natural sciences and engineering,56028.67816997196
-2012,Natural sciences and engineering,57888.38292545758
-2012,Natural sciences and engineering,55713.41770408483
-2012,Natural sciences and engineering,49921.34415890549
-2012,Natural sciences and engineering,48668.31559869401
-2012,Natural sciences and engineering,54560.609855041
-2012,Natural sciences and engineering,64092.345534452295
-2012,Natural sciences and engineering,80677.28054083207
-2012,Natural sciences and engineering,111117.9040691028
-2012,Natural sciences and engineering,143414.891455205
-2012,Natural sciences and engineering,185725.6641008305
-2012,Natural sciences and engineering,303535.68282946135
-2012,Natural sciences and engineering,705609.5641260184
-2012,Natural sciences and engineering,2950870.7159219803
-2012,Natural sciences and engineering,19909963.98559424
-2012,Social sciences and humanities,13155.014854564508
-2012,Social sciences and humanities,12096.431699094672
-2012,Social sciences and humanities,12127.049192362014
-2012,Social sciences and humanities,12208.238512917465
-2012,Social sciences and humanities,12613.45455513249
-2012,Social sciences and humanities,12139.545566966328
-2012,Social sciences and humanities,10877.49517360535
-2012,Social sciences and humanities,10604.469429893306
-2012,Social sciences and humanities,11888.35718201112
-2012,Social sciences and humanities,13965.252558042024
-2012,Social sciences and humanities,17578.988396408316
-2012,Social sciences and humanities,24211.777258349128
-2012,Social sciences and humanities,31249.05420538119
-2012,Social sciences and humanities,40468.261600505044
-2012,Social sciences and humanities,66138.20161742333
-2012,Social sciences and humanities,153747.15480014464
-2012,Social sciences and humanities,642973.1112247849
-2012,Social sciences and humanities,4338235.294117646
-2013,Natural sciences and engineering,61971.16953064055
-2013,Natural sciences and engineering,55263.274421430266
-2013,Natural sciences and engineering,55790.97726958439
-2013,Natural sciences and engineering,55372.900451102134
-2013,Natural sciences and engineering,57623.25849731625
-2013,Natural sciences and engineering,56233.64291173542
-2013,Natural sciences and engineering,51809.3103899122
-2013,Natural sciences and engineering,48369.792387317655
-2013,Natural sciences and engineering,53242.00512724417
-2013,Natural sciences and engineering,63268.94941516256
-2013,Natural sciences and engineering,76700.79739192016
-2013,Natural sciences and engineering,106985.97421408891
-2013,Natural sciences and engineering,142174.9985360894
-2013,Natural sciences and engineering,184511.7361291499
-2013,Natural sciences and engineering,297812.458881854
-2013,Natural sciences and engineering,672620.2168865249
-2013,Natural sciences and engineering,2858182.4408201706
-2013,Natural sciences and engineering,18925736.961451247
-2013,Social sciences and humanities,13750.230291994007
-2013,Social sciences and humanities,12261.875251662264
-2013,Social sciences and humanities,12378.962531809088
-2013,Social sciences and humanities,12286.199193995477
-2013,Social sciences and humanities,12785.511077396139
-2013,Social sciences and humanities,12477.181664480457
-2013,Social sciences and humanities,11495.505967149158
-2013,Social sciences and humanities,10732.341983197708
-2013,Social sciences and humanities,11813.393828966937
-2013,Social sciences and humanities,14038.183099979533
-2013,Social sciences and humanities,17018.45609347457
-2013,Social sciences and humanities,23738.16396557926
-2013,Social sciences and humanities,31545.942838283125
-2013,Social sciences and humanities,40939.664081973286
-2013,Social sciences and humanities,66078.95130050422
-2013,Social sciences and humanities,149241.7030578683
-2013,Social sciences and humanities,634176.6191515775
-2013,Social sciences and humanities,4199263.038548753
-2014,Natural sciences and engineering,4544.834580763787
-2014,Natural sciences and engineering,3974.3561171655037
-2014,Natural sciences and engineering,3990.062548270227
-2014,Natural sciences and engineering,3934.0854803649095
-2014,Natural sciences and engineering,4099.142202350345
-2014,Natural sciences and engineering,4076.342314549706
-2014,Natural sciences and engineering,3846.4441960032927
-2014,Natural sciences and engineering,3455.8466250051138
-2014,Natural sciences and engineering,3752.3978523659393
-2014,Natural sciences and engineering,4434.499949116071
-2014,Natural sciences and engineering,5283.869438494224
-2014,Natural sciences and engineering,7384.844734214606
-2014,Natural sciences and engineering,10015.111065813735
-2014,Natural sciences and engineering,13177.628410036345
-2014,Natural sciences and engineering,21045.17829396377
-2014,Natural sciences and engineering,46112.51837557521
-2014,Natural sciences and engineering,195350.53554040895
-2014,Natural sciences and engineering,1246601.941747573
-2014,Natural sciences and engineering,62565.8068921968
-2014,Natural sciences and engineering,54712.39776247465
-2014,Natural sciences and engineering,54928.618071047145
-2014,Natural sciences and engineering,54158.017874556186
-2014,Natural sciences and engineering,56430.24732768279
-2014,Natural sciences and engineering,56116.37597506278
-2014,Natural sciences and engineering,52951.516829092056
-2014,Natural sciences and engineering,47574.41194983676
-2014,Natural sciences and engineering,51656.84146294419
-2014,Natural sciences and engineering,61046.90116867263
-2014,Natural sciences and engineering,72739.62320469151
-2014,Natural sciences and engineering,101662.39526633754
-2014,Natural sciences and engineering,137871.5757004078
-2014,Natural sciences and engineering,181407.91259797697
-2014,Natural sciences and engineering,289715.39838325826
-2014,Natural sciences and engineering,634801.3043665633
-2014,Natural sciences and engineering,2689264.8490749756
-2014,Natural sciences and engineering,17161165.04854369
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,0
-2014,Social sciences and humanities,13884.634825137136
-2014,Social sciences and humanities,12141.802384943836
-2014,Social sciences and humanities,12189.78610281517
-2014,Social sciences and humanities,12018.774125891552
-2014,Social sciences and humanities,12523.028410503339
-2014,Social sciences and humanities,12453.373924616028
-2014,Social sciences and humanities,11751.026816865719
-2014,Social sciences and humanities,10557.737041292881
-2014,Social sciences and humanities,11463.711818962194
-2014,Social sciences and humanities,13547.558515368099
-2014,Social sciences and humanities,16142.413175545176
-2014,Social sciences and humanities,22560.969063405373
-2014,Social sciences and humanities,30596.52830282867
-2014,Social sciences and humanities,40258.13373034987
-2014,Social sciences and humanities,64293.78456992878
-2014,Social sciences and humanities,140875.41958560984
-2014,Social sciences and humanities,596802.9860434923
-2014,Social sciences and humanities,3808414.2394822007
-2015,Natural sciences and engineering,3382.7672852002497
-2015,Natural sciences and engineering,2955.3898923161114
-2015,Natural sciences and engineering,2914.1115026319612
-2015,Natural sciences and engineering,2877.4627606328954
-2015,Natural sciences and engineering,2985.793442978304
-2015,Natural sciences and engineering,3012.8659589552335
-2015,Natural sciences and engineering,2894.739424388425
-2015,Natural sciences and engineering,2543.697343129682
-2015,Natural sciences and engineering,2707.8007609379088
-2015,Natural sciences and engineering,3156.1899437903967
-2015,Natural sciences and engineering,3720.4335881585116
-2015,Natural sciences and engineering,5214.655243527346
-2015,Natural sciences and engineering,7202.2656618760075
-2015,Natural sciences and engineering,9632.561322545227
-2015,Natural sciences and engineering,15155.244934873119
-2015,Natural sciences and engineering,32941.570587085786
-2015,Natural sciences and engineering,132366.13819922225
-2015,Natural sciences and engineering,894956.3898369359
-2015,Natural sciences and engineering,63646.67091264481
-2015,Natural sciences and engineering,55605.57733833746
-2015,Natural sciences and engineering,54828.92560248638
-2015,Natural sciences and engineering,54139.38055704915
-2015,Natural sciences and engineering,56177.61928518924
-2015,Natural sciences and engineering,56686.98790853484
-2015,Natural sciences and engineering,54464.440497568095
-2015,Natural sciences and engineering,47859.593655127814
-2015,Natural sciences and engineering,50947.194825499835
-2015,Natural sciences and engineering,59383.624634508305
-2015,Natural sciences and engineering,69999.85286420837
-2015,Natural sciences and engineering,98113.59110032172
-2015,Natural sciences and engineering,135510.42497436484
-2015,Natural sciences and engineering,181236.3691774364
-2015,Natural sciences and engineering,285145.50533537404
-2015,Natural sciences and engineering,619794.7200431777
-2015,Natural sciences and engineering,2490465.1510619204
-2015,Natural sciences and engineering,16838579.193527997
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,0
-2015,Social sciences and humanities,14209.53376579879
-2015,Social sciences and humanities,12414.307259531237
-2015,Social sciences and humanities,12240.91470173369
-2015,Social sciences and humanities,12086.96927983366
-2015,Social sciences and humanities,12542.019349459712
-2015,Social sciences and humanities,12655.739211769582
-2015,Social sciences and humanities,12159.541028433863
-2015,Social sciences and humanities,10684.965958287674
-2015,Social sciences and humanities,11374.2930268776
-2015,Social sciences and humanities,13257.78092208
-2015,Social sciences and humanities,15627.923010146063
-2015,Social sciences and humanities,21904.4981557208
-2015,Social sciences and humanities,30253.584856524358
-2015,Social sciences and humanities,40462.19967973094
-2015,Social sciences and humanities,63660.591011741024
-2015,Social sciences and humanities,138373.20752258916
-2015,Social sciences and humanities,556012.5635656596
-2015,Social sciences and humanities,3759322.4623941346
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Natural sciences and engineering,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2016,Social sciences and humanities,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Natural sciences and engineering,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2017,Social sciences and humanities,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Natural sciences and engineering,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
-2018,Social sciences and humanities,NA
diff --git a/tests/assets/progress-calculation/data/temp/indicator_9-c-1.csv b/tests/assets/progress-calculation/data/temp/indicator_9-c-1.csv
deleted file mode 100644
index 2b01110f..00000000
--- a/tests/assets/progress-calculation/data/temp/indicator_9-c-1.csv
+++ /dev/null
@@ -1,13 +0,0 @@
-Year,Units,Value
-2016,Evolved High-Speed Packet Access (HSPA+),99.4
-2017,Evolved High-Speed Packet Access (HSPA+),99.4
-2018,Evolved High-Speed Packet Access (HSPA+),99.5
-2019,Evolved High-Speed Packet Access (HSPA+),99.5
-2016,Long-Term Evolution (LTE),98.5
-2017,Long-Term Evolution (LTE),99
-2018,Long-Term Evolution (LTE),99.3
-2019,Long-Term Evolution (LTE),99.5
-2016,Long-Term Evolution - A (LTE-A),83
-2017,Long-Term Evolution - A (LTE-A),92
-2018,Long-Term Evolution - A (LTE-A),94.9
-2019,Long-Term Evolution - A (LTE-A),96
diff --git a/tests/assets/progress-calculation/indicator-config/1-1-1.yml b/tests/assets/progress-calculation/indicator-config/1-1-1.yml
new file mode 100644
index 00000000..9f876a4c
--- /dev/null
+++ b/tests/assets/progress-calculation/indicator-config/1-1-1.yml
@@ -0,0 +1,3 @@
+foo: bar
+page_content: Hello world
+auto_progress_calculation: true
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/indicator-config/3-3-3.yml b/tests/assets/progress-calculation/indicator-config/3-3-3.yml
deleted file mode 100644
index a8f2719f..00000000
--- a/tests/assets/progress-calculation/indicator-config/3-3-3.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-foo: bar
-page_content: Hello world
-auto_progress_calculation: true
-progress_calculation_options:
-  - direction: negative
-    target: 0
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/indicator-config/temp/1-2-1.yml b/tests/assets/progress-calculation/indicator-config/temp/1-2-1.yml
deleted file mode 100644
index 2da11fdf..00000000
--- a/tests/assets/progress-calculation/indicator-config/temp/1-2-1.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-auto_progress_calculation: true
-progress_calculation_options:
-- direction: negative
-  target: 7.25
diff --git a/tests/assets/progress-calculation/indicator-config/temp/1-a-2.yml b/tests/assets/progress-calculation/indicator-config/temp/1-a-2.yml
deleted file mode 100644
index 0c076c8e..00000000
--- a/tests/assets/progress-calculation/indicator-config/temp/1-a-2.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-auto_progress_calculation: true
-progress_calculation_options:
-- direction: positive
diff --git a/tests/assets/progress-calculation/indicator-config/temp/17-8-1.yml b/tests/assets/progress-calculation/indicator-config/temp/17-8-1.yml
deleted file mode 100644
index 53b13021..00000000
--- a/tests/assets/progress-calculation/indicator-config/temp/17-8-1.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-foo: bar
-page_content: Hello world
-auto_progress_calculation: true
-progress_calculation_options:
-    - direction: positive
diff --git a/tests/assets/progress-calculation/indicator-config/temp/3-1-1.yml b/tests/assets/progress-calculation/indicator-config/temp/3-1-1.yml
deleted file mode 100644
index 3819a00f..00000000
--- a/tests/assets/progress-calculation/indicator-config/temp/3-1-1.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-foo: bar
-page_content: Hello world
-auto_progress_calculation: true
-progress_calculation_options:
-- direction: negative
-  target: 70
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/indicator-config/temp/3-2-1.yml b/tests/assets/progress-calculation/indicator-config/temp/3-2-1.yml
deleted file mode 100644
index 0859d5ff..00000000
--- a/tests/assets/progress-calculation/indicator-config/temp/3-2-1.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-foo: bar
-page_content: Hello world
-auto_progress_calculation: true
-progress_calculation_options:
-- direction: negative
-  target: 25
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/indicator-config/temp/3-2-2.yml b/tests/assets/progress-calculation/indicator-config/temp/3-2-2.yml
deleted file mode 100644
index 4e77618d..00000000
--- a/tests/assets/progress-calculation/indicator-config/temp/3-2-2.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-foo: bar
-page_content: Hello world
-auto_progress_calculation: true
-progress_calculation_options:
-- direction: negative
-  target: 12
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/indicator-config/temp/3-3-1.yml b/tests/assets/progress-calculation/indicator-config/temp/3-3-1.yml
deleted file mode 100644
index 09599676..00000000
--- a/tests/assets/progress-calculation/indicator-config/temp/3-3-1.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-foo: bar
-page_content: Hello world
-auto_progress_calculation: true
-progress_calculation_options:
-- direction: negative
\ No newline at end of file
diff --git a/tests/assets/progress-calculation/indicator-config/temp/temp.yml b/tests/assets/progress-calculation/indicator-config/temp/temp.yml
deleted file mode 100644
index b5762d10..00000000
--- a/tests/assets/progress-calculation/indicator-config/temp/temp.yml
+++ /dev/null
@@ -1,6 +0,0 @@
-foo: bar
-page_content: Hello world
-auto_progress_calculation: true
-progress_calculation_options:
-- direction: negative
-  target: 110
\ No newline at end of file

From c3dbbed5a4dae29efbab8c44e1d8ad387fcffa85 Mon Sep 17 00:00:00 2001
From: MaiaPelletier <maia.pelletier15@gmail.com>
Date: Thu, 4 Aug 2022 11:51:41 -0400
Subject: [PATCH 05/39] Final touches after last tests

---
 .../ProgressMeasure.py                        | 29 -------------------
 sdg/outputs/OutputOpenSdg.py                  | 22 ++++----------
 2 files changed, 6 insertions(+), 45 deletions(-)
 rename tests/ProgressMeasure_test.py => sdg/ProgressMeasure.py (90%)

diff --git a/tests/ProgressMeasure_test.py b/sdg/ProgressMeasure.py
similarity index 90%
rename from tests/ProgressMeasure_test.py
rename to sdg/ProgressMeasure.py
index 33091eb9..7da1b52c 100644
--- a/tests/ProgressMeasure_test.py
+++ b/sdg/ProgressMeasure.py
@@ -1,7 +1,3 @@
-# TODO: Re-write docstrings
-import pandas as pd
-
-
 def measure_indicator_progress(indicator):
     """Sets up all needed parameters and data for progress calculation, determines methodology for calculation,
     and returns progress measure as an output.
@@ -288,28 +284,3 @@ def methodology_2(data, config):
     else:
         return None
 
-
-# data_pattern = os.path.join('assets', 'progress-calculation', 'data', '*-*.csv')
-# data_input = sdg.inputs.InputCsvData(path_pattern=data_pattern)
-#
-# # Input metadata from YAML files matching this pattern: tests/meta/*-*.md
-# meta_pattern = os.path.join('assets', 'progress-calculation', 'indicator-config', '*-*.yml')
-# meta_input = sdg.inputs.InputYamlMeta(path_pattern=meta_pattern)
-#
-# # Combine these inputs into one list
-# inputs = [data_input, meta_input]
-#
-# # Use a Prose.io file for the metadata schema.
-# schema_path = os.path.join('assets', 'meta', 'metadata_schema.yml')
-# schema = sdg.schemas.SchemaInputOpenSdg(schema_path=schema_path)
-#
-# opensdg_output = sdg.outputs.OutputOpenSdg(
-#     inputs=inputs,
-#     schema=schema,
-#     output_folder='_site')
-#
-# test_indicator = opensdg_output.test_indicator()
-# indicator_id = test_indicator.meta['indicator_number']
-
-progress_measure = measure_indicator_progress(test_indicator)
-print(progress_measure)
diff --git a/sdg/outputs/OutputOpenSdg.py b/sdg/outputs/OutputOpenSdg.py
index 85e1df3b..32dfe500 100644
--- a/sdg/outputs/OutputOpenSdg.py
+++ b/sdg/outputs/OutputOpenSdg.py
@@ -3,6 +3,7 @@
 from sdg.outputs import OutputBase
 from sdg.data import write_csv
 from sdg.json import write_json, df_to_list_dict
+from sdg.ProgressMeasure import measure_indicator_progress
 
 class OutputOpenSdg(OutputBase):
     """Output SDG data/metadata in the formats expected by Open SDG."""
@@ -59,6 +60,11 @@ def build(self, language=None):
 
         for indicator_id in self.get_indicator_ids():
             indicator = self.get_indicator_by_id(indicator_id).language(language)
+            # Use the methodology to calculate a progress status.
+            progress_status = measure_indicator_progress(indicator)
+            if progress_status:
+                # If the calculations returned something, set it in the indicator's 'meta' property.
+                indicator.meta['progress_status'] = progress_status
             # Output all the csvs
             status = status & write_csv(indicator_id, indicator.data, ftype='data', site_dir=site_dir)
             status = status & write_csv(indicator_id, indicator.edges, ftype='edges', site_dir=site_dir)
@@ -285,19 +291,3 @@ def get_documentation_description(self):
         return """This output includes a variety of endpoints designed to
         support the <a href="https://open-sdg.readthedocs.io">Open SDG</a>
         platform."""
-
-
-    def test_indicator_data(self, language=None):
-        for indicator_id in self.get_indicator_ids():
-            indicator = self.get_indicator_by_id(indicator_id).language(language)
-            return(indicator.data)
-
-    def test_indicator_meta(self, language=None):
-        for indicator_id in self.get_indicator_ids():
-            indicator = self.get_indicator_by_id(indicator_id).language(language)
-            return(indicator.meta)
-
-    def test_indicator(self, language=None):
-        for indicator_id in self.get_indicator_ids():
-            indicator = self.get_indicator_by_id(indicator_id).language(language)
-            return(indicator)
\ No newline at end of file

From 27ccb2e2ae2ac4816524f1b639e2694814b53a63 Mon Sep 17 00:00:00 2001
From: MaiaPelletier <maia.pelletier15@gmail.com>
Date: Thu, 4 Aug 2022 12:18:03 -0400
Subject: [PATCH 06/39] reverts

---
 sdg/inputs/InputMetaFiles.py | 2 +-
 sdg/inputs/__init__.py       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sdg/inputs/InputMetaFiles.py b/sdg/inputs/InputMetaFiles.py
index 9f561559..11f12e03 100644
--- a/sdg/inputs/InputMetaFiles.py
+++ b/sdg/inputs/InputMetaFiles.py
@@ -7,7 +7,7 @@
 class InputMetaFiles(InputFiles):
     """Sources of SDG metadata that are local files."""
 
-    def __init__(self, path_pattern='', git=False, git_data_dir='data',
+    def __init__(self, path_pattern='', git=True, git_data_dir='data',
                  git_data_filemask='indicator_*.csv', metadata_mapping=None,
                  logging=None, column_map=None, code_map=None):
         """Constructor for InputMetaFiles.
diff --git a/sdg/inputs/__init__.py b/sdg/inputs/__init__.py
index 1ec5ad0e..69aa705b 100644
--- a/sdg/inputs/__init__.py
+++ b/sdg/inputs/__init__.py
@@ -4,7 +4,7 @@
 from .InputCsvMeta import InputCsvMeta
 from .InputExcelMeta import InputExcelMeta
 from .InputCsvData import InputCsvData
-# from .InputYamlMdMeta import InputYamlMdMeta #TEMP
+from .InputYamlMdMeta import InputYamlMdMeta
 from .InputYamlMeta import InputYamlMeta
 from .InputWordMeta import InputWordMeta
 from .InputSdmx import InputSdmx

From 1f82b4451e9777c0d9490fc8b55d124add49cc43 Mon Sep 17 00:00:00 2001
From: MaiaPelletier <maia.pelletier15@gmail.com>
Date: Thu, 4 Aug 2022 13:29:18 -0400
Subject: [PATCH 07/39] final

---
 sdg/ProgressMeasure.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 7da1b52c..3cce9a2e 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -120,7 +120,6 @@ def update_progress_thresholds(config, method):
         dict: Dictionary of updated inputs for calculation.
     """
 
-    # TODO: allow updating of just 1 threshold (rather than all 3)
     # if progress threshold inputs exist and are not empty, assign user input value as thresholds
     # otherwise if progress threshold inputs are empty, use defaults
     if ('progress_thresholds' in config.keys()) & (bool(config['progress_thresholds'])):

From a7410d2b08936ad2aaf1baf35096e6f81c68de47 Mon Sep 17 00:00:00 2001
From: MaiaPelletier <maia.pelletier15@gmail.com>
Date: Fri, 20 Jan 2023 13:46:50 -0500
Subject: [PATCH 08/39] Change progress label

---
 sdg/ProgressMeasure.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 3cce9a2e..f565a78e 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -227,7 +227,7 @@ def methodology_1(data, config):
     elif z <= cagr_o <= y:
         return "moderate_deterioration"
     elif cagr_o < z:
-        return "significant_deterioration"
+        return "substantial_deterioration"
     else:
         return None
 

From 6d3d128af8826a62c4ed26626663c961f0a94b3c Mon Sep 17 00:00:00 2001
From: MaiaPelletier <maia.pelletier15@gmail.com>
Date: Thu, 8 Jun 2023 12:21:05 -0400
Subject: [PATCH 09/39] Methodology changes

---
 sdg/ProgressMeasure.py | 60 +++++++++++++++++++++++-------------------
 1 file changed, 33 insertions(+), 27 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index f565a78e..350d7c39 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -125,7 +125,7 @@ def update_progress_thresholds(config, method):
     if ('progress_thresholds' in config.keys()) & (bool(config['progress_thresholds'])):
         progress_thresholds = config['progress_thresholds']
     elif method == 1:
-        progress_thresholds = {'high': 0.01, 'med': 0, 'low': -0.01}
+        progress_thresholds = {'high': 0.015, 'med': 0.005, 'low': 0}
     elif method == 2:
         progress_thresholds = {'high': 0.95, 'med': 0.6, 'low': 0}
     else:
@@ -219,17 +219,7 @@ def methodology_1(data, config):
     if direction == "negative":
         cagr_o = -1 * cagr_o
 
-    # compare growth rate to progress thresholds to return progress measure
-    if cagr_o > x:
-        return "substantial_progress"
-    elif y < cagr_o <= x:
-        return "moderate_progress"
-    elif z <= cagr_o <= y:
-        return "moderate_deterioration"
-    elif cagr_o < z:
-        return "substantial_deterioration"
-    else:
-        return None
+    return get_progress_status(cagr_o, config)
 
 
 def methodology_2(data, config):
@@ -237,13 +227,12 @@ def methodology_2(data, config):
 
     Check if target has already been achieved.
     Use configuration options to get the current and base value from indicator data and use to calculate growth ratio.
-    Compare growth ratio to progress thresholds to return a progress measurement.
 
     Args:
         data: DataFrame. Indicator data for which progress is being calculated.
         config: dict. Configurations for indicator for which progress is being calculated.
     Returns:
-        str: Progress measure.
+        str: Progress status.
     """
 
     direction = str(config['direction'])
@@ -251,9 +240,6 @@ def methodology_2(data, config):
     t_0 = float(config['base_year'])
     target = float(config['target'])
     t_tao = float(config['target_year'])
-    x = float(config['high'])
-    y = float(config['med'])
-    z = float(config['low'])
 
     # get current value from data
     current_value = data.Value[data.Year == t].values[0]
@@ -271,15 +257,35 @@ def methodology_2(data, config):
     # calculating growth ratio
     ratio = cagr_o / cagr_r
 
-    # compare growth ratio to progress thresholds to return progress measure
-    if ratio >= x:
-        return "substantial_progress"
-    elif y <= ratio < x:
-        return "moderate_progress"
-    elif z <= ratio < y:
-        return "negligible_progress"
-    elif ratio < z:
+    return get_progress_status(ratio, config)
+
+
+def get_progress_status(value, config):
+    """Compare growth rate to progress thresholds provided in configs to return progress status.
+
+    Use configuration options to get the high, middle, and low thresholds to compare to the value
+    and return a progress status label.
+
+    Args:
+        value: float. Calculated value of either observed growth or growth ratio for an indicator.
+        config: dict. Configurations for indicator for which progress is being calculated.
+
+    Returns: str. Progress status label.
+
+    """
+
+    x = float(config['high'])
+    y = float(config['med'])
+    z = float(config['low'])
+
+    # compare growth rate to progress thresholds to return progress measure
+    if value >= x:
+        return "on_track"
+    elif y <= value < x:
+        return "progress_needs_acceleration"
+    elif z <= value < y:
+        return "limited_progress"
+    elif value < z:
         return "deterioration"
     else:
-        return None
-
+        return None
\ No newline at end of file

From b3fca91ce55f2f8394dd4ad28eaf3619faab1ab5 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Wed, 9 Oct 2024 15:37:58 -0400
Subject: [PATCH 10/39] gitignore jupyter notebooks

---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index 9595e493..118440c9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -113,3 +113,4 @@ venv.bak/
 .vscode
 .DS_Store
 .idea
+*.ipynb

From deb8ba1bfc1ff41fd5323c6f7afe955fed86cadd Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Thu, 10 Oct 2024 16:50:49 -0400
Subject: [PATCH 11/39] enable progress measure calculations for indicators
 with units and series columns

---
 sdg/ProgressMeasure.py       | 29 ++++++++++++++++++++++-------
 sdg/outputs/OutputOpenSdg.py |  2 +-
 2 files changed, 23 insertions(+), 8 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 350d7c39..5c29a2b3 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -1,4 +1,4 @@
-def measure_indicator_progress(indicator):
+def measure_indicator_progress(indicator, indicator_options=None):
     """Sets up all needed parameters and data for progress calculation, determines methodology for calculation,
     and returns progress measure as an output.
 
@@ -32,7 +32,7 @@ def measure_indicator_progress(indicator):
     config = config_defaults(config)
 
     # get relevant data to calculate progress (aggregate/total line only)
-    data = data_progress_measure(data)
+    data = data_progress_measure(data, config=config, indicator_options=indicator_options)
 
     if data is None:
         return None
@@ -137,7 +137,7 @@ def update_progress_thresholds(config, method):
     return config
 
 
-def data_progress_measure(data):
+def data_progress_measure(data, config=None, indicator_options=None):
     """Checks and filters data for indicator for which progress is being calculated.
 
     If the Year column in data contains more than 4 characters (standard year format), takes the first 4 characters.
@@ -156,13 +156,28 @@ def data_progress_measure(data):
         # take the first year in the range
         data['Year'] = data['Year'].astype(str).str.slice(0, 4).astype(int)
 
-    # get just the total line values from data
-    cols = data.columns.values
+    series_column = indicator_options.series_column
+    unit_column = indicator_options.unit_column
+    non_disaggregation_columns = indicator_options.non_disaggregation_columns
+    cols = data.columns
+
     if len(cols) > 2:
-        cols = cols[1:-1]
-        data = data[data[cols].isna().all('columns')]
+        # Data has disaggregation columns. Find the appropriate subset of data for progress calculation
+        # If units and/or series columns exist, keep only the user selected unit/series
+        if (unit_column in cols) and ('unit' in config.keys()):
+            data = data.loc[data[unit_column] == config['unit']]
+        if (series_column in cols) and ('series' in config.keys()):
+            data = data.loc[data[series_column] == config['series']]
+        # Find headline data (rows where values in all disaggregation dimensions are NA)
+        data = data[data.loc[:, ~cols.isin(non_disaggregation_columns)].isna().all('columns')]
+        # Keep only Year and Value columns
         data = data.iloc[:, [0, -1]]
 
+        # To do: 
+        # Add PROGRESS/Progress to non_disaggregation columns
+        # if progress column in cols: use progress column values instead of Value
+        # What if no unit/series is selected by user but series/units column(s) exist? --> error? alphabetical? first appearing? None?
+
     # remove any NA values from data
     data = data[data["Value"].notna()]
 
diff --git a/sdg/outputs/OutputOpenSdg.py b/sdg/outputs/OutputOpenSdg.py
index 55b79200..71398dd7 100644
--- a/sdg/outputs/OutputOpenSdg.py
+++ b/sdg/outputs/OutputOpenSdg.py
@@ -65,7 +65,7 @@ def build(self, language=None):
         for indicator_id in self.get_indicator_ids():
             indicator = self.get_indicator_by_id(indicator_id).language(language)
             # Use the methodology to calculate a progress status.
-            progress_status = measure_indicator_progress(indicator)
+            progress_status = measure_indicator_progress(indicator, indicator_options=self.indicator_options)
             if progress_status:
                 # If the calculations returned something, set it in the indicator's 'meta' property.
                 indicator.meta['progress_status'] = progress_status

From 3db5edbdc158c7436710f2f21d4af70606b8decc Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Mon, 4 Nov 2024 12:17:49 -0500
Subject: [PATCH 12/39] re-organize progress measure code as classes, add
 progress measure calculation for indicators with multiple sub-indicators

---
 sdg/ProgressMeasure.py       | 616 +++++++++++++++++++----------------
 sdg/ProgressMeasure_old.py   | 356 ++++++++++++++++++++
 sdg/outputs/OutputOpenSdg.py |   4 +-
 3 files changed, 698 insertions(+), 278 deletions(-)
 create mode 100644 sdg/ProgressMeasure_old.py

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 5c29a2b3..8d8ae526 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -1,195 +1,331 @@
-def measure_indicator_progress(indicator, indicator_options=None):
-    """Sets up all needed parameters and data for progress calculation, determines methodology for calculation,
-    and returns progress measure as an output.
-
-    Args:
-        indicator: Indicator for which the progress is being calculated for.
-    Returns:
-        output: str. A string indicating the progress measurement for the indicator.
-    """
-
-    data = indicator.data  # get indicator data
-    config = indicator.meta  # get configurations
-
-    # checks if progress calculation is turned on
-    if 'auto_progress_calculation' in config.keys():
-
-        # checks if any inputs have been configured
-        if config['auto_progress_calculation']:
-
-            if 'progress_calculation_options' in config.keys():
-                # take manual user inputs
-                config = config['progress_calculation_options'][0]
-
-        else:
+from sdg import Loggable
+
+class ProgressMeasureBase(Loggable):
+    # Base class used to build classes for series-level and indicator-level progress measures.
+    def __init__(self, indicator, logging=None):
+
+        Loggable.__init__(self, logging=logging)
+        self.indicator = indicator
+        self.inid = indicator.inid
+        self.data = indicator.data
+        self.meta = indicator.meta
+        self.indicator_options = indicator.options
+
+        self.auto_progress_calculation = self.meta.get('auto_progress_calculation') is True
+        self.progress_calculation_options = self.get_progress_calculation_options()
+
+        # method is 1 for qualitative or 2 for quantitative.
+        # The same method and progress thresholds are applied to all sub-indicators within an indicator.
+        self.method = 1 if self.progress_calculation_options[0]['target'] is None else 2
+        self.progress_thresholds = self.get_progress_thresholds() # may not want to allow user to configure progress thresholds
+
+        self.cols = self.data.columns
+        self.series_column = self.indicator_options.series_column
+        self.unit_column = self.indicator_options.unit_column
+        self.non_disaggregation_columns = self.indicator_options.non_disaggregation_columns
+
+    def get_progress_calculation_options(self):
+        """
+        Get progress calculation options from the indicator metadata.
+        If progress calculation options are not specified in the metadata, 
+        return the default progress calculation options instead.
+        """
+        if self.meta is not None:
+            progress_calc_opts = self.meta.get('progress_calculation_options')
+            # progress_calc_opts is a list of dictionaries
+            # each dictionary corresponds to the options for one series/unit/disaggregation
+            if progress_calc_opts:
+                return [self.config_defaults(config) for config in progress_calc_opts]
+            else:
+                return [self.default_progress_calc_options()]
+
+    def config_defaults(self, config):
+        """Set progress calculation defaults and update them if any user inputs exist.
+        Args:
+            config: dict. Indicator configurations passed as a dictionary.
+        Returns:
+            dict: Dictionary of updated configuratyions.
+        """
+    
+        # set default options for progress measurement
+        defaults = self.default_progress_calc_options()
+        # update the defaults with any user configured inputs
+        defaults.update(config)
+    
+        # if target is 0, set to 0.001 (avoids dividing by 0 in calculation)
+        if defaults['target'] == 0:
+            defaults['target'] = 0.001
+    
+        return defaults
+    
+    
+    def default_progress_calc_options(self):
+        """Provide default inputs for calculating progress."""
+        return (
+            {
+                'base_year': 2015,
+                'target_year': 2030,
+                'direction': 'negative',
+                'target': None,
+                # 'progress_thresholds': {}
+            }
+        )
+    
+    def get_progress_thresholds(self, default1={'high': 0.015, 'med': 0.005, 'low': 0}, default2={'high': 0.95, 'med': 0.6, 'low': 0}):
+        """Checks for configured progress thresholds and updates default thresholds based on methodology.
+        Returns:
+            progress_thresholds: dict. Dictionary of progress thresholds: {'high': x, 'med': y, 'low': z}
+        """
+        # Begin with the default progress thresholds for each method and update these with user configured thresholds, if present.
+        if self.method == 1:
+            progress_thresholds = default1
+            input_thresholds = self.meta.get('progress_thresholds')
+            if input_thresholds:
+                progress_thresholds.update(input_thresholds)
+        elif self.method == 2:
+            progress_thresholds = default2
+            input_thresholds = self.meta.get('progress_thresholds')
+            if input_thresholds:
+                progress_thresholds.update(input_thresholds)
+
+        return progress_thresholds
+
+
+class ProgressMeasureSeries(ProgressMeasureBase):
+    def __init__(self, indicator, config={}, logging=None):
+
+        self.config = self.config_defaults(config)
+
+        ProgressMeasureBase.__init__(self, indicator, logging=logging)
+
+        # Filter data and update the config with key values for the progress calculation
+        self.data = self.filter_data()
+        self.config = self.update_config()
+
+        self.base_year = self.config.get('base_year')
+        self.base_value = self.config.get('base_value')
+        self.current_year = self.config.get('current_year')
+        self.current_value = self.config.get('current_value')
+        self.target_year = self.config.get('target_year')
+        self.target = self.config.get('target')
+        self.direction = -1 if self.config.get('direction') == 'negative' else 1
+        self.sign = -1 if self.base_value < 0 else 1 # note: base_value = 0 is invalid, would get zero division error in growth calculation
+
+        self.target_achieved = self.is_target_achieved()
+        self.progress_value = self.calculate_progress_value()
+        self.status = get_progress_status(self.progress_value, self.progress_thresholds, self.target_achieved)
+        self.score = self.get_score()
+
+    def update_config(self):
+        # get years that exist in the data
+        years = self.data["Year"]
+    
+        # set current year to be the most recent year that exists in data
+        self.config['current_year'] = years.max()
+        self.config['current_value'] = self.data.Value[self.data.Year == self.config['current_year']].item()
+    
+        # check if the base year input exists in the data
+        if self.config['base_year'] not in years.values:
+            # if the base year is not in the available data, assign it to be the next available year
+            self.config['base_year'] = years[years > self.config['base_year']].min()
+        # Set the base value
+        self.config['base_value'] = self.data.Value[self.data.Year == self.config['base_year']].item()
+
+        return self.config
+    
+    def filter_data(self):
+        data = self.data
+        # check if the year value contains more than 4 digits (indicating a range of years)
+        if (data['Year'].astype(str).str.len() > 4).any():
+            # take the first year in the range
+            data['Year'] = data['Year'].astype(str).str.slice(0, 4).astype(int)
+
+        if len(self.cols) > 2:
+            # Data has disaggregation columns. Find the appropriate subset of data for progress calculation
+            # If units and/or series columns exist, keep only the user selected unit/series
+            if (self.unit_column in self.cols) and ('unit' in self.config.keys()):
+                data = data.loc[data[self.unit_column] == self.config['unit']]
+            if (self.series_column in self.cols) and ('series' in self.config.keys()):
+                data = data.loc[data[self.series_column] == self.config['series']]
+            # If disaggregation specified by user, reduce the dataframe to only include the selected disaggregation
+            disaggregation = self.config.get('disaggregation')
+            if disaggregation:
+                for k, v in disaggregation.items():
+                    data = data.loc[data[k] == v]
+            # Otherwise, find headline data (rows where values in all disaggregation dimensions are NA)
+            else:
+                data = data[data.loc[:, ~self.cols.isin(self.non_disaggregation_columns)].isna().all('columns')]
+            # Keep only Year and Value columns
+            data = data.iloc[:, [0, -1]]
+
+            # To do: 
+            # Add PROGRESS/Progress to non_disaggregation columns
+            # if progress column in cols: use progress column values instead of Value
+            # What if no unit/series is selected by user but series/units column(s) exist? --> error? alphabetical? first appearing? None? Warning?
+            # What if indicator_options = None or config = None?
+            # Fix: when data not sufficiently reduced by user settings, there can be multiple values for the same year
+            # Apply data translations. Otherwise, the series/unit/disaggration name must appear exactly as it appears in the data file.
+
+        # remove any NA values from data
+        data = data[data["Value"].notna()]
+
+        # returns None if no rows in data (no total line to calculate progress)
+        if data.shape[0] < 1:
             return None
 
-    # return None if auto progress calculation is not turned on
-    else:
-        return None
-
-    # get calculation defaults and update with user inputs (if any)
-    config = config_defaults(config)
-
-    # get relevant data to calculate progress (aggregate/total line only)
-    data = data_progress_measure(data, config=config, indicator_options=indicator_options)
-
-    if data is None:
-        return None
-
-    # get years that exist in the data
-    years = data["Year"]
-
-    # set current year to be the most recent year that exists in data
-    current_year = {'current_year': years.max()}
-
-    # update the calculation inputs with the current year
-    config.update(current_year)
-
-    # check if the base year input exists in the data
-    if config['base_year'] not in years.values:
+        return data
+    
+    def calculate_progress_value(self):
+        """Sets up all needed parameters and data for progress calculation, determines methodology for calculation,
+        and returns progress value as an output.
+
+        Returns:
+            output: float. A value indicating the progress measurement value for the indicator.
+        """
+        # Run checks on config settings before calculating progress.
+        if self.data is None:
+            self.warn(f'{self.inid}: No data found for progress calculation')
+            return None
+        if not all_rows_unique(self.data):
+            self.warn(f'{self.inid}: Duplicate rows detected in data selected for progress calculation: {self.config}')
+            return None            
+        if self.base_value == 0:
+            self.warn(f'{self.inid}: Base value is zero (invalid)')
+            return None
         # return None if the base year input is in the future of the most recently available data
-        if config['base_year'] > years.max():
+        if self.base_year > self.current_year:
+            self.warn(f'{self.inid}: Base year is greater than the most recent available data: {self.config}')
             return None
-
-        # if base year is not in available data and not in the future,
-        # assign it to be the minimum existing year past the base year given
-        config['base_year'] = years[years > config['base_year']].min()
-
-    # return None if there is not enough data to calculate progress (must be at least 2 data points)
-    if config['current_year'] - config['base_year'] < 1:
-        return None
-
-    # determine which methodology to run
-    # if no target exists, run methodology for qualitative target. else run methodology for quantitative target.
-    if config['target'] is None:
-        # update progress thresholds for qualitative target
-        config = update_progress_thresholds(config, method=1)
-        # do progress calculation according to methodology for qualitative target
-        output = methodology_1(data=data, config=config)
-
-    else:
-        # update progress thresholds for quantitative target
-        config = update_progress_thresholds(config, method=2)
-        # do progress calculation according to methodology for quantitative target
-        output = methodology_2(data=data, config=config)
-
-    return output
-
-
-def config_defaults(config):
-    """Set progress calculation defaults and update them if any user inputs exist.
-    Args:
-        config: dict. Indicator configurations passed as a dictionary.
-    Returns:
-        dict: Dictionary of updated configurations.
+        if self.current_year - self.base_year < 1:
+            self.warn(f'{self.inid}: Not enough data to calculate progress (must have at least 2 data points): {self.config}')
+            return None
+    
+        if self.method == 1:
+            # do progress calculation according to methodology for qualitative target
+            output = self.methodology_1()
+        else:
+            # do progress calculation according to methodology for quantitative target
+            output = self.methodology_2()
+    
+        return output
+
+    def methodology_1(self):
+        """Calculate growth using progress measurement methodology 1 (no target value).
+    
+        Returns:
+            float: Progress value.
+        """      
+        # calculate growth
+        return self.sign * self.direction * growth_calculation(self.current_value, self.base_value, self.current_year, self.base_year)
+
+
+    def methodology_2(self):
+        """Calculate growth using progress measurement methodology 2 (given target value).
+    
+        Check if target has already been achieved.
+        Use configuration options to get the current and base value from indicator data and use to calculate growth ratio.
+
+        Returns:
+            float: Progress value.
+        """
+        # calculate observed growth
+        cagr_o = growth_calculation(self.current_value, self.base_value, self.current_year, self.base_year)
+        # calculate theoretical growth
+        cagr_r = growth_calculation(self.target, self.base_value, self.target_year, self.base_year)
+        
+        return self.sign * self.direction * cagr_o / abs(cagr_r)
+            
+    def is_target_achieved(self):
+        if self.target is not None:
+            if (self.direction == -1 and self.current_value <= self.target) or (self.direction == 1 and self.current_value >= self.target):
+                return True
+        return False
+        
+    def get_score(self):
+
+        if self.progress_value is None:
+            return None
+        
+        if self.target_achieved:
+            return 5
+        
+        if self.method == 1:
+            if self.progress_value > 0:
+                return min(self.progress_value * 250, 5)
+            else:
+                return max(self.progress_value * 250, -5)
+        else: # method == 2
+            if self.progress_value > 0.6:
+                return min((7.1429 * self.progress_value) - 4.2857, 5)
+            else:
+                return max((4.1667 * self.progress_value) - 2.5, -5)
+
+
+class ProgressMeasureIndicator(ProgressMeasureBase):
+    def __init__(self, indicator, logging=None):
+
+        ProgressMeasureBase.__init__(self, indicator, logging=logging)
+
+        self.score, self.status = self.get_indicator_progress()
+
+    def get_indicator_progress(self):
+        """
+        Read the progress calculation configurations from the indicator metadata and return the progress 
+        measure score and status for the indicator. The minimum progress score and associated progress 
+        status are taken as the aggregate score for the indicator when multiple series, units, and/or 
+        disaggregations are specified in the progress calculation configurations.
+        When the progress calculation is turned off, any manually specified progress status found in the 
+        metadata is returned alongside a score of None.
+        If the progress calculation is turned off and no progress status is found, it will return a score 
+        of None and 'not_available' as the progress status.
+
+        Returns:
+            tuple: (score, status)
+        """
+        # Check if progress calculation is turned on
+        if self.auto_progress_calculation:
+            # Get the progress measure score and status for each series/unit/disaggregation specified in the progress calculation options.
+            progress_outputs = []
+            for config in self.progress_calculation_options:
+                pm = ProgressMeasureSeries(self.indicator, config, logging=self.logging)
+                score = pm.score
+                # discard progress outputs when score is None
+                if score is not None:
+                    # append a tuple of (score, status) for each specified series/unit/disaggregation
+                    progress_outputs.append((score, pm.status))
+
+            if progress_outputs:
+                # Return a tuple of the minimum score and associated progress status
+                return min(progress_outputs, key=lambda x: x[0])
+        else:
+            # Use any progress status available in the metadata as a manual override
+            if 'progress_status' in self.meta.keys():
+                return (None, self.meta['progress_status'])
+                
+        return (None, "not_available")
+
+    
+def all_rows_unique(df, ignore_columns=['Value', 'Progress']):
     """
+    Check dataframe for duplicate rows. Ignores data columns (value and progress columns).
+    Returns True if the check succeeded (no duplicate rows found) or False if the check failed (duplicate rows found).
 
-    # set default options for progress measurement
-    defaults = default_progress_calc_options()
-    # update the defaults with any user configured inputs
-    defaults.update(config)
-
-    # if target is 0, set to 0.001 (avoids dividing by 0 in calculation)
-    if defaults['target'] == 0:
-        defaults['target'] = 0.001
-
-    return defaults
-
-
-def default_progress_calc_options():
-    """Provide default inputs for calculating progress."""
-    return (
-        {
-            'base_year': 2015,
-            'target_year': 2030,
-            'direction': 'negative',
-            'target': None,
-            'progress_thresholds': {}
-        }
-    )
-
-
-def update_progress_thresholds(config, method):
-    """Checks for configured progress thresholds or updates thresholds based on methodology.
     Args:
-        config: dict. Progress calculation inputs for indicator.
-        method: int. Indicates which methodology is being used. Either 1 (for qualitative targets) or 2 (for
-                quantitative targets).
+        df: dataframe
+        ignore_columns: list. List of column names to ignore while checking row uniqueness.
     Returns:
-        dict: Dictionary of updated inputs for calculation.
+        bool: True if uniqueness check is successful, otherwise False
     """
+    cols = [col for col in df.columns if col not in ignore_columns]
+    
+    success = False
+    if not df.duplicated(subset=cols).any():
+        success = True
 
-    # if progress threshold inputs exist and are not empty, assign user input value as thresholds
-    # otherwise if progress threshold inputs are empty, use defaults
-    if ('progress_thresholds' in config.keys()) & (bool(config['progress_thresholds'])):
-        progress_thresholds = config['progress_thresholds']
-    elif method == 1:
-        progress_thresholds = {'high': 0.015, 'med': 0.005, 'low': 0}
-    elif method == 2:
-        progress_thresholds = {'high': 0.95, 'med': 0.6, 'low': 0}
-    else:
-        progress_thresholds = {}
-
-    # update inputs with thresholds
-    config.update(progress_thresholds)
-
-    return config
-
-
-def data_progress_measure(data, config=None, indicator_options=None):
-    """Checks and filters data for indicator for which progress is being calculated.
-
-    If the Year column in data contains more than 4 characters (standard year format), takes the first 4 characters.
-    If data contains disaggregation columns, take only the total line data.
-    Removes any NA values.
-    Checks that there is enough data to calculate progress.
-
-    Args:
-        data: DataFrame. Indicator data for which progress is being calculated.
-    Returns:
-        DataFrame: Data in valid format for calculating progress.
-    """
-
-    # check if the year value contains more than 4 digits (indicating a range of years)
-    if (data['Year'].astype(str).str.len() > 4).any():
-        # take the first year in the range
-        data['Year'] = data['Year'].astype(str).str.slice(0, 4).astype(int)
-
-    series_column = indicator_options.series_column
-    unit_column = indicator_options.unit_column
-    non_disaggregation_columns = indicator_options.non_disaggregation_columns
-    cols = data.columns
-
-    if len(cols) > 2:
-        # Data has disaggregation columns. Find the appropriate subset of data for progress calculation
-        # If units and/or series columns exist, keep only the user selected unit/series
-        if (unit_column in cols) and ('unit' in config.keys()):
-            data = data.loc[data[unit_column] == config['unit']]
-        if (series_column in cols) and ('series' in config.keys()):
-            data = data.loc[data[series_column] == config['series']]
-        # Find headline data (rows where values in all disaggregation dimensions are NA)
-        data = data[data.loc[:, ~cols.isin(non_disaggregation_columns)].isna().all('columns')]
-        # Keep only Year and Value columns
-        data = data.iloc[:, [0, -1]]
-
-        # To do: 
-        # Add PROGRESS/Progress to non_disaggregation columns
-        # if progress column in cols: use progress column values instead of Value
-        # What if no unit/series is selected by user but series/units column(s) exist? --> error? alphabetical? first appearing? None?
-
-    # remove any NA values from data
-    data = data[data["Value"].notna()]
-
-    # returns None if no rows in data (no total line to calculate progress)
-    if data.shape[0] < 1:
-        return None
-
-    return data
-
+    return success
 
 def growth_calculation(val1, val2, t1, t2):
-    """Calculate cumulative annual growth rate with required arguments.
+    """Calculate compound annual growth rate with required arguments.
 
     Args:
         val1: float. Current value.
@@ -197,110 +333,38 @@ def growth_calculation(val1, val2, t1, t2):
         t1: float. Current year.
         t2: float. Base year.
     Returns:
-        float: Growth value.
+        float: Compound annual growth rate value.
     """
 
     return ((val1 / val2) ** (1 / (t1 - t2))) - 1
 
-
-def methodology_1(data, config):
-    """Calculate growth using progress measurement methodology 1 (no target value).
-
-    Use configuration options to get the current and base value from indicator data and use to calculate growth.
-    Compare growth to progress thresholds to return a progress measurement.
-
-    Args:
-        data: DataFrame. Indicator data for which progress is being calculated.
-        config: dict. Configurations for indicator for which progress is being calculated.
-    Returns:
-        str: Progress measure.
-    """
-
-    direction = str(config['direction'])
-    t = float(config['current_year'])
-    t_0 = float(config['base_year'])
-    x = float(config['high'])
-    y = float(config['med'])
-    z = float(config['low'])
-
-    # get current value from data
-    current_value = data.Value[data.Year == t].values[0]
-    # get value from base year from data
-    base_value = data.Value[data.Year == t_0].values[0]
-    # calculate growth
-    cagr_o = growth_calculation(current_value, base_value, t, t_0)
-
-    # use negative growth value if desired direction of progress is negative
-    if direction == "negative":
-        cagr_o = -1 * cagr_o
-
-    return get_progress_status(cagr_o, config)
-
-
-def methodology_2(data, config):
-    """Calculate growth using progress measurement methodology 2 (given target value).
-
-    Check if target has already been achieved.
-    Use configuration options to get the current and base value from indicator data and use to calculate growth ratio.
-
-    Args:
-        data: DataFrame. Indicator data for which progress is being calculated.
-        config: dict. Configurations for indicator for which progress is being calculated.
-    Returns:
-        str: Progress status.
-    """
-
-    direction = str(config['direction'])
-    t = float(config['current_year'])
-    t_0 = float(config['base_year'])
-    target = float(config['target'])
-    t_tao = float(config['target_year'])
-
-    # get current value from data
-    current_value = data.Value[data.Year == t].values[0]
-    # get base value from data
-    base_value = data.Value[data.Year == t_0].values[0]
-
-    # check if the target is achieved
-    if (direction == "negative" and current_value <= target) or (direction == "positive" and current_value >= target):
-        return "target_achieved"
-
-    # calculate observed growth
-    cagr_o = growth_calculation(current_value, base_value, t, t_0)
-    # calculate theoretical growth
-    cagr_r = growth_calculation(target, base_value, t_tao, t_0)
-    # calculating growth ratio
-    ratio = cagr_o / cagr_r
-
-    return get_progress_status(ratio, config)
-
-
-def get_progress_status(value, config):
-    """Compare growth rate to progress thresholds provided in configs to return progress status.
-
-    Use configuration options to get the high, middle, and low thresholds to compare to the value
-    and return a progress status label.
+def get_progress_status(value, thresholds, target_achieved=False):
+    """Compare progress value to progress thresholds and return progress status.
 
     Args:
         value: float. Calculated value of either observed growth or growth ratio for an indicator.
-        config: dict. Configurations for indicator for which progress is being calculated.
-
-    Returns: str. Progress status label.
-
+        thresholds: dict. Thresholds for high, medium, and low progress. format: {'high': x, 'med': y, 'low': z}
+        target_achieved: bool. If target is achieved, skip comparison with thresholds and return "target_achieved".
+    Returns:
+        str: Progress status label.
     """
 
-    x = float(config['high'])
-    y = float(config['med'])
-    z = float(config['low'])
+    x = float(thresholds['high'])
+    y = float(thresholds['med'])
+    z = float(thresholds['low'])
 
     # compare growth rate to progress thresholds to return progress measure
-    if value >= x:
-        return "on_track"
-    elif y <= value < x:
-        return "progress_needs_acceleration"
-    elif z <= value < y:
-        return "limited_progress"
-    elif value < z:
-        return "deterioration"
-    else:
-        return None
\ No newline at end of file
+    if target_achieved:
+        return "target_achieved"
+    
+    if value is not None:
+        if value >= x:
+            return "substantial_progress"
+        elif y <= value < x:
+            return "moderate_progress"
+        elif z <= value < y:
+            return "limited_progress"
+        elif value < z:
+            return "deterioration"
+
+    return "not_available"
\ No newline at end of file
diff --git a/sdg/ProgressMeasure_old.py b/sdg/ProgressMeasure_old.py
new file mode 100644
index 00000000..e8636dad
--- /dev/null
+++ b/sdg/ProgressMeasure_old.py
@@ -0,0 +1,356 @@
+# TO DO:
+# separate progress_thresholds from progress_calculation_options
+# What to do about when aggregating over progress values where some are None? Ignore the None values? Return None?    
+
+
+def apply(function, values, **kwargs):
+    """
+    Applies the input function to the input values.
+    **kwargs can be specified, optionally.
+    """
+    return function(values, **kwargs)
+
+
+def get_progress_calculation_options(metadata):
+    """
+    Get progress calculation options from the indicator metadata.
+    If progress calculation options are not specified in the metadata, 
+    return the default progress calculation options instead.
+    """
+    if metadata is not None:
+        progress_calc_opts = metadata.get('progress_calculation_options')
+        # progress_calc_opts is a list of dictionaries
+        # each dictionary corresponds to the options for one series/unit/disaggregation
+        if progress_calc_opts:
+            return [config_defaults(config) for config in progress_calc_opts]
+        
+    return [default_progress_calc_options()]
+
+def measure_indicator_progress(indicator, agg_func=min, **kwargs):
+    """
+    Read the progress calculation configurations from the indicator metadata and return the aggregate progress 
+    measure value and status for the indicator. If the progress calculation configurations specify multiple 
+    series, units, and/or disaggregations, the progress value for each is calculated and an aggregate progress 
+    value is determined using the specified aggregation function.
+
+    Args:
+        indicator: Indicator object. 
+        indicator_options: IndicatorOptions object. 
+        agg_func: function. Function taken to compute the aggregate progress value from a list of progress values for each series/unit/disaggregation specified in the progress calculation configurations. Default: min()
+        **kwargs: **kwargs for agg_func
+    Returns:
+
+    """
+    data = indicator.data  # get indicator data
+    meta = indicator.meta  # get configurations
+    indicator_options = indicator.options
+
+    # Check if progress calculation is turned on
+    if meta.get('auto_progress_calculation') is True:
+        # Get the progress calculation options from the metadata (or the default values if none are specified).
+        progress_calc_options = get_progress_calculation_options(meta)
+        method = get_method(meta)
+        progress_thresholds = get_progress_thresholds(meta)
+        # Calculate the progress measure value for each series/unit/disaggregation specified in the options.
+        progress_values = [measure_progress(data, config, indicator_options) for config in progress_calc_options]
+        # What to do with None values?
+        # 1) ignore None values?
+        progress_values = [x for x in progress_values if x is not None]
+        output_value = apply(agg_func, progress_values, **kwargs)
+        return output_value, get_progress_status(output_value, meta)
+        # # OR 2) return None?
+        # if None not in progress_values:
+        #     output_value = apply(agg_func, progress_values, **kwargs)
+        #     return output_value, get_progress_status(output_value, meta)
+
+
+
+def measure_progress(data, config, indicator_options):
+    """Sets up all needed parameters and data for progress calculation, determines methodology for calculation,
+    and returns progress measure as an output.
+
+    Args:
+        data: 
+        config: 
+        indicator_options: 
+    Returns:
+        output: float. A value indicating the progress measurement for the indicator.
+    """
+    # get relevant data to calculate progress (aggregate/total line only)
+    data = data_progress_measure(data, config, indicator_options)
+    if data is None:
+        return None
+
+    # get years that exist in the data
+    years = data["Year"]
+
+    # set current year to be the most recent year that exists in data
+    current_year = {'current_year': years.max()}
+    # update the calculation inputs with the current year
+    config.update(current_year)
+
+    # check if the base year input exists in the data
+    if config['base_year'] not in years.values:
+        # return None if the base year input is in the future of the most recently available data
+        if config['base_year'] > years.max():
+            return None
+        # if base year is not in available data and not in the future,
+        # assign it to be the minimum existing year past the base year given
+        config['base_year'] = years[years > config['base_year']].min()
+
+    # return None if there is not enough data to calculate progress (must be at least 2 data points)
+    if config['current_year'] - config['base_year'] < 1:
+        return None
+
+    # determine which methodology to run
+    # if no target exists, run methodology for qualitative target. else run methodology for quantitative target.
+    if config['target'] is None:
+        # update progress thresholds for qualitative target
+        config = update_progress_thresholds(config, method=1)
+        # do progress calculation according to methodology for qualitative target
+        output = methodology_1(data=data, config=config)
+
+    else:
+        # update progress thresholds for quantitative target
+        config = update_progress_thresholds(config, method=2)
+        # do progress calculation according to methodology for quantitative target
+        output = methodology_2(data=data, config=config)
+
+    return output
+
+
+def config_defaults(config):
+    """Set progress calculation defaults and update them if any user inputs exist.
+    Args:
+        config: dict. Indicator configurations passed as a dictionary.
+    Returns:
+        dict: Dictionary of updated configurations.
+    """
+
+    # set default options for progress measurement
+    defaults = default_progress_calc_options()
+    # update the defaults with any user configured inputs
+    defaults.update(config)
+
+    # if target is 0, set to 0.001 (avoids dividing by 0 in calculation)
+    if defaults['target'] == 0:
+        defaults['target'] = 0.001
+
+    return defaults
+
+
+def default_progress_calc_options():
+    """Provide default inputs for calculating progress."""
+    return (
+        {
+            'base_year': 2015,
+            'target_year': 2030,
+            'direction': 'negative',
+            'target': None,
+            # 'progress_thresholds': {}
+        }
+    )
+
+
+def get_progress_thresholds(meta, method, default1={'high': 0.015, 'med': 0.005, 'low': 0}, default2={'high': 0.95, 'med': 0.6, 'low': 0}):
+    """Checks for configured progress thresholds or updates thresholds based on methodology.
+    Args:
+        config: dict. Progress calculation inputs for indicator.
+        method: int. Indicates which methodology is being used. Either 1 (for qualitative targets) or 2 (for
+                quantitative targets).
+    Returns:
+        dict: Dictionary of updated inputs for calculation.
+    """
+
+    # if progress threshold inputs exist and are not empty, assign user input value as thresholds
+    # otherwise if progress threshold inputs are empty, use defaults
+    if ('progress_thresholds' in config.keys()) & (bool(config['progress_thresholds'])):
+        progress_thresholds = config['progress_thresholds']
+    elif method == 1:
+        progress_thresholds = {'high': 0.015, 'med': 0.005, 'low': 0}
+    elif method == 2:
+        progress_thresholds = {'high': 0.95, 'med': 0.6, 'low': 0}
+    else:
+        progress_thresholds = {}
+
+    # update inputs with thresholds
+    config.update(progress_thresholds)
+
+    return config
+
+
+def data_progress_measure(data, config=None, indicator_options=None):
+    """Checks and filters data for indicator for which progress is being calculated.
+
+    If the Year column in data contains more than 4 characters (standard year format), takes the first 4 characters.
+    If data contains disaggregation columns, take only the total line data.
+    Removes any NA values.
+    Checks that there is enough data to calculate progress.
+
+    Args:
+        data: DataFrame. Indicator data for which progress is being calculated.
+    Returns:
+        DataFrame: Data in valid format for calculating progress.
+    """
+
+    # check if the year value contains more than 4 digits (indicating a range of years)
+    if (data['Year'].astype(str).str.len() > 4).any():
+        # take the first year in the range
+        data['Year'] = data['Year'].astype(str).str.slice(0, 4).astype(int)
+
+    series_column = indicator_options.series_column
+    unit_column = indicator_options.unit_column
+    non_disaggregation_columns = indicator_options.non_disaggregation_columns
+    cols = data.columns
+
+    if len(cols) > 2:
+        # Data has disaggregation columns. Find the appropriate subset of data for progress calculation
+        # If units and/or series columns exist, keep only the user selected unit/series
+        if (unit_column in cols) and ('unit' in config.keys()):
+            data = data.loc[data[unit_column] == config['unit']]
+        if (series_column in cols) and ('series' in config.keys()):
+            data = data.loc[data[series_column] == config['series']]
+        # If disaggregation specified by user, reduce the dataframe to only include the selected disaggregation
+        disaggregation = config.get('disaggregation')
+        if disaggregation:
+            for k, v in disaggregation.items():
+                data = data.loc[data[k] == v]
+        # Otherwise, find headline data (rows where values in all disaggregation dimensions are NA)
+        else:
+            data = data[data.loc[:, ~cols.isin(non_disaggregation_columns)].isna().all('columns')]
+        # Keep only Year and Value columns
+        data = data.iloc[:, [0, -1]]
+
+        # To do: 
+        # Add PROGRESS/Progress to non_disaggregation columns
+        # if progress column in cols: use progress column values instead of Value
+        # What if no unit/series is selected by user but series/units column(s) exist? --> error? alphabetical? first appearing? None? Warning?
+        # What if indicator_options = None or config = None?
+        # Fix: when data not sufficiently reduced by user settings, there can be multiple values for the same year
+
+    # remove any NA values from data
+    data = data[data["Value"].notna()]
+
+    # returns None if no rows in data (no total line to calculate progress)
+    if data.shape[0] < 1:
+        return None
+
+    return data
+
+
+def growth_calculation(val1, val2, t1, t2):
+    """Calculate cumulative annual growth rate with required arguments.
+
+    Args:
+        val1: float. Current value.
+        val2: float. Value from base year.
+        t1: float. Current year.
+        t2: float. Base year.
+    Returns:
+        float: Growth value.
+    """
+
+    return ((val1 / val2) ** (1 / (t1 - t2))) - 1
+
+
+def methodology_1(data, config):
+    """Calculate growth using progress measurement methodology 1 (no target value).
+
+    Use configuration options to get the current and base value from indicator data and use to calculate growth.
+    Compare growth to progress thresholds to return a progress measurement.
+
+    Args:
+        data: DataFrame. Indicator data for which progress is being calculated.
+        config: dict. Configurations for indicator for which progress is being calculated.
+    Returns:
+        str: Progress measure.
+    """
+
+    direction = str(config['direction'])
+    t = float(config['current_year'])
+    t_0 = float(config['base_year'])
+    x = float(config['high'])
+    y = float(config['med'])
+    z = float(config['low'])
+
+    # get current value from data
+    current_value = data.Value[data.Year == t].values[0]
+    # get value from base year from data
+    base_value = data.Value[data.Year == t_0].values[0]
+    # calculate growth
+    cagr_o = growth_calculation(current_value, base_value, t, t_0)
+
+    # use negative growth value if desired direction of progress is negative
+    if direction == "negative":
+        cagr_o = -1 * cagr_o
+
+    return cagr_o
+
+
+def methodology_2(data, config):
+    """Calculate growth using progress measurement methodology 2 (given target value).
+
+    Check if target has already been achieved.
+    Use configuration options to get the current and base value from indicator data and use to calculate growth ratio.
+
+    Args:
+        data: DataFrame. Indicator data for which progress is being calculated.
+        config: dict. Configurations for indicator for which progress is being calculated.
+    Returns:
+        str: Progress status.
+    """
+
+    direction = str(config['direction'])
+    t = float(config['current_year'])
+    t_0 = float(config['base_year'])
+    target = float(config['target'])
+    t_tao = float(config['target_year'])
+
+    # get current value from data
+    current_value = data.Value[data.Year == t].values[0]
+    # get base value from data
+    base_value = data.Value[data.Year == t_0].values[0]
+
+    # check if the target is achieved
+    if (direction == "negative" and current_value <= target) or (direction == "positive" and current_value >= target):
+        return "target_achieved"
+
+    # calculate observed growth
+    cagr_o = growth_calculation(current_value, base_value, t, t_0)
+    # calculate theoretical growth
+    cagr_r = growth_calculation(target, base_value, t_tao, t_0)
+    # calculating growth ratio
+    ratio = cagr_o / cagr_r
+
+    return ratio
+
+
+def get_progress_status(value, config):
+    """Compare growth rate to progress thresholds provided in configs to return progress status.
+
+    Use configuration options to get the high, middle, and low thresholds to compare to the value
+    and return a progress status label.
+
+    Args:
+        value: float. Calculated value of either observed growth or growth ratio for an indicator.
+        config: dict. Configurations for indicator for which progress is being calculated.
+
+    Returns: str. Progress status label.
+
+    """
+
+    x = float(config['high'])
+    y = float(config['med'])
+    z = float(config['low'])
+
+    # compare growth rate to progress thresholds to return progress measure
+    if value >= x:
+        return "on_track"
+    elif y <= value < x:
+        return "progress_needs_acceleration"
+    elif z <= value < y:
+        return "limited_progress"
+    elif value < z:
+        return "deterioration"
+    else:
+        return None
\ No newline at end of file
diff --git a/sdg/outputs/OutputOpenSdg.py b/sdg/outputs/OutputOpenSdg.py
index 71398dd7..ddfda4bf 100644
--- a/sdg/outputs/OutputOpenSdg.py
+++ b/sdg/outputs/OutputOpenSdg.py
@@ -3,7 +3,7 @@
 from sdg.outputs import OutputBase
 from sdg.data import write_csv
 from sdg.json import write_json, df_to_list_dict
-from sdg.ProgressMeasure import measure_indicator_progress
+from sdg.ProgressMeasure import ProgressMeasureIndicator
 
 class OutputOpenSdg(OutputBase):
     """Output SDG data/metadata in the formats expected by Open SDG."""
@@ -65,7 +65,7 @@ def build(self, language=None):
         for indicator_id in self.get_indicator_ids():
             indicator = self.get_indicator_by_id(indicator_id).language(language)
             # Use the methodology to calculate a progress status.
-            progress_status = measure_indicator_progress(indicator, indicator_options=self.indicator_options)
+            progress_status = ProgressMeasureIndicator(indicator, logging=self.logging).status
             if progress_status:
                 # If the calculations returned something, set it in the indicator's 'meta' property.
                 indicator.meta['progress_status'] = progress_status

From c1ac38465d8bd92b991ada9497ec5fc3f3c5f155 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Tue, 5 Nov 2024 12:01:21 -0500
Subject: [PATCH 13/39] merge base and indicator progress measure classes, add
 threshold reduction near limits

---
 sdg/ProgressMeasure.py       | 228 +++++++++++++++++++----------------
 sdg/outputs/OutputOpenSdg.py |   2 +-
 2 files changed, 127 insertions(+), 103 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 8d8ae526..ae108cfa 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -1,7 +1,6 @@
 from sdg import Loggable
 
-class ProgressMeasureBase(Loggable):
-    # Base class used to build classes for series-level and indicator-level progress measures.
+class ProgressMeasureIndicator(Loggable):
     def __init__(self, indicator, logging=None):
 
         Loggable.__init__(self, logging=logging)
@@ -11,13 +10,8 @@ def __init__(self, indicator, logging=None):
         self.meta = indicator.meta
         self.indicator_options = indicator.options
 
-        self.auto_progress_calculation = self.meta.get('auto_progress_calculation') is True
-        self.progress_calculation_options = self.get_progress_calculation_options()
-
-        # method is 1 for qualitative or 2 for quantitative.
-        # The same method and progress thresholds are applied to all sub-indicators within an indicator.
-        self.method = 1 if self.progress_calculation_options[0]['target'] is None else 2
-        self.progress_thresholds = self.get_progress_thresholds() # may not want to allow user to configure progress thresholds
+        # self.auto_progress_calculation = self.meta.get('auto_progress_calculation') is True
+        # self.progress_calculation_options = self.get_progress_calculation_options()
 
         self.cols = self.data.columns
         self.series_column = self.indicator_options.series_column
@@ -35,68 +29,67 @@ def get_progress_calculation_options(self):
             # progress_calc_opts is a list of dictionaries
             # each dictionary corresponds to the options for one series/unit/disaggregation
             if progress_calc_opts:
-                return [self.config_defaults(config) for config in progress_calc_opts]
+                return [config_defaults(config) for config in progress_calc_opts]
             else:
-                return [self.default_progress_calc_options()]
+                return [default_progress_calc_options()]
 
-    def config_defaults(self, config):
-        """Set progress calculation defaults and update them if any user inputs exist.
-        Args:
-            config: dict. Indicator configurations passed as a dictionary.
-        Returns:
-            dict: Dictionary of updated configuratyions.
+    def get_indicator_progress(self):
         """
-    
-        # set default options for progress measurement
-        defaults = self.default_progress_calc_options()
-        # update the defaults with any user configured inputs
-        defaults.update(config)
-    
-        # if target is 0, set to 0.001 (avoids dividing by 0 in calculation)
-        if defaults['target'] == 0:
-            defaults['target'] = 0.001
-    
-        return defaults
-    
-    
-    def default_progress_calc_options(self):
-        """Provide default inputs for calculating progress."""
-        return (
-            {
-                'base_year': 2015,
-                'target_year': 2030,
-                'direction': 'negative',
-                'target': None,
-                # 'progress_thresholds': {}
-            }
-        )
-    
-    def get_progress_thresholds(self, default1={'high': 0.015, 'med': 0.005, 'low': 0}, default2={'high': 0.95, 'med': 0.6, 'low': 0}):
-        """Checks for configured progress thresholds and updates default thresholds based on methodology.
+        Read the progress calculation configurations from the indicator metadata and return the progress 
+        measure score and status for the indicator. The minimum progress score and associated progress 
+        status are taken as the aggregate score for the indicator when multiple series, units, and/or 
+        disaggregations are specified in the progress calculation configurations.
+        When the progress calculation is turned off, any manually specified progress status found in the 
+        metadata is returned alongside a score of None.
+        If the progress calculation is turned off and no progress status is found, it will return a score 
+        of None and 'not_available' as the progress status.
+
         Returns:
-            progress_thresholds: dict. Dictionary of progress thresholds: {'high': x, 'med': y, 'low': z}
+            tuple: (score, status)
         """
-        # Begin with the default progress thresholds for each method and update these with user configured thresholds, if present.
-        if self.method == 1:
-            progress_thresholds = default1
-            input_thresholds = self.meta.get('progress_thresholds')
-            if input_thresholds:
-                progress_thresholds.update(input_thresholds)
-        elif self.method == 2:
-            progress_thresholds = default2
-            input_thresholds = self.meta.get('progress_thresholds')
-            if input_thresholds:
-                progress_thresholds.update(input_thresholds)
+        # Check if progress calculation is turned on
+        if self.meta.get('auto_progress_calculation') is True:
+            # Get the progress measure score and status for each series/unit/disaggregation specified in the progress calculation options.
+            progress_outputs = []
+            for config in self.get_progress_calculation_options():
+                pm = ProgressMeasureSeries(self.indicator, config, logging=self.logging)
+                score = pm.score
+                # discard progress outputs when score is None
+                if score is not None:
+                    # append a tuple of (score, status) for each specified series/unit/disaggregation
+                    progress_outputs.append((score, pm.status))
 
-        return progress_thresholds
+            if progress_outputs:
+                # Return a tuple of the minimum score and associated progress status
+                return min(progress_outputs, key=lambda x: x[0])
+        else:
+            # Use any progress status available in the metadata as a manual override
+            if 'progress_status' in self.meta.keys():
+                return (None, self.meta['progress_status'])
+                
+        return (None, "not_available")
+
+    def get_indicator_score(self):
+        """
+        Get the indicator's progress score.
+        """
+        return self.get_indicator_progress()[0]
+
+
+    def get_indicator_status(self):
+        """
+        Get the indicator's progress status.
+        """
+        return self.get_indicator_progress()[1]
 
 
-class ProgressMeasureSeries(ProgressMeasureBase):
+class ProgressMeasureSeries(ProgressMeasureIndicator):
+    # inherit the indicator-level attributes and methods
     def __init__(self, indicator, config={}, logging=None):
 
-        self.config = self.config_defaults(config)
+        self.config = config_defaults(config)
 
-        ProgressMeasureBase.__init__(self, indicator, logging=logging)
+        ProgressMeasureIndicator.__init__(self, indicator, logging=logging)
 
         # Filter data and update the config with key values for the progress calculation
         self.data = self.filter_data()
@@ -110,7 +103,10 @@ def __init__(self, indicator, config={}, logging=None):
         self.target = self.config.get('target')
         self.direction = -1 if self.config.get('direction') == 'negative' else 1
         self.sign = -1 if self.base_value < 0 else 1 # note: base_value = 0 is invalid, would get zero division error in growth calculation
-
+        
+        self.method = 1 if self.target is None else 2 # method is 1 for qualitative or 2 for quantitative
+        self.progress_thresholds = self.get_progress_thresholds() # may not want to allow user to configure progress thresholds
+        
         self.target_achieved = self.is_target_achieved()
         self.progress_value = self.calculate_progress_value()
         self.status = get_progress_status(self.progress_value, self.progress_thresholds, self.target_achieved)
@@ -250,61 +246,89 @@ def get_score(self):
             return 5
         
         if self.method == 1:
+            # Normalize progress values based on progress thresholds
+            coeff = self.progress_thresholds.get('coefficient', 1) # coeff value defaults to 1 if not available
             if self.progress_value > 0:
-                return min(self.progress_value * 250, 5)
+                return min(self.progress_value * 250 / coeff, 5)
             else:
-                return max(self.progress_value * 250, -5)
+                return max(self.progress_value * 250 / coeff, -5)
         else: # method == 2
+            # TO DO: Align score intervals and progress categories for both methods   
             if self.progress_value > 0.6:
                 return min((7.1429 * self.progress_value) - 4.2857, 5)
             else:
                 return max((4.1667 * self.progress_value) - 2.5, -5)
 
+    def get_progress_thresholds(self):
+        """Checks for configured progress thresholds and updates default thresholds based on methodology.
+        Returns:
+            progress_thresholds: dict. Dictionary of progress thresholds: {'high': x, 'med': y, 'low': z}
+        """      
+        # Get the user configured progress thresholds from the metadata.
+        user_thresholds = self.config.get('progress_thresholds')
 
-class ProgressMeasureIndicator(ProgressMeasureBase):
-    def __init__(self, indicator, logging=None):
-
-        ProgressMeasureBase.__init__(self, indicator, logging=logging)
+        # Begin with the default progress thresholds for each method and update these with user configured thresholds, if present.
+        if self.method == 1:
+            # Qualitative method thresholds
+            progress_thresholds = {'high': 0.015, 'med': 0.005, 'low': 0}
+            progress_thresholds.update(user_thresholds)
+
+            # Reduce thresholds when near limit
+            limit = self.config.get('limit')
+            if limit is not None:
+                base_value = abs(self.base_value)
+                limit = abs(limit)
+                a = 4.44
+                if base_value <= limit:
+                    coeff = 1 - (base_value/limit)**a
+                elif base_value <= 2*limit:
+                    coeff = 1 - ((2*limit - base_value)/limit)**a
+                else:
+                    coeff = 1
+            
+                for key in ['high', 'med', 'low']:
+                    progress_thresholds[key] *= coeff
+                progress_thresholds['coefficient'] = coeff
+                
+        elif self.method == 2:
+            # Quantitative method thresholds
+            progress_thresholds = {'high': 0.95, 'med': 0.6, 'low': 0}
+            progress_thresholds.update(user_thresholds)
 
-        self.score, self.status = self.get_indicator_progress()
+        return progress_thresholds
 
-    def get_indicator_progress(self):
-        """
-        Read the progress calculation configurations from the indicator metadata and return the progress 
-        measure score and status for the indicator. The minimum progress score and associated progress 
-        status are taken as the aggregate score for the indicator when multiple series, units, and/or 
-        disaggregations are specified in the progress calculation configurations.
-        When the progress calculation is turned off, any manually specified progress status found in the 
-        metadata is returned alongside a score of None.
-        If the progress calculation is turned off and no progress status is found, it will return a score 
-        of None and 'not_available' as the progress status.
 
-        Returns:
-            tuple: (score, status)
-        """
-        # Check if progress calculation is turned on
-        if self.auto_progress_calculation:
-            # Get the progress measure score and status for each series/unit/disaggregation specified in the progress calculation options.
-            progress_outputs = []
-            for config in self.progress_calculation_options:
-                pm = ProgressMeasureSeries(self.indicator, config, logging=self.logging)
-                score = pm.score
-                # discard progress outputs when score is None
-                if score is not None:
-                    # append a tuple of (score, status) for each specified series/unit/disaggregation
-                    progress_outputs.append((score, pm.status))
+def config_defaults(config):
+    """Set progress calculation defaults and update them if any user inputs exist.
+    Args:
+        config: dict. Indicator configurations passed as a dictionary.
+    Returns:
+        dict: Dictionary of updated configurations.
+    """
 
-            if progress_outputs:
-                # Return a tuple of the minimum score and associated progress status
-                return min(progress_outputs, key=lambda x: x[0])
-        else:
-            # Use any progress status available in the metadata as a manual override
-            if 'progress_status' in self.meta.keys():
-                return (None, self.meta['progress_status'])
-                
-        return (None, "not_available")
+    # set default options for progress measurement
+    defaults = default_progress_calc_options()
+    # update the defaults with any user configured inputs
+    defaults.update(config)
+
+    # if target is 0, set to 0.001 (avoids dividing by 0 in calculation)
+    if defaults['target'] == 0:
+        defaults['target'] = 0.001
+
+    return defaults
+
+def default_progress_calc_options():
+    """Provide default inputs for calculating progress."""
+    return (
+        {
+            'base_year': 2015,
+            'target_year': 2030,
+            'direction': 'negative',
+            'target': None,
+            'progress_thresholds': {}
+        }
+    )
 
-    
 def all_rows_unique(df, ignore_columns=['Value', 'Progress']):
     """
     Check dataframe for duplicate rows. Ignores data columns (value and progress columns).
diff --git a/sdg/outputs/OutputOpenSdg.py b/sdg/outputs/OutputOpenSdg.py
index ddfda4bf..a7f12351 100644
--- a/sdg/outputs/OutputOpenSdg.py
+++ b/sdg/outputs/OutputOpenSdg.py
@@ -65,7 +65,7 @@ def build(self, language=None):
         for indicator_id in self.get_indicator_ids():
             indicator = self.get_indicator_by_id(indicator_id).language(language)
             # Use the methodology to calculate a progress status.
-            progress_status = ProgressMeasureIndicator(indicator, logging=self.logging).status
+            progress_status = ProgressMeasureIndicator(indicator, logging=self.logging).get_indicator_status()
             if progress_status:
                 # If the calculations returned something, set it in the indicator's 'meta' property.
                 indicator.meta['progress_status'] = progress_status

From 76d89ce4693f747abc4416471e37a19a64269258 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Tue, 5 Nov 2024 16:36:23 -0500
Subject: [PATCH 14/39] add progress column

---
 sdg/IndicatorOptions.py |  9 +++++++++
 sdg/ProgressMeasure.py  | 22 ++++++++++++----------
 sdg/open_sdg.py         |  4 ++++
 3 files changed, 25 insertions(+), 10 deletions(-)

diff --git a/sdg/IndicatorOptions.py b/sdg/IndicatorOptions.py
index d9673c18..ddc173ed 100644
--- a/sdg/IndicatorOptions.py
+++ b/sdg/IndicatorOptions.py
@@ -12,6 +12,7 @@ def __init__(self):
         ]
         self.series_column = 'Series'
         self.unit_column = 'Units'
+        self.progress_column = 'Progress'
         self.observation_attributes = []
 
 
@@ -51,3 +52,11 @@ def set_unit_column(self, column):
 
     def get_unit_column(self):
         return self.unit_column
+    
+    def set_progress_column(self, column):
+        self.progress_column = column
+        return self
+
+
+    def get_progress_column(self):
+        return self.progress_column
diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index ae108cfa..dc573716 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -8,15 +8,16 @@ def __init__(self, indicator, logging=None):
         self.inid = indicator.inid
         self.data = indicator.data
         self.meta = indicator.meta
-        self.indicator_options = indicator.options
+        # self.indicator_options = indicator.options
 
         # self.auto_progress_calculation = self.meta.get('auto_progress_calculation') is True
         # self.progress_calculation_options = self.get_progress_calculation_options()
 
         self.cols = self.data.columns
-        self.series_column = self.indicator_options.series_column
-        self.unit_column = self.indicator_options.unit_column
-        self.non_disaggregation_columns = self.indicator_options.non_disaggregation_columns
+        self.series_column = self.indicator.options.series_column
+        self.unit_column = self.indicator.options.unit_column
+        self.progress_column = self.indicator.options.progress_column
+        self.non_disaggregation_columns = self.indicator.options.non_disaggregation_columns
 
     def get_progress_calculation_options(self):
         """
@@ -151,21 +152,22 @@ def filter_data(self):
             # Otherwise, find headline data (rows where values in all disaggregation dimensions are NA)
             else:
                 data = data[data.loc[:, ~self.cols.isin(self.non_disaggregation_columns)].isna().all('columns')]
+
+            if self.progress_column in self.cols:
+                # Replace values with those from the progress column, then drop progress column
+                data['Value'] = data[self.progress_column]
+                data.drop(self.progress_column, axis=1, inplace=True)
             # Keep only Year and Value columns
-            data = data.iloc[:, [0, -1]]
+            data = data[['Year', 'Value']]           
 
             # To do: 
-            # Add PROGRESS/Progress to non_disaggregation columns
-            # if progress column in cols: use progress column values instead of Value
             # What if no unit/series is selected by user but series/units column(s) exist? --> error? alphabetical? first appearing? None? Warning?
-            # What if indicator_options = None or config = None?
             # Fix: when data not sufficiently reduced by user settings, there can be multiple values for the same year
-            # Apply data translations. Otherwise, the series/unit/disaggration name must appear exactly as it appears in the data file.
 
         # remove any NA values from data
         data = data[data["Value"].notna()]
 
-        # returns None if no rows in data (no total line to calculate progress)
+        # returns None if no rows in data
         if data.shape[0] < 1:
             return None
 
diff --git a/sdg/open_sdg.py b/sdg/open_sdg.py
index 996e09cf..2fc509ac 100644
--- a/sdg/open_sdg.py
+++ b/sdg/open_sdg.py
@@ -203,6 +203,7 @@ def open_sdg_indicator_options_defaults():
             'Series',
             'Value',
             'GeoCode',
+            'Progress',
             'Observation status',
             'Unit multiplier',
             'Unit measure',
@@ -218,6 +219,7 @@ def open_sdg_indicator_options_defaults():
         ],
         'series_column': 'Series',
         'unit_column': 'Units',
+        'progress_column': 'Progress',
     }
 
 
@@ -233,6 +235,8 @@ def open_sdg_indicator_options_from_dict(options):
         options_obj.set_series_column(options['series_column'])
     if 'unit_column' in options:
         options_obj.set_unit_column(options['unit_column'])
+    if 'progress_column' in options:
+        options_obj.set_progress_column(options['progress_column'])
     return options_obj
 
 

From b05418e9c53d41fa074fa825570b80e02b4a5d51 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Tue, 5 Nov 2024 16:38:37 -0500
Subject: [PATCH 15/39] rename indicator and series progress classes

---
 sdg/ProgressMeasure.py       | 8 ++++----
 sdg/outputs/OutputOpenSdg.py | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index dc573716..357118a8 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -1,6 +1,6 @@
 from sdg import Loggable
 
-class ProgressMeasureIndicator(Loggable):
+class IndicatorProgress(Loggable):
     def __init__(self, indicator, logging=None):
 
         Loggable.__init__(self, logging=logging)
@@ -53,7 +53,7 @@ def get_indicator_progress(self):
             # Get the progress measure score and status for each series/unit/disaggregation specified in the progress calculation options.
             progress_outputs = []
             for config in self.get_progress_calculation_options():
-                pm = ProgressMeasureSeries(self.indicator, config, logging=self.logging)
+                pm = SeriesProgress(self.indicator, config, logging=self.logging)
                 score = pm.score
                 # discard progress outputs when score is None
                 if score is not None:
@@ -84,13 +84,13 @@ def get_indicator_status(self):
         return self.get_indicator_progress()[1]
 
 
-class ProgressMeasureSeries(ProgressMeasureIndicator):
+class SeriesProgress(IndicatorProgress):
     # inherit the indicator-level attributes and methods
     def __init__(self, indicator, config={}, logging=None):
 
         self.config = config_defaults(config)
 
-        ProgressMeasureIndicator.__init__(self, indicator, logging=logging)
+        IndicatorProgress.__init__(self, indicator, logging=logging)
 
         # Filter data and update the config with key values for the progress calculation
         self.data = self.filter_data()
diff --git a/sdg/outputs/OutputOpenSdg.py b/sdg/outputs/OutputOpenSdg.py
index a7f12351..1f098242 100644
--- a/sdg/outputs/OutputOpenSdg.py
+++ b/sdg/outputs/OutputOpenSdg.py
@@ -3,7 +3,7 @@
 from sdg.outputs import OutputBase
 from sdg.data import write_csv
 from sdg.json import write_json, df_to_list_dict
-from sdg.ProgressMeasure import ProgressMeasureIndicator
+from sdg.ProgressMeasure import IndicatorProgress
 
 class OutputOpenSdg(OutputBase):
     """Output SDG data/metadata in the formats expected by Open SDG."""
@@ -65,7 +65,7 @@ def build(self, language=None):
         for indicator_id in self.get_indicator_ids():
             indicator = self.get_indicator_by_id(indicator_id).language(language)
             # Use the methodology to calculate a progress status.
-            progress_status = ProgressMeasureIndicator(indicator, logging=self.logging).get_indicator_status()
+            progress_status = IndicatorProgress(indicator, logging=self.logging).get_indicator_status()
             if progress_status:
                 # If the calculations returned something, set it in the indicator's 'meta' property.
                 indicator.meta['progress_status'] = progress_status

From 496852e84f24778df3062231f112daa735ae1deb Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Tue, 5 Nov 2024 16:43:20 -0500
Subject: [PATCH 16/39] remove old progress measure functions

---
 sdg/ProgressMeasure_old.py | 356 -------------------------------------
 1 file changed, 356 deletions(-)
 delete mode 100644 sdg/ProgressMeasure_old.py

diff --git a/sdg/ProgressMeasure_old.py b/sdg/ProgressMeasure_old.py
deleted file mode 100644
index e8636dad..00000000
--- a/sdg/ProgressMeasure_old.py
+++ /dev/null
@@ -1,356 +0,0 @@
-# TO DO:
-# separate progress_thresholds from progress_calculation_options
-# What to do about when aggregating over progress values where some are None? Ignore the None values? Return None?    
-
-
-def apply(function, values, **kwargs):
-    """
-    Applies the input function to the input values.
-    **kwargs can be specified, optionally.
-    """
-    return function(values, **kwargs)
-
-
-def get_progress_calculation_options(metadata):
-    """
-    Get progress calculation options from the indicator metadata.
-    If progress calculation options are not specified in the metadata, 
-    return the default progress calculation options instead.
-    """
-    if metadata is not None:
-        progress_calc_opts = metadata.get('progress_calculation_options')
-        # progress_calc_opts is a list of dictionaries
-        # each dictionary corresponds to the options for one series/unit/disaggregation
-        if progress_calc_opts:
-            return [config_defaults(config) for config in progress_calc_opts]
-        
-    return [default_progress_calc_options()]
-
-def measure_indicator_progress(indicator, agg_func=min, **kwargs):
-    """
-    Read the progress calculation configurations from the indicator metadata and return the aggregate progress 
-    measure value and status for the indicator. If the progress calculation configurations specify multiple 
-    series, units, and/or disaggregations, the progress value for each is calculated and an aggregate progress 
-    value is determined using the specified aggregation function.
-
-    Args:
-        indicator: Indicator object. 
-        indicator_options: IndicatorOptions object. 
-        agg_func: function. Function taken to compute the aggregate progress value from a list of progress values for each series/unit/disaggregation specified in the progress calculation configurations. Default: min()
-        **kwargs: **kwargs for agg_func
-    Returns:
-
-    """
-    data = indicator.data  # get indicator data
-    meta = indicator.meta  # get configurations
-    indicator_options = indicator.options
-
-    # Check if progress calculation is turned on
-    if meta.get('auto_progress_calculation') is True:
-        # Get the progress calculation options from the metadata (or the default values if none are specified).
-        progress_calc_options = get_progress_calculation_options(meta)
-        method = get_method(meta)
-        progress_thresholds = get_progress_thresholds(meta)
-        # Calculate the progress measure value for each series/unit/disaggregation specified in the options.
-        progress_values = [measure_progress(data, config, indicator_options) for config in progress_calc_options]
-        # What to do with None values?
-        # 1) ignore None values?
-        progress_values = [x for x in progress_values if x is not None]
-        output_value = apply(agg_func, progress_values, **kwargs)
-        return output_value, get_progress_status(output_value, meta)
-        # # OR 2) return None?
-        # if None not in progress_values:
-        #     output_value = apply(agg_func, progress_values, **kwargs)
-        #     return output_value, get_progress_status(output_value, meta)
-
-
-
-def measure_progress(data, config, indicator_options):
-    """Sets up all needed parameters and data for progress calculation, determines methodology for calculation,
-    and returns progress measure as an output.
-
-    Args:
-        data: 
-        config: 
-        indicator_options: 
-    Returns:
-        output: float. A value indicating the progress measurement for the indicator.
-    """
-    # get relevant data to calculate progress (aggregate/total line only)
-    data = data_progress_measure(data, config, indicator_options)
-    if data is None:
-        return None
-
-    # get years that exist in the data
-    years = data["Year"]
-
-    # set current year to be the most recent year that exists in data
-    current_year = {'current_year': years.max()}
-    # update the calculation inputs with the current year
-    config.update(current_year)
-
-    # check if the base year input exists in the data
-    if config['base_year'] not in years.values:
-        # return None if the base year input is in the future of the most recently available data
-        if config['base_year'] > years.max():
-            return None
-        # if base year is not in available data and not in the future,
-        # assign it to be the minimum existing year past the base year given
-        config['base_year'] = years[years > config['base_year']].min()
-
-    # return None if there is not enough data to calculate progress (must be at least 2 data points)
-    if config['current_year'] - config['base_year'] < 1:
-        return None
-
-    # determine which methodology to run
-    # if no target exists, run methodology for qualitative target. else run methodology for quantitative target.
-    if config['target'] is None:
-        # update progress thresholds for qualitative target
-        config = update_progress_thresholds(config, method=1)
-        # do progress calculation according to methodology for qualitative target
-        output = methodology_1(data=data, config=config)
-
-    else:
-        # update progress thresholds for quantitative target
-        config = update_progress_thresholds(config, method=2)
-        # do progress calculation according to methodology for quantitative target
-        output = methodology_2(data=data, config=config)
-
-    return output
-
-
-def config_defaults(config):
-    """Set progress calculation defaults and update them if any user inputs exist.
-    Args:
-        config: dict. Indicator configurations passed as a dictionary.
-    Returns:
-        dict: Dictionary of updated configurations.
-    """
-
-    # set default options for progress measurement
-    defaults = default_progress_calc_options()
-    # update the defaults with any user configured inputs
-    defaults.update(config)
-
-    # if target is 0, set to 0.001 (avoids dividing by 0 in calculation)
-    if defaults['target'] == 0:
-        defaults['target'] = 0.001
-
-    return defaults
-
-
-def default_progress_calc_options():
-    """Provide default inputs for calculating progress."""
-    return (
-        {
-            'base_year': 2015,
-            'target_year': 2030,
-            'direction': 'negative',
-            'target': None,
-            # 'progress_thresholds': {}
-        }
-    )
-
-
-def get_progress_thresholds(meta, method, default1={'high': 0.015, 'med': 0.005, 'low': 0}, default2={'high': 0.95, 'med': 0.6, 'low': 0}):
-    """Checks for configured progress thresholds or updates thresholds based on methodology.
-    Args:
-        config: dict. Progress calculation inputs for indicator.
-        method: int. Indicates which methodology is being used. Either 1 (for qualitative targets) or 2 (for
-                quantitative targets).
-    Returns:
-        dict: Dictionary of updated inputs for calculation.
-    """
-
-    # if progress threshold inputs exist and are not empty, assign user input value as thresholds
-    # otherwise if progress threshold inputs are empty, use defaults
-    if ('progress_thresholds' in config.keys()) & (bool(config['progress_thresholds'])):
-        progress_thresholds = config['progress_thresholds']
-    elif method == 1:
-        progress_thresholds = {'high': 0.015, 'med': 0.005, 'low': 0}
-    elif method == 2:
-        progress_thresholds = {'high': 0.95, 'med': 0.6, 'low': 0}
-    else:
-        progress_thresholds = {}
-
-    # update inputs with thresholds
-    config.update(progress_thresholds)
-
-    return config
-
-
-def data_progress_measure(data, config=None, indicator_options=None):
-    """Checks and filters data for indicator for which progress is being calculated.
-
-    If the Year column in data contains more than 4 characters (standard year format), takes the first 4 characters.
-    If data contains disaggregation columns, take only the total line data.
-    Removes any NA values.
-    Checks that there is enough data to calculate progress.
-
-    Args:
-        data: DataFrame. Indicator data for which progress is being calculated.
-    Returns:
-        DataFrame: Data in valid format for calculating progress.
-    """
-
-    # check if the year value contains more than 4 digits (indicating a range of years)
-    if (data['Year'].astype(str).str.len() > 4).any():
-        # take the first year in the range
-        data['Year'] = data['Year'].astype(str).str.slice(0, 4).astype(int)
-
-    series_column = indicator_options.series_column
-    unit_column = indicator_options.unit_column
-    non_disaggregation_columns = indicator_options.non_disaggregation_columns
-    cols = data.columns
-
-    if len(cols) > 2:
-        # Data has disaggregation columns. Find the appropriate subset of data for progress calculation
-        # If units and/or series columns exist, keep only the user selected unit/series
-        if (unit_column in cols) and ('unit' in config.keys()):
-            data = data.loc[data[unit_column] == config['unit']]
-        if (series_column in cols) and ('series' in config.keys()):
-            data = data.loc[data[series_column] == config['series']]
-        # If disaggregation specified by user, reduce the dataframe to only include the selected disaggregation
-        disaggregation = config.get('disaggregation')
-        if disaggregation:
-            for k, v in disaggregation.items():
-                data = data.loc[data[k] == v]
-        # Otherwise, find headline data (rows where values in all disaggregation dimensions are NA)
-        else:
-            data = data[data.loc[:, ~cols.isin(non_disaggregation_columns)].isna().all('columns')]
-        # Keep only Year and Value columns
-        data = data.iloc[:, [0, -1]]
-
-        # To do: 
-        # Add PROGRESS/Progress to non_disaggregation columns
-        # if progress column in cols: use progress column values instead of Value
-        # What if no unit/series is selected by user but series/units column(s) exist? --> error? alphabetical? first appearing? None? Warning?
-        # What if indicator_options = None or config = None?
-        # Fix: when data not sufficiently reduced by user settings, there can be multiple values for the same year
-
-    # remove any NA values from data
-    data = data[data["Value"].notna()]
-
-    # returns None if no rows in data (no total line to calculate progress)
-    if data.shape[0] < 1:
-        return None
-
-    return data
-
-
-def growth_calculation(val1, val2, t1, t2):
-    """Calculate cumulative annual growth rate with required arguments.
-
-    Args:
-        val1: float. Current value.
-        val2: float. Value from base year.
-        t1: float. Current year.
-        t2: float. Base year.
-    Returns:
-        float: Growth value.
-    """
-
-    return ((val1 / val2) ** (1 / (t1 - t2))) - 1
-
-
-def methodology_1(data, config):
-    """Calculate growth using progress measurement methodology 1 (no target value).
-
-    Use configuration options to get the current and base value from indicator data and use to calculate growth.
-    Compare growth to progress thresholds to return a progress measurement.
-
-    Args:
-        data: DataFrame. Indicator data for which progress is being calculated.
-        config: dict. Configurations for indicator for which progress is being calculated.
-    Returns:
-        str: Progress measure.
-    """
-
-    direction = str(config['direction'])
-    t = float(config['current_year'])
-    t_0 = float(config['base_year'])
-    x = float(config['high'])
-    y = float(config['med'])
-    z = float(config['low'])
-
-    # get current value from data
-    current_value = data.Value[data.Year == t].values[0]
-    # get value from base year from data
-    base_value = data.Value[data.Year == t_0].values[0]
-    # calculate growth
-    cagr_o = growth_calculation(current_value, base_value, t, t_0)
-
-    # use negative growth value if desired direction of progress is negative
-    if direction == "negative":
-        cagr_o = -1 * cagr_o
-
-    return cagr_o
-
-
-def methodology_2(data, config):
-    """Calculate growth using progress measurement methodology 2 (given target value).
-
-    Check if target has already been achieved.
-    Use configuration options to get the current and base value from indicator data and use to calculate growth ratio.
-
-    Args:
-        data: DataFrame. Indicator data for which progress is being calculated.
-        config: dict. Configurations for indicator for which progress is being calculated.
-    Returns:
-        str: Progress status.
-    """
-
-    direction = str(config['direction'])
-    t = float(config['current_year'])
-    t_0 = float(config['base_year'])
-    target = float(config['target'])
-    t_tao = float(config['target_year'])
-
-    # get current value from data
-    current_value = data.Value[data.Year == t].values[0]
-    # get base value from data
-    base_value = data.Value[data.Year == t_0].values[0]
-
-    # check if the target is achieved
-    if (direction == "negative" and current_value <= target) or (direction == "positive" and current_value >= target):
-        return "target_achieved"
-
-    # calculate observed growth
-    cagr_o = growth_calculation(current_value, base_value, t, t_0)
-    # calculate theoretical growth
-    cagr_r = growth_calculation(target, base_value, t_tao, t_0)
-    # calculating growth ratio
-    ratio = cagr_o / cagr_r
-
-    return ratio
-
-
-def get_progress_status(value, config):
-    """Compare growth rate to progress thresholds provided in configs to return progress status.
-
-    Use configuration options to get the high, middle, and low thresholds to compare to the value
-    and return a progress status label.
-
-    Args:
-        value: float. Calculated value of either observed growth or growth ratio for an indicator.
-        config: dict. Configurations for indicator for which progress is being calculated.
-
-    Returns: str. Progress status label.
-
-    """
-
-    x = float(config['high'])
-    y = float(config['med'])
-    z = float(config['low'])
-
-    # compare growth rate to progress thresholds to return progress measure
-    if value >= x:
-        return "on_track"
-    elif y <= value < x:
-        return "progress_needs_acceleration"
-    elif z <= value < y:
-        return "limited_progress"
-    elif value < z:
-        return "deterioration"
-    else:
-        return None
\ No newline at end of file

From 3d9a9c5ab72bab3a999d4c4e962a85d7ebb8789e Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Wed, 27 Nov 2024 16:25:14 -0500
Subject: [PATCH 17/39] read disaggregations for progress measure organized as
 field/values pairs

---
 sdg/ProgressMeasure.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 357118a8..11665559 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -145,10 +145,10 @@ def filter_data(self):
             if (self.series_column in self.cols) and ('series' in self.config.keys()):
                 data = data.loc[data[self.series_column] == self.config['series']]
             # If disaggregation specified by user, reduce the dataframe to only include the selected disaggregation
-            disaggregation = self.config.get('disaggregation')
-            if disaggregation:
-                for k, v in disaggregation.items():
-                    data = data.loc[data[k] == v]
+            disaggregations = self.config.get('disaggregation')
+            if disaggregations:
+                for disagg in disaggregations:
+                    data = data.loc[data[disagg['field']] == disagg['value']]
             # Otherwise, find headline data (rows where values in all disaggregation dimensions are NA)
             else:
                 data = data[data.loc[:, ~self.cols.isin(self.non_disaggregation_columns)].isna().all('columns')]

From bc5f9caf227fd80a5b966c65bd1d1eaa03bcf60f Mon Sep 17 00:00:00 2001
From: Brock Fanning <brockfanning@gmail.com>
Date: Tue, 3 Dec 2024 08:05:54 -0500
Subject: [PATCH 18/39] Add caching to avoid repeating calculation during
 translated builds

---
 sdg/ProgressMeasure.py       | 12 +++++++++---
 sdg/open_sdg.py              |  1 +
 sdg/outputs/OutputOpenSdg.py | 12 ++++++++++--
 3 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 11665559..03a0464a 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -1,13 +1,14 @@
 from sdg import Loggable
 
 class IndicatorProgress(Loggable):
-    def __init__(self, indicator, logging=None):
+    def __init__(self, indicator, logging=None, cache_store=None):
 
         Loggable.__init__(self, logging=logging)
         self.indicator = indicator
         self.inid = indicator.inid
         self.data = indicator.data
         self.meta = indicator.meta
+        self.cache_store = cache_store
         # self.indicator_options = indicator.options
 
         # self.auto_progress_calculation = self.meta.get('auto_progress_calculation') is True
@@ -50,6 +51,9 @@ def get_indicator_progress(self):
         """
         # Check if progress calculation is turned on
         if self.meta.get('auto_progress_calculation') is True:
+            # First try to use caching.
+            if self.cache_store is not None and self.inid in self.cache_store:
+                return self.cache_store[self.inid]
             # Get the progress measure score and status for each series/unit/disaggregation specified in the progress calculation options.
             progress_outputs = []
             for config in self.get_progress_calculation_options():
@@ -61,8 +65,10 @@ def get_indicator_progress(self):
                     progress_outputs.append((score, pm.status))
 
             if progress_outputs:
-                # Return a tuple of the minimum score and associated progress status
-                return min(progress_outputs, key=lambda x: x[0])
+                # Cache/return a tuple of the minimum score and associated progress status
+                results = min(progress_outputs, key=lambda x: x[0])
+                self.cache_store[self.inid] = results
+                return results
         else:
             # Use any progress status available in the metadata as a manual override
             if 'progress_status' in self.meta.keys():
diff --git a/sdg/open_sdg.py b/sdg/open_sdg.py
index 2fc509ac..978d839d 100644
--- a/sdg/open_sdg.py
+++ b/sdg/open_sdg.py
@@ -362,6 +362,7 @@ def open_sdg_prep(options):
         logging=options['logging'],
         indicator_export_filename=options['indicator_export_filename'],
         ignore_out_of_scope_disaggregation_stats=options['ignore_out_of_scope_disaggregation_stats'],
+        cache_store = {},
     )
 
     if callable(options['alter_indicator']):
diff --git a/sdg/outputs/OutputOpenSdg.py b/sdg/outputs/OutputOpenSdg.py
index 1f098242..5eeeed34 100644
--- a/sdg/outputs/OutputOpenSdg.py
+++ b/sdg/outputs/OutputOpenSdg.py
@@ -12,7 +12,7 @@ class OutputOpenSdg(OutputBase):
     def __init__(self, inputs, schema, output_folder='_site', translations=None,
         reporting_status_extra_fields=None, indicator_options=None,
         indicator_downloads=None, logging=None, indicator_export_filename='all_indicators',
-        ignore_out_of_scope_disaggregation_stats=False):
+        ignore_out_of_scope_disaggregation_stats=False, cache_store=None):
         """Constructor for OutputOpenSdg.
 
         Parameters
@@ -29,6 +29,9 @@ def __init__(self, inputs, schema, output_folder='_site', translations=None,
             A filename (without the extension) for the zipped indicator export.
         ignore_out_of_scope_disaggregation_stats : boolean
             Whether to ignore the "not applicable" disaggregation stats.
+        cache_store : dict
+            A store that is passed in to allow caching during the build, to
+            avoid useless duplication.
         """
         if translations is None:
             translations = []
@@ -39,6 +42,7 @@ def __init__(self, inputs, schema, output_folder='_site', translations=None,
         self.indicator_downloads = indicator_downloads
         self.indicator_export_filename = indicator_export_filename
         self.ignore_na = ignore_out_of_scope_disaggregation_stats
+        self.cache_store = cache_store
 
 
     def build(self, language=None):
@@ -65,7 +69,11 @@ def build(self, language=None):
         for indicator_id in self.get_indicator_ids():
             indicator = self.get_indicator_by_id(indicator_id).language(language)
             # Use the methodology to calculate a progress status.
-            progress_status = IndicatorProgress(indicator, logging=self.logging).get_indicator_status()
+            progress_status = IndicatorProgress(
+                indicator,
+                logging=self.logging,
+                cache_store=self.cache_store,
+            ).get_indicator_status()
             if progress_status:
                 # If the calculations returned something, set it in the indicator's 'meta' property.
                 indicator.meta['progress_status'] = progress_status

From 1d0b8856fdfe1cedc004b9b618775f9d51205ae1 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Tue, 3 Dec 2024 14:28:04 -0500
Subject: [PATCH 19/39] fixes for issues with progress column

---
 sdg/ProgressMeasure.py | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 11665559..c44eabb6 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -155,10 +155,11 @@ def filter_data(self):
 
             if self.progress_column in self.cols:
                 # Replace values with those from the progress column, then drop progress column
-                data['Value'] = data[self.progress_column]
-                data.drop(self.progress_column, axis=1, inplace=True)
+                data = data.assign(Value=data[self.progress_column])
+                # data['Value'] = data[self.progress_column]
+                # data.drop(self.progress_column, axis=1, inplace=True)
             # Keep only Year and Value columns
-            data = data[['Year', 'Value']]           
+            data = data[['Year', 'Value']]
 
             # To do: 
             # What if no unit/series is selected by user but series/units column(s) exist? --> error? alphabetical? first appearing? None? Warning?
@@ -166,6 +167,8 @@ def filter_data(self):
 
         # remove any NA values from data
         data = data[data["Value"].notna()]
+        # cast values to float
+        data["Value"] = data["Value"].astype('float')
 
         # returns None if no rows in data
         if data.shape[0] < 1:
@@ -300,7 +303,7 @@ def get_progress_thresholds(self):
         return progress_thresholds
 
 
-def config_defaults(config):
+def config_defaults(config={}):
     """Set progress calculation defaults and update them if any user inputs exist.
     Args:
         config: dict. Indicator configurations passed as a dictionary.

From 1b674aad30580d7cd8a9c127524771592ffba5e5 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Wed, 11 Dec 2024 11:26:58 -0500
Subject: [PATCH 20/39] cache_store=None fix

---
 sdg/ProgressMeasure.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 4e2da172..f564214a 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -67,7 +67,10 @@ def get_indicator_progress(self):
             if progress_outputs:
                 # Cache/return a tuple of the minimum score and associated progress status
                 results = min(progress_outputs, key=lambda x: x[0])
-                self.cache_store[self.inid] = results
+                if self.cache_store is None:
+                    self.cache_store = {self.inid: results}
+                else:
+                    self.cache_store[self.inid] = results
                 return results
         else:
             # Use any progress status available in the metadata as a manual override

From 15c07b7d95cc498f10a26b2af3bee2dddae6caf2 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Wed, 11 Dec 2024 16:23:55 -0500
Subject: [PATCH 21/39] re-align scores for both methodologies

---
 sdg/ProgressMeasure.py | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index f564214a..16c5e85b 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -262,10 +262,15 @@ def get_score(self):
         if self.method == 1:
             # Normalize progress values based on progress thresholds
             coeff = self.progress_thresholds.get('coefficient', 1) # coeff value defaults to 1 if not available
-            if self.progress_value > 0:
-                return min(self.progress_value * 250 / coeff, 5)
-            else:
-                return max(self.progress_value * 250 / coeff, -5)
+            reduced_progress = self.progress_value/coeff
+            if reduced_progress >= 0.015:
+                return min(500*reduced_progress-5, 5)
+            if reduced_progress >= 0.005:
+                return 250*reduced_progress-1.25
+            if reduced_progress >= 0:
+                return 500*reduced_progress-2.5
+            if reduced_progress < 0:
+                return max(125*reduced_progress-2.5, -5)
         else: # method == 2
             # TO DO: Align score intervals and progress categories for both methods   
             if self.progress_value > 0.6:

From 7e3267d38b03b59a0e059f7afcde5c9b55c5ffc8 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Wed, 11 Dec 2024 16:26:32 -0500
Subject: [PATCH 22/39] update comments

---
 sdg/ProgressMeasure.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 16c5e85b..52ea4f28 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -53,6 +53,7 @@ def get_indicator_progress(self):
         if self.meta.get('auto_progress_calculation') is True:
             # First try to use caching.
             if self.cache_store is not None and self.inid in self.cache_store:
+                # self.debug(f'{self.inid} progress from cache')
                 return self.cache_store[self.inid]
             # Get the progress measure score and status for each series/unit/disaggregation specified in the progress calculation options.
             progress_outputs = []
@@ -128,7 +129,7 @@ def update_config(self):
     
         # set current year to be the most recent year that exists in data
         self.config['current_year'] = years.max()
-        self.config['current_value'] = self.data.Value[self.data.Year == self.config['current_year']].item()
+        self.config['current_value'] = self.data.Value[self.data.Year == self.config['current_year']].item() # GET ERROR HERE IF DISAGGREGATION SELECTION NOT SUFFICIENTLY REDUCED
     
         # check if the base year input exists in the data
         if self.config['base_year'] not in years.values:
@@ -171,8 +172,8 @@ def filter_data(self):
             data = data[['Year', 'Value']]
 
             # To do: 
-            # What if no unit/series is selected by user but series/units column(s) exist? --> error? alphabetical? first appearing? None? Warning?
-            # Fix: when data not sufficiently reduced by user settings, there can be multiple values for the same year
+            # What if no unit/series is selected by user but series/units column(s) exist? --> Warn user and return not_available progress status
+            # Fix: Warn user when data not sufficiently reduced by settings. There can be multiple values for the same year, so return not_available progress status
 
         # remove any NA values from data
         data = data[data["Value"].notna()]
@@ -271,8 +272,7 @@ def get_score(self):
                 return 500*reduced_progress-2.5
             if reduced_progress < 0:
                 return max(125*reduced_progress-2.5, -5)
-        else: # method == 2
-            # TO DO: Align score intervals and progress categories for both methods   
+        else: # method == 2  
             if self.progress_value > 0.6:
                 return min((7.1429 * self.progress_value) - 4.2857, 5)
             else:

From 7fa7c76c5023508a4e65ed41960d6d590ce8133c Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Thu, 12 Dec 2024 11:26:40 -0500
Subject: [PATCH 23/39] use progress_thresholds in score calculation

---
 sdg/ProgressMeasure.py | 22 +++++++++++++++-------
 1 file changed, 15 insertions(+), 7 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 52ea4f28..a31a3dbe 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -260,22 +260,30 @@ def get_score(self):
         if self.target_achieved:
             return 5
         
+        high = self.progress_thresholds['high']
+        med = self.progress_thresholds['med']
+        low = self.progress_thresholds['low']
+
         if self.method == 1:
             # Normalize progress values based on progress thresholds
             coeff = self.progress_thresholds.get('coefficient', 1) # coeff value defaults to 1 if not available
             reduced_progress = self.progress_value/coeff
-            if reduced_progress >= 0.015:
+            if reduced_progress >= high:
                 return min(500*reduced_progress-5, 5)
-            if reduced_progress >= 0.005:
+            if reduced_progress >= med:
                 return 250*reduced_progress-1.25
-            if reduced_progress >= 0:
+            if reduced_progress >= low:
                 return 500*reduced_progress-2.5
-            if reduced_progress < 0:
+            if reduced_progress < low:
                 return max(125*reduced_progress-2.5, -5)
-        else: # method == 2  
-            if self.progress_value > 0.6:
+        else: # method == 2
+            if self.progress_value >= high:
                 return min((7.1429 * self.progress_value) - 4.2857, 5)
-            else:
+            if self.progress_value >= med:
+                return min((7.1429 * self.progress_value) - 4.2857, 5)
+            if self.progress_value >= low:
+                return max((4.1667 * self.progress_value) - 2.5, -5)
+            if self.progress_value < low:
                 return max((4.1667 * self.progress_value) - 2.5, -5)
 
     def get_progress_thresholds(self):

From 998315f1e17fa2576c55feaffd804a26fc5e1e86 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Tue, 17 Dec 2024 17:11:46 -0500
Subject: [PATCH 24/39] generalisation allowing easy replacement of series
 score aggregation function

---
 sdg/ProgressMeasure.py | 77 +++++++++++++++++++++++++++++++-----------
 1 file changed, 57 insertions(+), 20 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index a31a3dbe..70412a99 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -43,12 +43,16 @@ def get_indicator_progress(self):
         disaggregations are specified in the progress calculation configurations.
         When the progress calculation is turned off, any manually specified progress status found in the 
         metadata is returned alongside a score of None.
-        If the progress calculation is turned off and no progress status is found, it will return a score 
+        If the progress calculation is turned off and no progress status is found, it will return a default score 
         of None and 'not_available' as the progress status.
 
         Returns:
             tuple: (score, status)
         """
+        # Initialize the score and progress status with defaults
+        indicator_score = None
+        indicator_status = 'not_available'
+
         # Check if progress calculation is turned on
         if self.meta.get('auto_progress_calculation') is True:
             # First try to use caching.
@@ -56,29 +60,38 @@ def get_indicator_progress(self):
                 # self.debug(f'{self.inid} progress from cache')
                 return self.cache_store[self.inid]
             # Get the progress measure score and status for each series/unit/disaggregation specified in the progress calculation options.
-            progress_outputs = []
+            scores = []
+            targets = []
             for config in self.get_progress_calculation_options():
-                pm = SeriesProgress(self.indicator, config, logging=self.logging)
-                score = pm.score
-                # discard progress outputs when score is None
+                series = SeriesProgress(self.indicator, config, logging=self.logging)
+                score = series.score
                 if score is not None:
-                    # append a tuple of (score, status) for each specified series/unit/disaggregation
-                    progress_outputs.append((score, pm.status))
-
-            if progress_outputs:
-                # Cache/return a tuple of the minimum score and associated progress status
-                results = min(progress_outputs, key=lambda x: x[0])
-                if self.cache_store is None:
-                    self.cache_store = {self.inid: results}
-                else:
-                    self.cache_store[self.inid] = results
-                return results
+                    scores.append(score)
+                    targets.append(series.target_achieved)
+            # Update the indicator score and progress status
+            if scores:
+                indicator_score = min(scores)
+                target_achieved = all(targets) # True only when targets for all series are achieved
+                if target_achieved is True:
+                    indicator_score = 5
+                indicator_status = get_progress_status_from_score(indicator_score, target_achieved)
+
         else:
             # Use any progress status available in the metadata as a manual override
             if 'progress_status' in self.meta.keys():
-                return (None, self.meta['progress_status'])
-                
-        return (None, "not_available")
+                indicator_status = self.meta['progress_status']
+                # score is None
+
+        # Result to return is tuple of indicator score and progress status
+        result = (indicator_score, indicator_status)
+        
+        # Cache the result
+        if self.cache_store is None:
+            self.cache_store = {self.inid: result}
+        else:
+            self.cache_store[self.inid] = result
+
+        return result
 
     def get_indicator_score(self):
         """
@@ -418,4 +431,28 @@ def get_progress_status(value, thresholds, target_achieved=False):
         elif value < z:
             return "deterioration"
 
-    return "not_available"
\ No newline at end of file
+    return "not_available"
+
+def get_progress_status_from_score(score, target_achieved=False):
+    """Determine the progress status from the score.
+
+    Args:
+        score: float. Progress score between -5 and 5.
+        target_achieved: bool. If target is achieved, skip comparison with thresholds and return "target_achieved".
+    Returns:
+        str: Progress status label.
+    """
+
+    if target_achieved:
+        return "target_achieved"
+
+    if score is None:
+        return "not_available"
+    elif 2.5 <= score <= 5:
+        return "substantial_progress"
+    elif 0 <= score < 2.5:
+        return "moderate_progress"
+    elif -2.5 <= score < 0:
+        return "limited_progress"
+    elif -5 <= score < -2.5:
+        return "deterioration"
\ No newline at end of file

From a18e7ccdac861267ed1eb81744263ef53cfa7f34 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Wed, 18 Dec 2024 16:35:46 -0500
Subject: [PATCH 25/39] bugfix for scores with reduced thresholds

---
 sdg/ProgressMeasure.py | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 70412a99..29e95f46 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -72,15 +72,13 @@ def get_indicator_progress(self):
             if scores:
                 indicator_score = min(scores)
                 target_achieved = all(targets) # True only when targets for all series are achieved
-                if target_achieved is True:
-                    indicator_score = 5
                 indicator_status = get_progress_status_from_score(indicator_score, target_achieved)
 
         else:
             # Use any progress status available in the metadata as a manual override
             if 'progress_status' in self.meta.keys():
                 indicator_status = self.meta['progress_status']
-                # score is None
+                # indicator_score is None
 
         # Result to return is tuple of indicator score and progress status
         result = (indicator_score, indicator_status)
@@ -276,18 +274,19 @@ def get_score(self):
         high = self.progress_thresholds['high']
         med = self.progress_thresholds['med']
         low = self.progress_thresholds['low']
+        # Note: progress_thresholds are already reduced by the reduction coefficient
 
         if self.method == 1:
             # Normalize progress values based on progress thresholds
             coeff = self.progress_thresholds.get('coefficient', 1) # coeff value defaults to 1 if not available
             reduced_progress = self.progress_value/coeff
-            if reduced_progress >= high:
+            if self.progress_value >= high:
                 return min(500*reduced_progress-5, 5)
-            if reduced_progress >= med:
+            if self.progress_value >= med:
                 return 250*reduced_progress-1.25
-            if reduced_progress >= low:
+            if self.progress_value >= low:
                 return 500*reduced_progress-2.5
-            if reduced_progress < low:
+            if self.progress_value < low:
                 return max(125*reduced_progress-2.5, -5)
         else: # method == 2
             if self.progress_value >= high:

From 1fa8730f0cd71370bf2f2bd691cd67507c8d4c99 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Fri, 28 Feb 2025 12:42:03 -0500
Subject: [PATCH 26/39] median of series scores, no data error handling

---
 sdg/ProgressMeasure.py | 94 ++++++++++++++++++++++++++----------------
 1 file changed, 58 insertions(+), 36 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 29e95f46..42505408 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -1,3 +1,4 @@
+import numpy as np
 from sdg import Loggable
 
 class IndicatorProgress(Loggable):
@@ -70,7 +71,7 @@ def get_indicator_progress(self):
                     targets.append(series.target_achieved)
             # Update the indicator score and progress status
             if scores:
-                indicator_score = min(scores)
+                indicator_score = np.median(scores)
                 target_achieved = all(targets) # True only when targets for all series are achieved
                 indicator_status = get_progress_status_from_score(indicator_score, target_achieved)
 
@@ -108,48 +109,69 @@ def get_indicator_status(self):
 class SeriesProgress(IndicatorProgress):
     # inherit the indicator-level attributes and methods
     def __init__(self, indicator, config={}, logging=None):
-
+        # Initialize series attributes
         self.config = config_defaults(config)
+        self.base_year = None
+        self.base_value = None
+        self.current_year = None
+        self.current_value = None
+        self.target_year = None
+        self.target = None
+        self.direction = None
+        self.sign = None
+        self.method = None
+        self.progress_thresholds = {}
+        self.target_achieved = None
+        self.progress_value = None
+        self.status = 'not_available'
+        self.score = None
 
         IndicatorProgress.__init__(self, indicator, logging=logging)
 
         # Filter data and update the config with key values for the progress calculation
         self.data = self.filter_data()
-        self.config = self.update_config()
-
-        self.base_year = self.config.get('base_year')
-        self.base_value = self.config.get('base_value')
-        self.current_year = self.config.get('current_year')
-        self.current_value = self.config.get('current_value')
-        self.target_year = self.config.get('target_year')
-        self.target = self.config.get('target')
-        self.direction = -1 if self.config.get('direction') == 'negative' else 1
-        self.sign = -1 if self.base_value < 0 else 1 # note: base_value = 0 is invalid, would get zero division error in growth calculation
-        
-        self.method = 1 if self.target is None else 2 # method is 1 for qualitative or 2 for quantitative
-        self.progress_thresholds = self.get_progress_thresholds() # may not want to allow user to configure progress thresholds
-        
-        self.target_achieved = self.is_target_achieved()
-        self.progress_value = self.calculate_progress_value()
-        self.status = get_progress_status(self.progress_value, self.progress_thresholds, self.target_achieved)
-        self.score = self.get_score()
+        if self.data is None:
+            self.warn(f'{self.inid}: No data found for progress calculation: {self.config}')
+        else:
+            self.config = self.update_config()
+
+            self.base_year = self.config.get('base_year')
+            self.base_value = self.config.get('base_value')
+            self.current_year = self.config.get('current_year')
+            self.current_value = self.config.get('current_value')
+            self.target_year = self.config.get('target_year')
+            self.target = self.config.get('target')
+            self.direction = -1 if self.config.get('direction') == 'negative' else 1
+            self.sign = -1 if self.base_value < 0 else 1 # note: base_value = 0 is invalid, would get zero division error in growth calculation
+            
+            self.method = 1 if self.target is None else 2 # method is 1 for qualitative or 2 for quantitative
+            self.progress_thresholds = self.get_progress_thresholds() # may not want to allow user to configure progress thresholds
+            
+            self.target_achieved = self.is_target_achieved()
+            self.progress_value = self.calculate_progress_value()
+            self.status = get_progress_status(self.progress_value, self.progress_thresholds, self.target_achieved)
+            self.score = self.get_score()
 
     def update_config(self):
-        # get years that exist in the data
-        years = self.data["Year"]
-    
-        # set current year to be the most recent year that exists in data
-        self.config['current_year'] = years.max()
-        self.config['current_value'] = self.data.Value[self.data.Year == self.config['current_year']].item() # GET ERROR HERE IF DISAGGREGATION SELECTION NOT SUFFICIENTLY REDUCED
-    
-        # check if the base year input exists in the data
-        if self.config['base_year'] not in years.values:
-            # if the base year is not in the available data, assign it to be the next available year
-            self.config['base_year'] = years[years > self.config['base_year']].min()
-        # Set the base value
-        self.config['base_value'] = self.data.Value[self.data.Year == self.config['base_year']].item()
-
-        return self.config
+        # do nothing if there is no data
+        if self.data is None:
+            return self.config
+        else:
+            # get years that exist in the data
+            years = self.data["Year"]
+        
+            # set current year to be the most recent year that exists in data
+            self.config['current_year'] = years.max()
+            self.config['current_value'] = self.data.Value[self.data.Year == self.config['current_year']].item() # GET ERROR HERE IF DISAGGREGATION SELECTION NOT SUFFICIENTLY REDUCED
+        
+            # check if the base year input exists in the data
+            if self.config['base_year'] not in years.values:
+                # if the base year is not in the available data, assign it to be the next available year
+                self.config['base_year'] = years[years > self.config['base_year']].min()
+            # Set the base value
+            self.config['base_value'] = self.data.Value[self.data.Year == self.config['base_year']].item()
+
+            return self.config
     
     def filter_data(self):
         data = self.data
@@ -206,7 +228,7 @@ def calculate_progress_value(self):
         """
         # Run checks on config settings before calculating progress.
         if self.data is None:
-            self.warn(f'{self.inid}: No data found for progress calculation')
+            self.warn(f'{self.inid}: No data found for progress calculation: {self.config}')
             return None
         if not all_rows_unique(self.data):
             self.warn(f'{self.inid}: Duplicate rows detected in data selected for progress calculation: {self.config}')

From 3b90b808c36f44a0229d5a940aa79e2bd6ecaf78 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Fri, 28 Feb 2025 12:43:04 -0500
Subject: [PATCH 27/39] helpful debug message

---
 sdg/outputs/OutputOpenSdg.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sdg/outputs/OutputOpenSdg.py b/sdg/outputs/OutputOpenSdg.py
index 5eeeed34..b55b0590 100644
--- a/sdg/outputs/OutputOpenSdg.py
+++ b/sdg/outputs/OutputOpenSdg.py
@@ -67,6 +67,7 @@ def build(self, language=None):
         )
 
         for indicator_id in self.get_indicator_ids():
+            self.debug(f'Building {indicator_id}')
             indicator = self.get_indicator_by_id(indicator_id).language(language)
             # Use the methodology to calculate a progress status.
             progress_status = IndicatorProgress(

From d38ecef77d69271c48a00348e8c954499117ff59 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Thu, 6 Mar 2025 15:29:45 -0500
Subject: [PATCH 28/39] ignore progress column when grouping series

---
 sdg/Indicator.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sdg/Indicator.py b/sdg/Indicator.py
index 2ea0cad3..b43270ad 100644
--- a/sdg/Indicator.py
+++ b/sdg/Indicator.py
@@ -442,6 +442,8 @@ def get_all_series(self, use_cache=True, language=None):
         for col in observation_attributes:
             if col in self.data.columns:
                 aggregating_columns.append(col)
+        if self.options.progress_column in self.data.columns:
+            aggregating_columns.append(self.options.progress_column)
 
         grouping_columns = [column for column in self.data.columns if column not in aggregating_columns]
 

From 7e78437c1f0cc78df63d833cf173c350617ae0af Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Thu, 6 Mar 2025 15:43:14 -0500
Subject: [PATCH 29/39] improved error handling, messages, warnings

---
 sdg/ProgressMeasure.py | 95 ++++++++++++++++++++++++++++++------------
 1 file changed, 69 insertions(+), 26 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 42505408..13bede33 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -15,7 +15,6 @@ def __init__(self, indicator, logging=None, cache_store=None):
         # self.auto_progress_calculation = self.meta.get('auto_progress_calculation') is True
         # self.progress_calculation_options = self.get_progress_calculation_options()
 
-        self.cols = self.data.columns
         self.series_column = self.indicator.options.series_column
         self.unit_column = self.indicator.options.unit_column
         self.progress_column = self.indicator.options.progress_column
@@ -109,8 +108,12 @@ def get_indicator_status(self):
 class SeriesProgress(IndicatorProgress):
     # inherit the indicator-level attributes and methods
     def __init__(self, indicator, config={}, logging=None):
+
+        IndicatorProgress.__init__(self, indicator, logging=logging)
+        
         # Initialize series attributes
         self.config = config_defaults(config)
+        self.tag = self.get_series_tag()
         self.base_year = None
         self.base_value = None
         self.current_year = None
@@ -126,12 +129,10 @@ def __init__(self, indicator, config={}, logging=None):
         self.status = 'not_available'
         self.score = None
 
-        IndicatorProgress.__init__(self, indicator, logging=logging)
-
         # Filter data and update the config with key values for the progress calculation
         self.data = self.filter_data()
         if self.data is None:
-            self.warn(f'{self.inid}: No data found for progress calculation: {self.config}')
+            self.warn(f'{self.inid}: No data found for progress calculation of series: {self.tag}')
         else:
             self.config = self.update_config()
 
@@ -152,6 +153,17 @@ def __init__(self, indicator, config={}, logging=None):
             self.status = get_progress_status(self.progress_value, self.progress_thresholds, self.target_achieved)
             self.score = self.get_score()
 
+    def get_series_tag(self):
+        tag = {}
+        if 'series' in self.config:
+            tag[self.series_column] = self.config['series']
+        if 'unit' in self.config:
+            tag[self.unit_column] = self.config['unit']
+        if 'disaggregation' in self.config:
+            for disagg in self.config['disaggregation']:
+                tag[disagg['field']] = disagg['value']
+        return tag
+        
     def update_config(self):
         # do nothing if there is no data
         if self.data is None:
@@ -173,6 +185,16 @@ def update_config(self):
 
             return self.config
     
+    def filter_column(self, data, column, field):
+        if column in data.columns:
+            if any(data[column] == field):
+                data = data.loc[data[column] == field]
+            else:
+                self.warn(f'{self.inid} - Field {field} not found in column {column} for progress calculation of series: {self.tag}')
+        else:
+            self.warn(f'{self.inid} - Column {column} not found in data for progress calculation of series: {self.tag}')
+        return data
+    
     def filter_data(self):
         data = self.data
         # check if the year value contains more than 4 digits (indicating a range of years)
@@ -180,39 +202,60 @@ def filter_data(self):
             # take the first year in the range
             data['Year'] = data['Year'].astype(str).str.slice(0, 4).astype(int)
 
-        if len(self.cols) > 2:
-            # Data has disaggregation columns. Find the appropriate subset of data for progress calculation
+        if len(data.columns) > 2:
+            # Data has auxiliary and/or disaggregation columns. Find the appropriate subset of data for progress calculation
+            
+            # Remove auxiliary information columns (observation attributes and GeoCode), if present
+            aux_columns = [col for col in self.indicator.options.get_observation_attributes() if col in data.columns]
+            if 'GeoCode' in data.columns:
+                aux_columns.append('GeoCode')
+            data = data.drop(columns=aux_columns)
+
+            # If progress column is present, replace values with those from the progress column and drop progress column
+            if self.progress_column in data.columns:
+                data = data.assign(Value=data[self.progress_column])
+                data = data.drop(columns=self.progress_column)                
+            
             # If units and/or series columns exist, keep only the user selected unit/series
-            if (self.unit_column in self.cols) and ('unit' in self.config.keys()):
-                data = data.loc[data[self.unit_column] == self.config['unit']]
-            if (self.series_column in self.cols) and ('series' in self.config.keys()):
-                data = data.loc[data[self.series_column] == self.config['series']]
+            if self.config.get('unit') is not None:
+                data = self.filter_column(data, self.unit_column, self.config['unit'])
+            if self.config.get('series') is not None:
+                data = self.filter_column(data, self.series_column, self.config['series'])
             # If disaggregation specified by user, reduce the dataframe to only include the selected disaggregation
             disaggregations = self.config.get('disaggregation')
             if disaggregations:
                 for disagg in disaggregations:
-                    data = data.loc[data[disagg['field']] == disagg['value']]
+                    data = self.filter_column(data, disagg['field'], disagg['value'])
             # Otherwise, find headline data (rows where values in all disaggregation dimensions are NA)
             else:
-                data = data[data.loc[:, ~self.cols.isin(self.non_disaggregation_columns)].isna().all('columns')]
+                headline = data[data.loc[:, ~data.columns.isin(self.non_disaggregation_columns)].isna().all('columns')]
+                if (len(headline) == 0) and (len(headline) < len(data)):
+                    raise Exception(f'{self.inid} - No headline found for progress calculation of series: {self.tag}')
+                data = headline
+            
+            # Check if data was sufficiently reduced to a single series/unit/disaggregation
+            grouping_columns = [col for col in data.columns if col not in ['Year', 'Value']]
+            for col in grouping_columns:
+                unique_groups = data[col].unique()
+                if len(unique_groups) > 1:
+                    raise Exception(f'{self.inid} - Detected many sub-series ({col}: {unique_groups}) at filter output for progress calculation of series: {self.tag}.')
 
-            if self.progress_column in self.cols:
-                # Replace values with those from the progress column, then drop progress column
-                data = data.assign(Value=data[self.progress_column])
-                # data['Value'] = data[self.progress_column]
-                # data.drop(self.progress_column, axis=1, inplace=True)
             # Keep only Year and Value columns
             data = data[['Year', 'Value']]
 
-            # To do: 
-            # What if no unit/series is selected by user but series/units column(s) exist? --> Warn user and return not_available progress status
-            # Fix: Warn user when data not sufficiently reduced by settings. There can be multiple values for the same year, so return not_available progress status
-
         # remove any NA values from data
         data = data[data["Value"].notna()]
         # cast values to float
         data["Value"] = data["Value"].astype('float')
 
+        # Raise exception if there are duplicate years in data.
+        duped_years = data.loc[data['Year'].duplicated(False)]
+        if duped_years.empty is False:
+            error_messages = []
+            for year, value in duped_years.values:
+                error_messages.append(f'{self.inid} - Duplicate value for year {int(year)}: {value} for progress calculation of series: {self.tag}')
+            raise Exception('\n'.join(error_messages))
+
         # returns None if no rows in data
         if data.shape[0] < 1:
             return None
@@ -228,20 +271,20 @@ def calculate_progress_value(self):
         """
         # Run checks on config settings before calculating progress.
         if self.data is None:
-            self.warn(f'{self.inid}: No data found for progress calculation: {self.config}')
+            self.warn(f'{self.inid}: No data found for progress calculation of series: {self.tag}')
             return None
         if not all_rows_unique(self.data):
-            self.warn(f'{self.inid}: Duplicate rows detected in data selected for progress calculation: {self.config}')
+            self.warn(f'{self.inid}: Duplicate rows detected in data selected for progress calculation of series: {self.tag}')
             return None            
         if self.base_value == 0:
-            self.warn(f'{self.inid}: Base value is zero (invalid)')
+            self.warn(f'{self.inid}: Base value is zero (invalid) for series: {self.tag}')
             return None
         # return None if the base year input is in the future of the most recently available data
         if self.base_year > self.current_year:
-            self.warn(f'{self.inid}: Base year is greater than the most recent available data: {self.config}')
+            self.warn(f'{self.inid}: Base year ({self.base_year}) is greater than the most recent available data ({self.current_year}) for series: {self.tag}')
             return None
         if self.current_year - self.base_year < 1:
-            self.warn(f'{self.inid}: Not enough data to calculate progress (must have at least 2 data points): {self.config}')
+            self.warn(f'{self.inid}: Not enough data to calculate progress (must have at least 2 data points) of series: {self.tag}')
             return None
     
         if self.method == 1:

From 17f7d557a6edcc01057054c1425fa0b5ccd03932 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Thu, 6 Mar 2025 16:38:39 -0500
Subject: [PATCH 30/39] better dropping of irrelevant columns

---
 sdg/ProgressMeasure.py | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 13bede33..d5dca2d3 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -205,11 +205,12 @@ def filter_data(self):
         if len(data.columns) > 2:
             # Data has auxiliary and/or disaggregation columns. Find the appropriate subset of data for progress calculation
             
-            # Remove auxiliary information columns (observation attributes and GeoCode), if present
-            aux_columns = [col for col in self.indicator.options.get_observation_attributes() if col in data.columns]
-            if 'GeoCode' in data.columns:
-                aux_columns.append('GeoCode')
-            data = data.drop(columns=aux_columns)
+            # Drop any columns not relevant to filtering or progress calculation, e.g. non-disaggregation columns, observation attribute columns
+            drop_columns = self.non_disaggregation_columns + self.indicator.options.get_observation_attributes()
+            # Remove required non-disaggregation columns (Year, Value, Series, Units, Progress) from drop list
+            drop_columns = [col for col in drop_columns if col not in ['Year', self.series_column, self.unit_column, self.progress_column, 'Value']]
+            # Drop any irrelevant columns present in data
+            data = data.drop(columns=drop_columns, errors='ignore')
 
             # If progress column is present, replace values with those from the progress column and drop progress column
             if self.progress_column in data.columns:

From 5b7a1eaf76265b3a4468de5f63bd25dbc6711fc1 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Fri, 7 Mar 2025 10:49:43 -0500
Subject: [PATCH 31/39] none meta bugfix, more comments, some simplifications

---
 sdg/ProgressMeasure.py | 88 ++++++++++++++++++++++++------------------
 1 file changed, 50 insertions(+), 38 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index d5dca2d3..44327a91 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -2,6 +2,7 @@
 from sdg import Loggable
 
 class IndicatorProgress(Loggable):
+    """Indicator-level progress class"""
     def __init__(self, indicator, logging=None, cache_store=None):
 
         Loggable.__init__(self, logging=logging)
@@ -54,31 +55,32 @@ def get_indicator_progress(self):
         indicator_status = 'not_available'
 
         # Check if progress calculation is turned on
-        if self.meta.get('auto_progress_calculation') is True:
-            # First try to use caching.
-            if self.cache_store is not None and self.inid in self.cache_store:
-                # self.debug(f'{self.inid} progress from cache')
-                return self.cache_store[self.inid]
-            # Get the progress measure score and status for each series/unit/disaggregation specified in the progress calculation options.
-            scores = []
-            targets = []
-            for config in self.get_progress_calculation_options():
-                series = SeriesProgress(self.indicator, config, logging=self.logging)
-                score = series.score
-                if score is not None:
-                    scores.append(score)
-                    targets.append(series.target_achieved)
-            # Update the indicator score and progress status
-            if scores:
-                indicator_score = np.median(scores)
-                target_achieved = all(targets) # True only when targets for all series are achieved
-                indicator_status = get_progress_status_from_score(indicator_score, target_achieved)
-
-        else:
-            # Use any progress status available in the metadata as a manual override
-            if 'progress_status' in self.meta.keys():
-                indicator_status = self.meta['progress_status']
-                # indicator_score is None
+        if self.meta is not None:
+            if self.meta.get('auto_progress_calculation') is True:
+                # First try to use caching.
+                if self.cache_store is not None and self.inid in self.cache_store:
+                    # self.debug(f'{self.inid} progress from cache')
+                    return self.cache_store[self.inid]
+                # Get the progress measure score and status for each series/unit/disaggregation specified in the progress calculation options.
+                scores = []
+                targets = []
+                for config in self.get_progress_calculation_options():
+                    series = SeriesProgress(self.indicator, config, logging=self.logging)
+                    score = series.score
+                    if score is not None:
+                        scores.append(score)
+                        targets.append(series.target_achieved)
+                # Update the indicator score and progress status
+                if scores:
+                    indicator_score = np.median(scores)
+                    target_achieved = all(targets) # True only when targets for all series are achieved
+                    indicator_status = get_progress_status_from_score(indicator_score, target_achieved)
+    
+            else:
+                # Use any progress status available in the metadata as a manual override
+                if 'progress_status' in self.meta.keys():
+                    indicator_status = self.meta['progress_status']
+                    # indicator_score is None
 
         # Result to return is tuple of indicator score and progress status
         result = (indicator_score, indicator_status)
@@ -106,9 +108,11 @@ def get_indicator_status(self):
 
 
 class SeriesProgress(IndicatorProgress):
-    # inherit the indicator-level attributes and methods
+    """Series-level progress class.
+    A series refers to a single time series in the indicator data."""
     def __init__(self, indicator, config={}, logging=None):
 
+        # inherit the indicator-level attributes and methods
         IndicatorProgress.__init__(self, indicator, logging=logging)
         
         # Initialize series attributes
@@ -118,11 +122,11 @@ def __init__(self, indicator, config={}, logging=None):
         self.base_value = None
         self.current_year = None
         self.current_value = None
-        self.target_year = None
-        self.target = None
-        self.direction = None
+        self.target_year = self.config.get('target_year')
+        self.target = self.config.get('target')
+        self.direction = -1 if self.config.get('direction') == 'negative' else 1
         self.sign = None
-        self.method = None
+        self.method = 1 if self.target is None else 2 # method is 1 for qualitative or 2 for quantitative
         self.progress_thresholds = {}
         self.target_achieved = None
         self.progress_value = None
@@ -140,12 +144,7 @@ def __init__(self, indicator, config={}, logging=None):
             self.base_value = self.config.get('base_value')
             self.current_year = self.config.get('current_year')
             self.current_value = self.config.get('current_value')
-            self.target_year = self.config.get('target_year')
-            self.target = self.config.get('target')
-            self.direction = -1 if self.config.get('direction') == 'negative' else 1
             self.sign = -1 if self.base_value < 0 else 1 # note: base_value = 0 is invalid, would get zero division error in growth calculation
-            
-            self.method = 1 if self.target is None else 2 # method is 1 for qualitative or 2 for quantitative
             self.progress_thresholds = self.get_progress_thresholds() # may not want to allow user to configure progress thresholds
             
             self.target_achieved = self.is_target_achieved()
@@ -154,6 +153,8 @@ def __init__(self, indicator, config={}, logging=None):
             self.score = self.get_score()
 
     def get_series_tag(self):
+        """Return a dict that identifies the desired series on which progress is intended to be calculated.
+        """
         tag = {}
         if 'series' in self.config:
             tag[self.series_column] = self.config['series']
@@ -165,6 +166,8 @@ def get_series_tag(self):
         return tag
         
     def update_config(self):
+        """Lookup and update config values for current_year, current_value, base_year, and base_value based on series data.
+        """
         # do nothing if there is no data
         if self.data is None:
             return self.config
@@ -186,6 +189,8 @@ def update_config(self):
             return self.config
     
     def filter_column(self, data, column, field):
+        """Filter the input dataframe, keeping only rows where the value in 'column' is equal to 'field'.
+        """
         if column in data.columns:
             if any(data[column] == field):
                 data = data.loc[data[column] == field]
@@ -196,6 +201,9 @@ def filter_column(self, data, column, field):
         return data
     
     def filter_data(self):
+        """Prepare indicator data and filter it, keeping only the relevant data for calculating the progress of the desired series/unit/disaggregation. 
+        Return the filtered dataframe.      
+        """
         data = self.data
         # check if the year value contains more than 4 digits (indicating a range of years)
         if (data['Year'].astype(str).str.len() > 4).any():
@@ -324,13 +332,17 @@ def methodology_2(self):
         return self.sign * self.direction * cagr_o / abs(cagr_r)
             
     def is_target_achieved(self):
+        """Returns True if the current value achieves the target, False otherwise.
+        """
         if self.target is not None:
             if (self.direction == -1 and self.current_value <= self.target) or (self.direction == 1 and self.current_value >= self.target):
                 return True
         return False
         
     def get_score(self):
-
+        """Returns the progress score [-5, 5] that corresponds to the calculated progress value for the series.
+        If target is achieved, return 5 regardless of calculated progress value.
+        """
         if self.progress_value is None:
             return None
         
@@ -342,7 +354,7 @@ def get_score(self):
         low = self.progress_thresholds['low']
         # Note: progress_thresholds are already reduced by the reduction coefficient
 
-        if self.method == 1:
+        if self.method == 1: # qualitative target
             # Normalize progress values based on progress thresholds
             coeff = self.progress_thresholds.get('coefficient', 1) # coeff value defaults to 1 if not available
             reduced_progress = self.progress_value/coeff
@@ -354,7 +366,7 @@ def get_score(self):
                 return 500*reduced_progress-2.5
             if self.progress_value < low:
                 return max(125*reduced_progress-2.5, -5)
-        else: # method == 2
+        else: # method == 2, quantitative target
             if self.progress_value >= high:
                 return min((7.1429 * self.progress_value) - 4.2857, 5)
             if self.progress_value >= med:

From 41c68ce4cea7196f07d280d037f9f8a1719e9f8e Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Fri, 7 Mar 2025 15:20:05 -0500
Subject: [PATCH 32/39] handle mixed positive/negative values

---
 sdg/ProgressMeasure.py | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 44327a91..444d969a 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -155,7 +155,7 @@ def __init__(self, indicator, config={}, logging=None):
     def get_series_tag(self):
         """Return a dict that identifies the desired series on which progress is intended to be calculated.
         """
-        tag = {}
+        tag = {'indicator': self.inid}
         if 'series' in self.config:
             tag[self.series_column] = self.config['series']
         if 'unit' in self.config:
@@ -177,7 +177,7 @@ def update_config(self):
         
             # set current year to be the most recent year that exists in data
             self.config['current_year'] = years.max()
-            self.config['current_value'] = self.data.Value[self.data.Year == self.config['current_year']].item() # GET ERROR HERE IF DISAGGREGATION SELECTION NOT SUFFICIENTLY REDUCED
+            self.config['current_value'] = self.data.Value[self.data.Year == self.config['current_year']].item()
         
             # check if the base year input exists in the data
             if self.config['base_year'] not in years.values:
@@ -280,20 +280,23 @@ def calculate_progress_value(self):
         """
         # Run checks on config settings before calculating progress.
         if self.data is None:
-            self.warn(f'{self.inid}: No data found for progress calculation of series: {self.tag}')
+            self.warn(f'{self.inid} - No data found for progress calculation of series: {self.tag}')
             return None
         if not all_rows_unique(self.data):
-            self.warn(f'{self.inid}: Duplicate rows detected in data selected for progress calculation of series: {self.tag}')
-            return None            
+            self.warn(f'{self.inid} - Duplicate rows detected in data selected for progress calculation of series: {self.tag}')
+            return None
         if self.base_value == 0:
-            self.warn(f'{self.inid}: Base value is zero (invalid) for series: {self.tag}')
+            self.warn(f'{self.inid} - Base value is zero (invalid) for series: {self.tag}')
+            return None
+        if (self.base_value > 0 and self.current_value < 0) or (self.base_value < 0 and self.current_value > 0):
+            self.warn(f'{self.inid} - Base value ({self.base_value}) and current value ({self.current_value}) must both be positive or both negative for progress calculation of series: {self.tag}. Consider converting data values to an all positive or all negative basis in a progress column (see documentation).')
             return None
         # return None if the base year input is in the future of the most recently available data
         if self.base_year > self.current_year:
-            self.warn(f'{self.inid}: Base year ({self.base_year}) is greater than the most recent available data ({self.current_year}) for series: {self.tag}')
+            self.warn(f'{self.inid} - Base year ({self.base_year}) is greater than the most recent available data ({self.current_year}) for series: {self.tag}')
             return None
         if self.current_year - self.base_year < 1:
-            self.warn(f'{self.inid}: Not enough data to calculate progress (must have at least 2 data points) of series: {self.tag}')
+            self.warn(f'{self.inid} - Not enough data to calculate progress (must have at least 2 data points) of series: {self.tag}')
             return None
     
         if self.method == 1:

From a9bb3e29d2ce58eabee1a2fdb7967aa350541fcb Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Mon, 10 Mar 2025 10:20:50 -0400
Subject: [PATCH 33/39] handling and warnings for limit issues

---
 sdg/ProgressMeasure.py | 22 ++++++++++++++--------
 1 file changed, 14 insertions(+), 8 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 444d969a..58e9b2d6 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -284,7 +284,7 @@ def calculate_progress_value(self):
             return None
         if not all_rows_unique(self.data):
             self.warn(f'{self.inid} - Duplicate rows detected in data selected for progress calculation of series: {self.tag}')
-            return None
+            return None          
         if self.base_value == 0:
             self.warn(f'{self.inid} - Base value is zero (invalid) for series: {self.tag}')
             return None
@@ -357,18 +357,20 @@ def get_score(self):
         low = self.progress_thresholds['low']
         # Note: progress_thresholds are already reduced by the reduction coefficient
 
+        # Score functions hardcoded based on default progress thresholds!
         if self.method == 1: # qualitative target
-            # Normalize progress values based on progress thresholds
             coeff = self.progress_thresholds.get('coefficient', 1) # coeff value defaults to 1 if not available
-            reduced_progress = self.progress_value/coeff
+            if self.progress_value < low:
+                return max(125*self.progress_value-2.5, -5)
+            if coeff == 0: # base value is equal to limit and progress value is >= 0, so limit is maintained or exceeded --> substantial progress
+                return 5
+            # When making progress in the desired direction, normalize progress value to same basis as reduced threshold
             if self.progress_value >= high:
-                return min(500*reduced_progress-5, 5)
+                return min(500*self.progress_value/coeff-5, 5)
             if self.progress_value >= med:
-                return 250*reduced_progress-1.25
+                return 250*self.progress_value/coeff-1.25
             if self.progress_value >= low:
-                return 500*reduced_progress-2.5
-            if self.progress_value < low:
-                return max(125*reduced_progress-2.5, -5)
+                return 500*self.progress_value/coeff-2.5
         else: # method == 2, quantitative target
             if self.progress_value >= high:
                 return min((7.1429 * self.progress_value) - 4.2857, 5)
@@ -396,6 +398,10 @@ def get_progress_thresholds(self):
             # Reduce thresholds when near limit
             limit = self.config.get('limit')
             if limit is not None:
+                if (self.base_value < limit) and (self.direction == -1):
+                    self.warn(f'{self.inid} - Base value ({self.base_value}) is below minimum limit ({limit}). Progress calculation may yield unexpected results for series: {self.tag}')
+                if (self.base_value > limit) and (self.direction == 1):
+                    self.warn(f'{self.inid} - Base value ({self.base_value}) is above maximum limit ({limit}). Progress calculation may yield unexpected results for series: {self.tag}')
                 base_value = abs(self.base_value)
                 limit = abs(limit)
                 a = 4.44

From f7de86292c317e9d0a74b82985997ab593c245d4 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Mon, 10 Mar 2025 10:50:46 -0400
Subject: [PATCH 34/39] ignored limit warning

---
 sdg/ProgressMeasure.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 58e9b2d6..5d640f7f 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -388,6 +388,7 @@ def get_progress_thresholds(self):
         """      
         # Get the user configured progress thresholds from the metadata.
         user_thresholds = self.config.get('progress_thresholds')
+        limit = self.config.get('limit')
 
         # Begin with the default progress thresholds for each method and update these with user configured thresholds, if present.
         if self.method == 1:
@@ -396,7 +397,6 @@ def get_progress_thresholds(self):
             progress_thresholds.update(user_thresholds)
 
             # Reduce thresholds when near limit
-            limit = self.config.get('limit')
             if limit is not None:
                 if (self.base_value < limit) and (self.direction == -1):
                     self.warn(f'{self.inid} - Base value ({self.base_value}) is below minimum limit ({limit}). Progress calculation may yield unexpected results for series: {self.tag}')
@@ -421,6 +421,9 @@ def get_progress_thresholds(self):
             progress_thresholds = {'high': 0.95, 'med': 0.6, 'low': 0}
             progress_thresholds.update(user_thresholds)
 
+            if limit is not None:
+                self.warn(f'{self.inid} - Ignoring limit ({limit}) as target ({self.target}) already provided for progress calculation of series: {self.tag}')
+
         return progress_thresholds
 
 

From 907f46cb3b3f66f6c1b994b016fa47dc6334e7b0 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Mon, 10 Mar 2025 15:35:53 -0400
Subject: [PATCH 35/39] warning when target=0, replace base_value=0 with 0.001

---
 sdg/ProgressMeasure.py | 50 +++++++++++++++++++++---------------------
 1 file changed, 25 insertions(+), 25 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 5d640f7f..ead1b799 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -32,7 +32,7 @@ def get_progress_calculation_options(self):
             # progress_calc_opts is a list of dictionaries
             # each dictionary corresponds to the options for one series/unit/disaggregation
             if progress_calc_opts:
-                return [config_defaults(config) for config in progress_calc_opts]
+                return [config for config in progress_calc_opts]
             else:
                 return [default_progress_calc_options()]
 
@@ -116,8 +116,10 @@ def __init__(self, indicator, config={}, logging=None):
         IndicatorProgress.__init__(self, indicator, logging=logging)
         
         # Initialize series attributes
-        self.config = config_defaults(config)
+        self.config = config
         self.tag = self.get_series_tag()
+        
+        self.config = self.config_defaults() # apply default config settings
         self.base_year = None
         self.base_value = None
         self.current_year = None
@@ -284,10 +286,10 @@ def calculate_progress_value(self):
             return None
         if not all_rows_unique(self.data):
             self.warn(f'{self.inid} - Duplicate rows detected in data selected for progress calculation of series: {self.tag}')
-            return None          
-        if self.base_value == 0:
-            self.warn(f'{self.inid} - Base value is zero (invalid) for series: {self.tag}')
             return None
+        if self.base_value == 0:
+            self.warn(f'{self.inid} - Base value is zero (invalid) for progress calculation of series: {self.tag}. Calculating progress with base value = 0.001 instead.')
+            self.base_value = 0.001
         if (self.base_value > 0 and self.current_value < 0) or (self.base_value < 0 and self.current_value > 0):
             self.warn(f'{self.inid} - Base value ({self.base_value}) and current value ({self.current_value}) must both be positive or both negative for progress calculation of series: {self.tag}. Consider converting data values to an all positive or all negative basis in a progress column (see documentation).')
             return None
@@ -405,12 +407,12 @@ def get_progress_thresholds(self):
                 base_value = abs(self.base_value)
                 limit = abs(limit)
                 a = 4.44
-                if base_value <= limit:
+                if base_value >= 2*limit: # check this condition first because want coeff = 1 if base_value and limit are both zero
+                    coeff = 1
+                elif base_value <= limit:
                     coeff = 1 - (base_value/limit)**a
-                elif base_value <= 2*limit:
-                    coeff = 1 - ((2*limit - base_value)/limit)**a
                 else:
-                    coeff = 1
+                    coeff = 1 - ((2*limit - base_value)/limit)**a
             
                 for key in ['high', 'med', 'low']:
                     progress_thresholds[key] *= coeff
@@ -426,25 +428,23 @@ def get_progress_thresholds(self):
 
         return progress_thresholds
 
+    def config_defaults(self):
+        """Set progress calculation defaults and update them if any user inputs exist.
+        Returns:
+            dict: Dictionary of updated configurations.
+        """
+        # set default options for progress measurement
+        defaults = default_progress_calc_options()
+        # update the defaults with any user configured inputs
+        defaults.update(self.config)
 
-def config_defaults(config={}):
-    """Set progress calculation defaults and update them if any user inputs exist.
-    Args:
-        config: dict. Indicator configurations passed as a dictionary.
-    Returns:
-        dict: Dictionary of updated configurations.
-    """
-
-    # set default options for progress measurement
-    defaults = default_progress_calc_options()
-    # update the defaults with any user configured inputs
-    defaults.update(config)
+        # if target is 0, set to 0.001 (avoids dividing by 0 in calculation)
+        if defaults['target'] == 0:
+            self.warn(f'{self.inid} - Target is zero (invalid) for progress calculation of series: {self.tag}. Calculating progress with target = 0.001 instead.')
+            defaults['target'] = 0.001
 
-    # if target is 0, set to 0.001 (avoids dividing by 0 in calculation)
-    if defaults['target'] == 0:
-        defaults['target'] = 0.001
+        return defaults
 
-    return defaults
 
 def default_progress_calc_options():
     """Provide default inputs for calculating progress."""

From 7cd8cdf367c2133ba7d741c7060fd7f94fb5b9ab Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Mon, 10 Mar 2025 16:38:44 -0400
Subject: [PATCH 36/39] check if target is achieved first when calculating
 series score

---
 sdg/ProgressMeasure.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index ead1b799..3359d578 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -155,7 +155,7 @@ def __init__(self, indicator, config={}, logging=None):
             self.score = self.get_score()
 
     def get_series_tag(self):
-        """Return a dict that identifies the desired series on which progress is intended to be calculated.
+        """Return a dict that identifies the series for which progress is intended to be calculated.
         """
         tag = {'indicator': self.inid}
         if 'series' in self.config:
@@ -348,11 +348,11 @@ def get_score(self):
         """Returns the progress score [-5, 5] that corresponds to the calculated progress value for the series.
         If target is achieved, return 5 regardless of calculated progress value.
         """
-        if self.progress_value is None:
-            return None
-        
         if self.target_achieved:
             return 5
+
+        if self.progress_value is None:
+            return None
         
         high = self.progress_thresholds['high']
         med = self.progress_thresholds['med']

From 6dc7eb4771ff4b9ae6a27aff1c9261b4e49889a9 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Tue, 11 Mar 2025 11:13:10 -0400
Subject: [PATCH 37/39] simplify SeriesProgress attribute initialization

---
 sdg/ProgressMeasure.py | 154 +++++++++++++++--------------------------
 1 file changed, 57 insertions(+), 97 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 3359d578..847016ba 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -25,16 +25,16 @@ def get_progress_calculation_options(self):
         """
         Get progress calculation options from the indicator metadata.
         If progress calculation options are not specified in the metadata, 
-        return the default progress calculation options instead.
+        return list with empty dictionary.
         """
         if self.meta is not None:
             progress_calc_opts = self.meta.get('progress_calculation_options')
             # progress_calc_opts is a list of dictionaries
             # each dictionary corresponds to the options for one series/unit/disaggregation
             if progress_calc_opts:
-                return [config for config in progress_calc_opts]
+                return progress_calc_opts
             else:
-                return [default_progress_calc_options()]
+                return [{}]
 
     def get_indicator_progress(self):
         """
@@ -116,39 +116,53 @@ def __init__(self, indicator, config={}, logging=None):
         IndicatorProgress.__init__(self, indicator, logging=logging)
         
         # Initialize series attributes
-        self.config = config
+        self.series = config.get('series')
+        self.unit = config.get('unit')
+        self.disaggregation = config.get('disaggregation')
         self.tag = self.get_series_tag()
-        
-        self.config = self.config_defaults() # apply default config settings
-        self.base_year = None
+        # attributes from config
+        self.base_year = config.get('base_year', 2015) # defaults to 2015
+        self.target = config.get('target') # defaults to None
+        if self.target == 0:
+            self.warn(f'{self.inid} - Target is zero (invalid) for progress calculation of series: {self.tag}. Calculating progress with target = 0.001 instead.')
+            self.target = 0.001
+        self.target_year = config.get('target_year', 2030) # defaults to 2030
+        self.direction = 1 if config.get('direction') == 'positive' else -1 # defaults to negative (-1)
+        self.limit = config.get('limit') # defaults to None
+        self.method = 1 if self.target is None else 2 # method is 1 for qualitative or 2 for quantitative
+        self.progress_thresholds = config.get('progress_thresholds', {}) # may not want to allow user to configure progress thresholds
+        # other attributes
         self.base_value = None
         self.current_year = None
         self.current_value = None
-        self.target_year = self.config.get('target_year')
-        self.target = self.config.get('target')
-        self.direction = -1 if self.config.get('direction') == 'negative' else 1
         self.sign = None
-        self.method = 1 if self.target is None else 2 # method is 1 for qualitative or 2 for quantitative
-        self.progress_thresholds = {}
-        self.target_achieved = None
-        self.progress_value = None
+        self.target_achieved = False
         self.status = 'not_available'
         self.score = None
 
-        # Filter data and update the config with key values for the progress calculation
+        # Filter data
         self.data = self.filter_data()
+
         if self.data is None:
             self.warn(f'{self.inid}: No data found for progress calculation of series: {self.tag}')
         else:
-            self.config = self.update_config()
+            # Lookup and update values for current_year, current_value, base_year, and base_value based on data
+            years = self.data['Year']
+            # set current year to be the most recent year that exists in data
+            self.current_year = years.max()
+            self.current_value = self.data.Value[self.data.Year == self.current_year].item()
+            # check if the base year input exists in the data
+            if self.base_year not in years.values:
+                # if the base year is not in the available data, assign it to be the next available year
+                self.base_year = years[years > self.base_year].min()
+            # Set the base value
+            self.base_value = self.data.Value[self.data.Year == self.base_year].item()
 
-            self.base_year = self.config.get('base_year')
-            self.base_value = self.config.get('base_value')
-            self.current_year = self.config.get('current_year')
-            self.current_value = self.config.get('current_value')
+            # Update sign and progress_thresholds using updated base_value
             self.sign = -1 if self.base_value < 0 else 1 # note: base_value = 0 is invalid, would get zero division error in growth calculation
-            self.progress_thresholds = self.get_progress_thresholds() # may not want to allow user to configure progress thresholds
+            self.progress_thresholds = self.get_progress_thresholds()
             
+            # Get final results
             self.target_achieved = self.is_target_achieved()
             self.progress_value = self.calculate_progress_value()
             self.status = get_progress_status(self.progress_value, self.progress_thresholds, self.target_achieved)
@@ -158,37 +172,14 @@ def get_series_tag(self):
         """Return a dict that identifies the series for which progress is intended to be calculated.
         """
         tag = {'indicator': self.inid}
-        if 'series' in self.config:
-            tag[self.series_column] = self.config['series']
-        if 'unit' in self.config:
-            tag[self.unit_column] = self.config['unit']
-        if 'disaggregation' in self.config:
-            for disagg in self.config['disaggregation']:
+        if self.series is not None:
+            tag[self.series_column] = self.series
+        if self.unit is not None:
+            tag[self.unit_column] = self.unit
+        if self.disaggregation is not None:
+            for disagg in self.disaggregation:
                 tag[disagg['field']] = disagg['value']
         return tag
-        
-    def update_config(self):
-        """Lookup and update config values for current_year, current_value, base_year, and base_value based on series data.
-        """
-        # do nothing if there is no data
-        if self.data is None:
-            return self.config
-        else:
-            # get years that exist in the data
-            years = self.data["Year"]
-        
-            # set current year to be the most recent year that exists in data
-            self.config['current_year'] = years.max()
-            self.config['current_value'] = self.data.Value[self.data.Year == self.config['current_year']].item()
-        
-            # check if the base year input exists in the data
-            if self.config['base_year'] not in years.values:
-                # if the base year is not in the available data, assign it to be the next available year
-                self.config['base_year'] = years[years > self.config['base_year']].min()
-            # Set the base value
-            self.config['base_value'] = self.data.Value[self.data.Year == self.config['base_year']].item()
-
-            return self.config
     
     def filter_column(self, data, column, field):
         """Filter the input dataframe, keeping only rows where the value in 'column' is equal to 'field'.
@@ -228,14 +219,13 @@ def filter_data(self):
                 data = data.drop(columns=self.progress_column)                
             
             # If units and/or series columns exist, keep only the user selected unit/series
-            if self.config.get('unit') is not None:
-                data = self.filter_column(data, self.unit_column, self.config['unit'])
-            if self.config.get('series') is not None:
-                data = self.filter_column(data, self.series_column, self.config['series'])
+            if self.unit is not None:
+                data = self.filter_column(data, self.unit_column, self.unit)
+            if self.series is not None:
+                data = self.filter_column(data, self.series_column, self.series)
             # If disaggregation specified by user, reduce the dataframe to only include the selected disaggregation
-            disaggregations = self.config.get('disaggregation')
-            if disaggregations:
-                for disagg in disaggregations:
+            if self.disaggregation:
+                for disagg in self.disaggregation:
                     data = self.filter_column(data, disagg['field'], disagg['value'])
             # Otherwise, find headline data (rows where values in all disaggregation dimensions are NA)
             else:
@@ -291,7 +281,7 @@ def calculate_progress_value(self):
             self.warn(f'{self.inid} - Base value is zero (invalid) for progress calculation of series: {self.tag}. Calculating progress with base value = 0.001 instead.')
             self.base_value = 0.001
         if (self.base_value > 0 and self.current_value < 0) or (self.base_value < 0 and self.current_value > 0):
-            self.warn(f'{self.inid} - Base value ({self.base_value}) and current value ({self.current_value}) must both be positive or both negative for progress calculation of series: {self.tag}. Consider converting data values to an all positive or all negative basis in a progress column (see documentation).')
+            self.warn(f'{self.inid} - Base value ({self.base_value}) and current value ({self.current_value}) must both be positive or both negative for progress calculation of series: {self.tag}. Consider transforming data values to a valid form in a progress column (see documentation).')
             return None
         # return None if the base year input is in the future of the most recently available data
         if self.base_year > self.current_year:
@@ -389,8 +379,7 @@ def get_progress_thresholds(self):
             progress_thresholds: dict. Dictionary of progress thresholds: {'high': x, 'med': y, 'low': z}
         """      
         # Get the user configured progress thresholds from the metadata.
-        user_thresholds = self.config.get('progress_thresholds')
-        limit = self.config.get('limit')
+        user_thresholds = self.progress_thresholds
 
         # Begin with the default progress thresholds for each method and update these with user configured thresholds, if present.
         if self.method == 1:
@@ -399,13 +388,13 @@ def get_progress_thresholds(self):
             progress_thresholds.update(user_thresholds)
 
             # Reduce thresholds when near limit
-            if limit is not None:
-                if (self.base_value < limit) and (self.direction == -1):
-                    self.warn(f'{self.inid} - Base value ({self.base_value}) is below minimum limit ({limit}). Progress calculation may yield unexpected results for series: {self.tag}')
-                if (self.base_value > limit) and (self.direction == 1):
-                    self.warn(f'{self.inid} - Base value ({self.base_value}) is above maximum limit ({limit}). Progress calculation may yield unexpected results for series: {self.tag}')
+            if self.limit is not None:
+                if (self.base_value < self.limit) and (self.direction == -1):
+                    self.warn(f'{self.inid} - Base value ({self.base_value}) is below minimum limit ({self.limit}). Progress calculation may yield unexpected results for series: {self.tag}')
+                if (self.base_value > self.limit) and (self.direction == 1):
+                    self.warn(f'{self.inid} - Base value ({self.base_value}) is above maximum limit ({self.limit}). Progress calculation may yield unexpected results for series: {self.tag}')
                 base_value = abs(self.base_value)
-                limit = abs(limit)
+                limit = abs(self.limit)
                 a = 4.44
                 if base_value >= 2*limit: # check this condition first because want coeff = 1 if base_value and limit are both zero
                     coeff = 1
@@ -423,40 +412,11 @@ def get_progress_thresholds(self):
             progress_thresholds = {'high': 0.95, 'med': 0.6, 'low': 0}
             progress_thresholds.update(user_thresholds)
 
-            if limit is not None:
-                self.warn(f'{self.inid} - Ignoring limit ({limit}) as target ({self.target}) already provided for progress calculation of series: {self.tag}')
+            if self.limit is not None:
+                self.warn(f'{self.inid} - Ignoring limit ({self.limit}) as target ({self.target}) already provided for progress calculation of series: {self.tag}')
 
         return progress_thresholds
 
-    def config_defaults(self):
-        """Set progress calculation defaults and update them if any user inputs exist.
-        Returns:
-            dict: Dictionary of updated configurations.
-        """
-        # set default options for progress measurement
-        defaults = default_progress_calc_options()
-        # update the defaults with any user configured inputs
-        defaults.update(self.config)
-
-        # if target is 0, set to 0.001 (avoids dividing by 0 in calculation)
-        if defaults['target'] == 0:
-            self.warn(f'{self.inid} - Target is zero (invalid) for progress calculation of series: {self.tag}. Calculating progress with target = 0.001 instead.')
-            defaults['target'] = 0.001
-
-        return defaults
-
-
-def default_progress_calc_options():
-    """Provide default inputs for calculating progress."""
-    return (
-        {
-            'base_year': 2015,
-            'target_year': 2030,
-            'direction': 'negative',
-            'target': None,
-            'progress_thresholds': {}
-        }
-    )
 
 def all_rows_unique(df, ignore_columns=['Value', 'Progress']):
     """

From d4656adcfd10172f61aa5a7f79e771ca7d85f7b2 Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Tue, 11 Mar 2025 16:48:55 -0400
Subject: [PATCH 38/39] take mean of series scores instead of median

---
 sdg/ProgressMeasure.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 847016ba..4cdbde71 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -72,7 +72,7 @@ def get_indicator_progress(self):
                         targets.append(series.target_achieved)
                 # Update the indicator score and progress status
                 if scores:
-                    indicator_score = np.median(scores)
+                    indicator_score = np.mean(scores)
                     target_achieved = all(targets) # True only when targets for all series are achieved
                     indicator_status = get_progress_status_from_score(indicator_score, target_achieved)
     

From 62622d82faf07476958c071cf04a7f9c79c3735a Mon Sep 17 00:00:00 2001
From: tristanmenard <tristan.menard@outlook.com>
Date: Wed, 12 Mar 2025 16:25:53 -0400
Subject: [PATCH 39/39] cache and output progress calculation components

---
 sdg/ProgressMeasure.py       | 56 ++++++++++++++++++++++++++++--------
 sdg/outputs/OutputOpenSdg.py | 23 ++++++++++++++-
 2 files changed, 66 insertions(+), 13 deletions(-)

diff --git a/sdg/ProgressMeasure.py b/sdg/ProgressMeasure.py
index 4cdbde71..046f370f 100644
--- a/sdg/ProgressMeasure.py
+++ b/sdg/ProgressMeasure.py
@@ -39,7 +39,7 @@ def get_progress_calculation_options(self):
     def get_indicator_progress(self):
         """
         Read the progress calculation configurations from the indicator metadata and return the progress 
-        measure score and status for the indicator. The minimum progress score and associated progress 
+        measure score and status for the indicator. The mean progress score and associated progress 
         status are taken as the aggregate score for the indicator when multiple series, units, and/or 
         disaggregations are specified in the progress calculation configurations.
         When the progress calculation is turned off, any manually specified progress status found in the 
@@ -53,6 +53,7 @@ def get_indicator_progress(self):
         # Initialize the score and progress status with defaults
         indicator_score = None
         indicator_status = 'not_available'
+        series_calculation_components = {}
 
         # Check if progress calculation is turned on
         if self.meta is not None:
@@ -60,7 +61,7 @@ def get_indicator_progress(self):
                 # First try to use caching.
                 if self.cache_store is not None and self.inid in self.cache_store:
                     # self.debug(f'{self.inid} progress from cache')
-                    return self.cache_store[self.inid]
+                    return (self.cache_store[self.inid]['score'], self.cache_store[self.inid]['progress_status'])
                 # Get the progress measure score and status for each series/unit/disaggregation specified in the progress calculation options.
                 scores = []
                 targets = []
@@ -70,6 +71,7 @@ def get_indicator_progress(self):
                     if score is not None:
                         scores.append(score)
                         targets.append(series.target_achieved)
+                    series_calculation_components.update(series.get_progress_calculation_components())
                 # Update the indicator score and progress status
                 if scores:
                     indicator_score = np.mean(scores)
@@ -85,11 +87,13 @@ def get_indicator_progress(self):
         # Result to return is tuple of indicator score and progress status
         result = (indicator_score, indicator_status)
         
-        # Cache the result
+        # Cache the progress calculation components
+        indicator_calculation_components = {'progress_status': indicator_status, 'score': floatNone(indicator_score)}
+        indicator_calculation_components.update(series_calculation_components)  
         if self.cache_store is None:
-            self.cache_store = {self.inid: result}
+            self.cache_store = {self.inid: indicator_calculation_components}
         else:
-            self.cache_store[self.inid] = result
+            self.cache_store[self.inid] = indicator_calculation_components
 
         return result
 
@@ -137,6 +141,7 @@ def __init__(self, indicator, config={}, logging=None):
         self.current_value = None
         self.sign = None
         self.target_achieved = False
+        self.progress_value = None
         self.status = 'not_available'
         self.score = None
 
@@ -169,17 +174,17 @@ def __init__(self, indicator, config={}, logging=None):
             self.score = self.get_score()
 
     def get_series_tag(self):
-        """Return a dict that identifies the series for which progress is intended to be calculated.
+        """Return a string that identifies the series for which progress is intended to be calculated.
         """
-        tag = {'indicator': self.inid}
+        tag = [self.inid]
         if self.series is not None:
-            tag[self.series_column] = self.series
+            tag.append(self.series)
         if self.unit is not None:
-            tag[self.unit_column] = self.unit
+            tag.append(self.unit)
         if self.disaggregation is not None:
             for disagg in self.disaggregation:
-                tag[disagg['field']] = disagg['value']
-        return tag
+                tag.append(disagg['value'])
+        return ' / '.join(tag)
     
     def filter_column(self, data, column, field):
         """Filter the input dataframe, keeping only rows where the value in 'column' is equal to 'field'.
@@ -417,6 +422,26 @@ def get_progress_thresholds(self):
 
         return progress_thresholds
 
+    def get_progress_calculation_components(self):
+        """Return a dict of the components for the progress calculation of this series.
+        """
+        return {
+            self.tag: {
+                'base_value': floatNone(self.base_value),
+                'base_year': floatNone(self.base_year),
+                'current_value': floatNone(self.current_value),
+                'current_year': floatNone(self.current_year),
+                'target': floatNone(self.target),
+                'target_year': floatNone(self.target_year),
+                'direction': self.direction,
+                'sign': self.sign,
+                'limit': self.limit,
+                'progress_value': floatNone(self.progress_value),
+                'status': self.status,
+                'score': floatNone(self.score)
+            }
+        }
+
 
 def all_rows_unique(df, ignore_columns=['Value', 'Progress']):
     """
@@ -504,4 +529,11 @@ def get_progress_status_from_score(score, target_achieved=False):
     elif -2.5 <= score < 0:
         return "limited_progress"
     elif -5 <= score < -2.5:
-        return "deterioration"
\ No newline at end of file
+        return "deterioration"
+    
+def floatNone(x):
+    """Cast input value to float. 
+    If input value is None, do not attempt to cast to float and return None instead.
+    """
+    if x is not None:
+        return float(x)
\ No newline at end of file
diff --git a/sdg/outputs/OutputOpenSdg.py b/sdg/outputs/OutputOpenSdg.py
index b55b0590..f2dde396 100644
--- a/sdg/outputs/OutputOpenSdg.py
+++ b/sdg/outputs/OutputOpenSdg.py
@@ -1,5 +1,6 @@
 import os
 import sdg
+import yaml
 from sdg.outputs import OutputBase
 from sdg.data import write_csv
 from sdg.json import write_json, df_to_list_dict
@@ -12,7 +13,7 @@ class OutputOpenSdg(OutputBase):
     def __init__(self, inputs, schema, output_folder='_site', translations=None,
         reporting_status_extra_fields=None, indicator_options=None,
         indicator_downloads=None, logging=None, indicator_export_filename='all_indicators',
-        ignore_out_of_scope_disaggregation_stats=False, cache_store=None):
+        ignore_out_of_scope_disaggregation_stats=False, cache_store=None, cache_output_filename='indicator_calculation_components.yml'):
         """Constructor for OutputOpenSdg.
 
         Parameters
@@ -43,6 +44,7 @@ def __init__(self, inputs, schema, output_folder='_site', translations=None,
         self.indicator_export_filename = indicator_export_filename
         self.ignore_na = ignore_out_of_scope_disaggregation_stats
         self.cache_store = cache_store
+        self.cache_output_filename = cache_output_filename
 
 
     def build(self, language=None):
@@ -117,6 +119,9 @@ def build(self, language=None):
         )
         disaggregation_status_service.write_json()
 
+        # Write progress calculation components in cache to file
+        status = status & self.write_cache(self.cache_output_filename)
+
         indicator_export_service = sdg.IndicatorExportService(site_dir, self.indicators, filename=self.indicator_export_filename)
         indicator_export_service.export_all_indicator_data_as_zip_archive()
 
@@ -309,3 +314,19 @@ def get_documentation_description(self):
         return """This output includes a variety of endpoints designed to
         support the <a href="https://open-sdg.readthedocs.io">Open SDG</a>
         platform."""
+    
+    def write_cache(self, filename):
+        """Write the cache to file.
+        """
+        
+        status = True
+
+        if self.cache_store is not None:
+            try:
+                with open(filename, 'w') as f:
+                    yaml.dump(self.cache_store, f)
+            except Exception as e:
+                print(e)
+                return False
+        
+        return status