SurveyQuestion - better error message for many-to-many mapping
Closed this issue · 3 comments
mitzimorris commented
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")
lauken13 commented
Hey Mitzi,
Could you submit a reproducible example for this one please?
…On Tue, 6 Jul 2021, 2:01 am Mitzi Morris, ***@***.***> wrote:
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")
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#111>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA5ZMGDFQMFUAYNB7NJCESTTWHJMRANCNFSM4727R5TA>
.
mitzimorris commented
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)