50% off | Unlimited Data & AI Learning

Last chance! 50% off unlimited learning

Sale ends in


convergEU (version 0.7.3.2)

check_country: Check a dataset (tibble) for the presence of countries

Description

A given list of countries is contained into a dataset (tibble). If not, an object signaling this error is returned.

Usage

check_country(myTB, clusterCode = "EU27")

Value

TRUE if they are inside, FALSE otherwise

Arguments

myTB

dataset (tibble) to be checked

clusterCode

string to denote which countries should be in the dataset

References

https://www.eurofound.europa.eu/system/files/2022-04/introduction-to-the-convergeu-package-0.6.4-tutorial-v2-apr2022.pdf

Examples

Run this code

# Check the dataset "emp_20_64_MS" for the presence of countries in cluster EU27:
check_country(emp_20_64_MS, clusterCode="EU27")

# Check absence for EU27:
check_country(emp_20_64_MS[,-(6:8)], clusterCode="EU27")

# Check the dataset "emp_20_64_MS" for the presence of countries in cluster EU25:
check_country(emp_20_64_MS, clusterCode="EU25")

# Check the dataset "emp_20_64_MS" for the presence of countries in cluster EU12:
check_country(emp_20_64_MS, clusterCode="EU12")

Run the code above in your browser using DataLab