I know this has been asked before, but the answers are always too specific to the OP. I am also somewhat new to this.
I have a list WaFrames
of 180 data frames. I need to affect them all because manually takes far too long.
The basic df[is.na(df)] <- 0
works fine on one frame but I'm stuck when i'm trying to get it to work over every frame in the list. I've tried all the lapply
ways and tried for loops. I'm stumped.
Also an answer could lead me to how to make other sweeping changes to all the frames at once.
Thanks in advance!