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
plot_net_addresses
in plot_net_addresses fortify()` was deprecated in ggplot2 3.4.4. Please migrate to sf.
├─ggplot2::fortify(world_map) └─ggplot2:::fortify.SpatialPolygonsDataFrame(world_map)
The text was updated successfully, but these errors were encountered:
test_sf2 <- test_sf %>% select(LON,LAT,id, ADMIN) %>% rename(long=LON, lat=LAT, order=id, id=ADMIN) %>% mutate(group=paste(id,".1",sep="")) %>% ungroup() %>% select(-geometry) %>% as_tibble() str(test_sf2) head(test_sf2) head(world_map.points)
suggested alterantives to fortify are sf and broom
Sorry, something went wrong.
This response to my SE questions explains how to do this without requiringsf as a dependency
sf
Successfully merging a pull request may close this issue.
in
plot_net_addresses
fortify()` was deprecated in ggplot2 3.4.4.
Please migrate to sf.
├─ggplot2::fortify(world_map)
└─ggplot2:::fortify.SpatialPolygonsDataFrame(world_map)
The text was updated successfully, but these errors were encountered: