We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
(Hi, this is a great package, thank you!)
The dim parameter in e.g. in igraph::layout_with_fr can be 2 or 3, in case a 3D layout is desired. The call:
dim
igraph::layout_with_fr
layout3d <- create_layout(tidy_graph, layout = "fr", dim = 3)
passes without warning, and returns a data.frame with only the x and y columns, missing the z column.
x
y
z
I realize the source is somewhere here but it's out of my league:
ggraph/R/layout_igraph.R
Line 115 in 8d23845
I think:
ggplot2
igraph
Thanks.
The text was updated successfully, but these errors were encountered:
You are correct that this is intentional due to the 2D nature of ggplot2 and a warning would probably be welcome
Sorry, something went wrong.
54b2f30
No branches or pull requests
(Hi, this is a great package, thank you!)
The
dim
parameter in e.g. inigraph::layout_with_fr
can be 2 or 3, in case a 3D layout is desired. The call:passes without warning, and returns a data.frame with only the
x
andy
columns, missing thez
column.I realize the source is somewhere here but it's out of my league:
ggraph/R/layout_igraph.R
Line 115 in 8d23845
I think:
ggplot2
philosophy this is intentional, there should at least be a warning, referring the user to useigraph
.z
column.Thanks.
The text was updated successfully, but these errors were encountered: