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

docs: network graph analysis raw data sources #2072

Closed
ccerv1 opened this issue Sep 5, 2024 · 5 comments
Closed

docs: network graph analysis raw data sources #2072

ccerv1 opened this issue Sep 5, 2024 · 5 comments
Assignees
Labels
c:docs Blogs, documentation, and copy

Comments

@ccerv1
Copy link
Member

ccerv1 commented Sep 5, 2024

We should create a guide for doing network graph analysis on OSO.

Here is a Loom Video explaining how to query the data.

For now, I will just do a short list of resources that exist:

Farcaster social graph

select distinct
  fid,
  target_fid
from `{YOUR_PROJECT_NAME}.farcaster.links`
where deleted_at is null
limit 10

Github contribution graph

select distinct
  user_artifacts.artifact_name as user,
  repo_artifacts.artifact_name as repo
from `{YOUR_PROJECT_NAME}.oso.timeseries_events_by_artifact_v0` as events
join `{YOUR_PROJECT_NAME}.oso.artifacts_v1` as user_artifacts
  on events.from_artifact_id = user_artifacts.artifact_id
join `{YOUR_PROJECT_NAME}.oso.artifacts_v1` as repo_artifacts
  on events.to_artifact_id = repo_artifacts.artifact_id
where
    events.event_type = 'COMMIT_CODE'
    and events.time > '2024-01-01'

OpenRank data challenge with Byte Explorers

There are a collection of starter notebooks here.

RPGF3 PageRank bounty

There is a playground GitHub dataset and several PageRank implementations (for repos, not developers) here

@ccerv1 ccerv1 added this to OSO Sep 5, 2024
@ccerv1 ccerv1 self-assigned this Sep 5, 2024
@ccerv1 ccerv1 converted this from a draft issue Sep 5, 2024
@ccerv1 ccerv1 added this to the [c] Op RF5/6/7 milestone Sep 5, 2024
@ccerv1 ccerv1 moved this from Needs Review to Done in OSO Sep 6, 2024
@ccerv1 ccerv1 closed this as completed Sep 6, 2024
@ryscheng
Copy link
Member

ryscheng commented Sep 6, 2024

@ccerv1 can you link to where the resources are?

@ccerv1
Copy link
Member Author

ccerv1 commented Sep 6, 2024

@ccerv1 can you link to where the resources are?

They are already linked above @ryscheng ... did you mean something else?

@ccerv1 ccerv1 added the c:docs Blogs, documentation, and copy label Sep 6, 2024
@ccerv1 ccerv1 reopened this Sep 7, 2024
@github-project-automation github-project-automation bot moved this from Done to Needs Review in OSO Sep 7, 2024
@ccerv1
Copy link
Member Author

ccerv1 commented Sep 7, 2024

Add to discussion thread

@ccerv1
Copy link
Member Author

ccerv1 commented Sep 9, 2024

cc @astralblue

@ccerv1
Copy link
Member Author

ccerv1 commented Sep 10, 2024

Cataloged in this discussion: #2120

@ccerv1 ccerv1 closed this as completed Sep 10, 2024
@github-project-automation github-project-automation bot moved this from Needs Review to Done in OSO Sep 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c:docs Blogs, documentation, and copy
Projects
Archived in project
Development

No branches or pull requests

2 participants