lauken13/mrpkit

SurveyQuestion - better error message for many-to-many mapping

Closed this issue · 3 comments

The SurveyQuestion allows many-to-one, one-to-many, and one-to-one mappings.
the error message for a many-to-many mapping is confusing:
"Error: Package can only handle many to one mappings"

this should say something like "Error, many-to-many mappings not allowed" and should identify the problematic labels.

e.g.

mapping = list(
+     "A" = "B1",
+     "B" = "B1",
+     "B" = "B2")
marstat_mapping = list(
    "Never married" = "Never married/single",
    "Domestic / civil partnership" = "Married, spouse present",
    "Married" = "Married, spouse present",
    "Married" = "Married, spouse absent",
    "Separated" = "Separated",
    "Divorced" = "Divorced",
    "Widowed" = "Widowed"
)
q_marstat <- SurveyQuestion$new(name = "marstat",
    col_names = c("marstat", "MARST"),
    values_map= marstat_mapping)

I can't replicate, but closing because I think this is covered in example 6 of the mapping tests, and I think this was created before pull request #103, which solved a number of mapping bugs and warnings.