Closed MarHai closed 3 years ago
Hi,
when handling column names that include a space (I know, bad practice, but still ...), unianova dies with a rather cryptic error message. This is presumably happening in https://github.com/joon-e/tidycomm/blob/7de8942c0c83a5f1453d2f101909ce0e140ad0ec/R/unianova.R#L70
unianova
Here is an example, working (first) and not working (second).
WoJ %>% select(employment, autonomy_selection) %>% unianova(employment) WoJ %>% select(employment, `autonomy selection` = autonomy_selection) %>% unianova(employment)
Hi,
when handling column names that include a space (I know, bad practice, but still ...),
unianova
dies with a rather cryptic error message. This is presumably happening in https://github.com/joon-e/tidycomm/blob/7de8942c0c83a5f1453d2f101909ce0e140ad0ec/R/unianova.R#L70Here is an example, working (first) and not working (second).