# Example 1
# Tibble dataset with missing values:
require(tibble)
myTB1 <- tibble::tribble(
~time, ~veval,
1988, 1201,
1989, NA,
1990, 998,
1991, NA
)
# Check dataset:
check_data(myTB1)
# Example 2
# Dataset with no missing values, no qualitative variables, and variable time present:
myTB2 <- tibble::tribble(
~time, ~veval,
1988, 1201,
1989, 450,
1990, 998,
1991, 675
)
check_data(myTB2)
# Check the "emp_20_64_MS" Eurofound dataset:
data(emp_20_64_MS)
check_data(emp_20_64_MS, timeName="time")
Run the code above in your browser using DataLab