You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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'
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
Github contribution graph
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
The text was updated successfully, but these errors were encountered: