All datasets

Labour force survey estimates (LFS), by selected census agglomerations

Labour force survey estimates by selected census agglomerations. Statistics Canada table 14-10-0163-01.

Source: Government of Canada Open Data1,840 rowsUpdated: 9/20/2026License: OGL-Canada-2.0
labouremploymentstatcangovernment-of-canada

Quality

100

Attribution

Contains information licensed under the Open Government Licence – Canada

Schema

ColumnTypeDescription
ref_dateintegerReference date — the time period the observation refers to (Statistics Canada table field REF_DATE).
geostringGeography the observation covers (Statistics Canada table field GEO).
dguidstringDissemination geography unique identifier (Statistics Canada table field DGUID).
labour_force_characteristicsstring
uomstringUnit of measure for the estimate (Statistics Canada table field UOM).
uom_idintegerUnit of measure identifier (Statistics Canada table field UOM_ID).
scalar_factorstringScalar factor applied to the value, e.g. units, thousands or millions (Statistics Canada table field SCALAR_FACTOR).
scalar_idintegerScalar factor identifier (Statistics Canada table field SCALAR_ID).
vectorstringVector number — Statistics Canada's unique identifier for the time series (table field VECTOR).
coordinatefloatTable coordinate locating the estimate within the source table (Statistics Canada table field COORDINATE).
valuefloatEstimate value as published in the Statistics Canada table.
decimalsintegerNumber of decimals published for the estimate (Statistics Canada table field DECIMALS).

Sample rows

ref_dategeodguidlabour_force_characteristicsuomuom_idscalar_factorscalar_idvectorcoordinatevaluedecimals
1996Corner Brook, Newfoundland and Labrador10015PopulationPersons249thousands3v535411121.123.51
1996Corner Brook, Newfoundland and Labrador10015Labour forcePersons249thousands3v535411131.213.41
1996Corner Brook, Newfoundland and Labrador10015EmploymentPersons249thousands3v535411141.311.41
1996Corner Brook, Newfoundland and Labrador10015UnemploymentPersons249thousands3v535411151.42.11
1996Corner Brook, Newfoundland and Labrador10015Not in labour forcePersons249thousands3v535411161.5101

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/ckan_canada/labour_force_survey_ca" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/ckan_canada/labour_force_survey_ca").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

API endpoint: https://datazimuts.com/v1/datasets/ckan_canada/labour_force_survey_ca

Tip: fetch /llms.txt for the full machine-readable catalog.