'i receive the 405 error, how can i resolve it?

I try to create an account on my website, and then i receive the 405 error. i have an web server and a sql server on windows server 2019. these servers are on a virtual machine



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