microsoft / vivainsights-py

Python package for Analyzing and Visualizing data from Viva Insights
https://microsoft.github.io/vivainsights-py/
Other
14 stars 2 forks source link

Feature request: graph diagnostics #20

Open martinctc opened 8 months ago

martinctc commented 8 months ago

It would be helpful for troubleshooting and also general network analysis if there is a handy function to return a description of the graph returned by return_type = 'network' by the ONA functions. For instance, the output can contain these checks from igraph:

g.is_simple()
g.is_directed()
g.vertex_attributes()
g.edge_attributes()
g.ecount()
g.vcount()

This could be returned as a data frame, and it could work like network_summary() where the input is an igraph Graph object.