Could you please explain the meaning of .$VariableName
in this piece of code? I also need to know what keywords to look for in study books that relate to the same.
data %>%
filter(Origin == origin, Dest == dest, UniqueCarrier == airline) %T>%
{totalFlights <<- totalFlights + length(.$Origin)} %>%
select(ifelse(is.na(Delay), 0, Delay)) %>%
filter(Delay > 0) ->
temp