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
How does an authors commits change over time with respect to code/comments percentage?
This query is linked in the documentation but the link is broken. I noticed that this query does not yet exist so we should add it and update the broken link.
SELECT
author,
countIf(line_type ='Code') AS code_lines,
countIf((line_type ='Comment') OR (line_type ='Punct')) AS comments,
code_lines / (comments + code_lines) AS ratio_code,
toStartOfWeek(time) AS week
FROMgit.line_changesGROUP BYtime,
author
ORDER BY
author ASC,
timeASCLIMIT10
The text was updated successfully, but these errors were encountered:
Describe the query
This query is linked in the documentation but the link is broken. I noticed that this query does not yet exist so we should add it and update the broken link.
See: query on this page
The text was updated successfully, but these errors were encountered: