I want to find the tibble row which has the maximum value in the column 'cfs.'
Using which.max(pdx_disc$cfs) I learn the value is 8054. Using that value in with:
pdx_disc %>% filter(cfs == 8054)
A tibble: 0 × 9
… with 9 variables: site_nbr , year , mon , day ,
hr , min , tz , cfs , sampdt
the content of that row is not returned.
What am I doing incorrectly?