I have a data frame that looks like this:
typ1 typ2 typ3
T T F
F F F
T F F
and I want mutate a 4th logical column determining if any of the other three are TRUE, so {T, F, T}.
mutate(isAnyType = any(typ1, typ2, typ3))
seems to be using the whole columns, when I would like to use the information per row. Any insight is appreciated.