-
Notifications
You must be signed in to change notification settings - Fork 0
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
Address feedback about the overview board #124
Comments
About: "Annotating users in H looks too small compared with active LMS users" According to: SELECT
DATE_TRUNC('month', created_week) as month,
COUNT(DISTINCT(user_id))
FROM report.user_activity
WHERE annotation_count > 0
GROUP BY DATE_TRUNC('month', created_week)
ORDER BY month DESC; LMS US annotating users:
LMS CA annotating users:
Total:
According to the authority activity report we have (for LMS):
If we get the raw user launch counts: SELECT
DATE_TRUNC('month', timestamp_week) AS month,
COUNT(DISTINCT(user_id))
FROM report.events
WHERE
event_type = 'configured_launch'
GROUP BY DATE_TRUNC('month', timestamp_week)
ORDER BY month DESC We see:
According to the organization activity report we have:
It doesn't surprise me that these are a bit higher, as the same user can be in different orgs and get double counted. Whats the main story here then?I think this is just because we're counting different things:
If we want to see the number of annotating users (rather than active) from LMS you can see that in the authority graph. What actions to take:
|
Nup... this was all a bad query I wrote for debugging. The numbers line up |
I think we're done here for now barring getting some confirmation, which Daryl has agreed to do. |
We have had the following feedback about the board:
About CAGR
Annotating users in H looks too small compared with active LMS users (solved?)
Incorrect last month (solved?)
The text was updated successfully, but these errors were encountered: