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
Hi! I'm trying to visualize a model with 275 tables. I use the following code:
model<- DBI::dbGetQuery(con, sQuery, stringsAsFactors = FALSE, errors=TRUE) model<- as.data_model(model) graph <- dm_create_graph(model, rankdir = "BT", view_type = 'keys_only') dm_render_graph(graph)
The problem is that the tables cannot be seen as there are so many, not even by zooming ... how should I proceed in this case?
Thank you very much! Great package!
The text was updated successfully, but these errors were encountered:
Can you edit model before converting to as.Data_model? After the first line, what’s the result of str(model)?
model
str(model)
Sorry, something went wrong.
No branches or pull requests
Hi! I'm trying to visualize a model with 275 tables. I use the following code:
model<- DBI::dbGetQuery(con, sQuery, stringsAsFactors = FALSE, errors=TRUE)
model<- as.data_model(model)
graph <- dm_create_graph(model, rankdir = "BT", view_type = 'keys_only')
dm_render_graph(graph)
The problem is that the tables cannot be seen as there are so many, not even by zooming ... how should I proceed in this case?
Thank you very much! Great package!
The text was updated successfully, but these errors were encountered: