-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
improve backbone extraction #24
Comments
I will focus on implementing Liebig & Rao (2016). |
Can one say that a "backbone" in a network operates as a "keyword" in a document-term graph? Or maybe a "top person" in a document-author or author-term graph? |
No, sorry, by backbone extraction I mean the process of eliminating edges from a graph to find relevant connections. Currently I use a filtering technique that doesn't take the bipartite structure of the initial network into consideration. |
@jboynyc Apologies, but connections on which context? |
Sorry, in other words it's about finding significant edges and discarding insignificant ones. (connections = edges) |
Define "significant". Would it see edges that form rings to be less significant (optimizing for spanning trees)? Would methods based on weighted edges weight stronger edges better? Would it want disconnected edges? If this is hard to describe, would this extraction method apply to topic, terms, or author graphs? |
The definition of "significance" differs by technique. Usually there's a comparison to a null model, with different techniques using different null models. My question on this issue is specifically about techniques that use information about the bipartite network to aid backbone extraction of projections. Liebig & Rao and this paper outline some techniques, but so far I haven't found any usable implementations. |
Here is an implementation of the bipartite configuration model: https://github.com/mat701/BiCM I hesitate to add a dependency to this package until I get a chance to study it more closely.
|
Another relevant citation supporting my impression that using the disparity filter on projected one-mode networks is not a great idea: https://doi.org/10.1038/s42005-022-00856-9 |
It would be nice to move away from Serrano et al. to something more robust in a future release.
Possibly relevant literature: 1, 2
The text was updated successfully, but these errors were encountered: