We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently not exported, it would be cool to export check_graph() and allow it to return the issue ids.
check_graph()
# LOOPS!!! flow_table <- flow_table |> filter(id %in% fl$id) |> mutate(toid = ifelse(!toid %in% id, "", toid)) |> mutate(r = 1:n()) remove <- left_join(flow_table, flow_table, by = c("toid" = "id")) |> filter(id == toid.y) |> pull(r.x) flow_table <- filter(flow_table, !r %in% remove) |> select(-r)
The text was updated successfully, but these errors were encountered:
6d398e1
No branches or pull requests
Currently not exported, it would be cool to export
check_graph()
and allow it to return the issue ids.The text was updated successfully, but these errors were encountered: