'i receive the 405 error, how can i resolve it?
Solution 1:[1]
filter function expects a logical vector as an input. We can use map_lgl to map through the list column and any to show if at least one value in each row is equal to the input value.
Map_DF %>% filter(map_lgl(PointUse, ~any(. %in% input$PointUseInput)))
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | jpdugo17 |
