How to fill cells based on multiple conditions?
There are a lot of players (columns) in this game, but I only included 2 for the sake of this example. I want to loop over a lot of players.
Every row represents a game round.
Conditions:
IF player00[i] score = 0 &
IF lossallowed00[i] = "no"
THEN Fill flag00[i] with "FLAG"
df <-data.frame(
  player001 = c(1,0,3),
  player002 = c(1,0,5),
  lossallowed001 = c("no", "yes", "no"),
  lossallowed002 = c("no", "no", "yes"),
  flag001 = NA,
  flag002 = NA
)
#desired output:
#player001 player002 lossallowed001 lossallowed002 flag001 flag002
#    1         1             no             no      NA      NA
#    0         0            yes             no      NA      FLAG
#    3         5             no            yes      NA      NA