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

[Impact Metric Submission]: Total active addresses per project per month #33

Open
nutkung1 opened this issue May 5, 2024 · 0 comments
Assignees
Labels
c:community Datasets and notebook templates

Comments

@nutkung1
Copy link

nutkung1 commented May 5, 2024

Total active addresses per project per month

Tags

Add one or more keywords to help us categorize your metric. Don't overthink this!

  • Community Engagement
  • Active address

Brief description

Describe how your impact metric is calculated in 2-3 sentences: The impact metric calculates the total number of active addresses associated with new users who have engaged with a project within a given month. It aggregates this data by project and month, providing insights into the growth and activity levels of new users over time. This metric helps assess the project's ability to attract and retain users, which is crucial for evaluating its impact and potential long-term sustainability.

SQL code block

Insert the SQL that we should run to replicate your impact metric:

SELECT 
    p.project_id,
    m.bucket_month,
    COUNT(DISTINCT m.from_id) AS total_active_addresses
FROM 
    opensource-observer.oso.new_users_monthly_to_project m
JOIN 
    opensource-observer.oso.repository_metrics_by_project p
ON 
    m.project_id = p.project_id
GROUP BY 
    p.project_id,
    m.bucket_month

Optional: link

Add a link to script/notebook or longer form write-up about the metric:

@nutkung1 nutkung1 added the c:community Datasets and notebook templates label May 5, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c:community Datasets and notebook templates
Projects
None yet
Development

No branches or pull requests

2 participants