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]: new users for each project within each namespace for each month. #32

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

new users for each project within each namespace for each month.

Tags

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

  • User Engagement
  • Active Users

Brief description

This metric calculates the total number of new users per project per month across different namespaces. It provides insights into the growth of user base over time and can help in evaluating the effectiveness of user acquisition strategies.

SQL code block

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

SELECT 
    project_id,
    namespace,
    bucket_month,
    COUNT(*) AS new_user_count
FROM 
    opensource-observer.oso.new_users_monthly_to_project
GROUP BY 
    project_id, namespace, bucket_month
ORDER BY 
    bucket_month DESC, project_id, namespace;

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