Hi,
When I write this down:
dane %>% dplyr::filter('27' >= 5.2) %>% dplyr::filter('22' >= 0.45)
I got this:
So no results, but when I write that down:
dane %>% dplyr::filter(.$'27' >= 5.2) %>% dplyr::filter(.$'22' >= 0.45)
I got this:
looks correct. Why is that ? My friend checked that and first command gives him correct results as well.
What could be the reason of it ?