Skip to content
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

Old edges do not ghost out in ego network view #88

Open
albertocottica opened this issue Dec 6, 2015 · 0 comments
Open

Old edges do not ghost out in ego network view #88

albertocottica opened this issue Dec 6, 2015 · 0 comments

Comments

@albertocottica
Copy link
Member

If I select an individual node and then apply the "Max age (days)" filter, nodes that the ego node has interacted with long ago ghost out, but the edges relative to the interactions themselves do not ghost out if they are incident to a node that has been active recently.

This is confusing, because old interactions between two nodes that are both still active, but have not interacted in a long time, show up as live.

A better visualization would focus on the edges:

# pseudocode
for edge in edges: 
    if edge['latest_timestamp'] <= maxAge:
        edge.ghost()
for node in nodes:
    lastActive = 0
    for edge in edges:
        if source[edge] = node['id']:
            edgeDate = edge['latest_timestamp']
            if edgeDate > lastActive:
                lastActive = edgeDate
@albertocottica albertocottica added this to the Beta milestone Dec 6, 2015
@albertocottica albertocottica modified the milestones: Beta, Version 2 (or is it 1?) Dec 9, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant