-
Notifications
You must be signed in to change notification settings - Fork 15
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
Add further vertex attributes for author vertices #188
Comments
These functions are called by the end-user of coronet 😄 That is, they are not called inside coronet but are called by outside scripts which use coronet as a library. However, if you are looking for example use cases, you can find an exemplary code snippet in our Lines 160 to 179 in 91fc448
In addition to that, these functions are also tested properly and therefore, of course, called in our test-suite: test-networks-covariates.R Does this answer your question? If you need further information, don't hesitate to ask. |
…thor for issue se-sic#188 Signed-off-by: Johannes Hostert <[email protected]>
…se-sic#188 Signed-off-by: Johannes Hostert <[email protected]>
Tests for PRs are missing since there is no test data including PRs yet Signed-off-by: Johannes Hostert <[email protected]>
…se-sic#188 Signed-off-by: Johannes Hostert <[email protected]>
Tests for PRs are missing since there is no test data including PRs yet Signed-off-by: Johannes Hostert <[email protected]>
…thor for issue se-sic#188 Signed-off-by: Johannes Hostert <[email protected]>
…se-sic#188 Signed-off-by: Johannes Hostert <[email protected]>
Tests for PRs are missing since there is no test data including PRs yet Signed-off-by: Johannes Hostert <[email protected]>
Tests for PRs are missing since there is no test data including PRs yet Signed-off-by: Johannes Hostert <[email protected]>
Tests for PRs are missing since there is no test data including PRs yet Signed-off-by: Johannes Hostert <[email protected]>
…thor for issue se-sic#188 Signed-off-by: Johannes Hostert <[email protected]>
…se-sic#188 Signed-off-by: Johannes Hostert <[email protected]>
Tests for PRs are missing since there is no test data including PRs yet Signed-off-by: Johannes Hostert <[email protected]>
…thor for issue se-sic#188 Signed-off-by: Johannes Hostert <[email protected]>
…se-sic#188 Signed-off-by: Johannes Hostert <[email protected]>
Tests for PRs are missing since there is no test data including PRs yet Signed-off-by: Johannes Hostert <[email protected]>
Description
Complementary to #92 and #170, we should also add further vertex attributes for author vertices that deal with other data sources than commits. At the moment, we (almost) only have commit-related vertex attributes for authors, such as
add.vertex.attribute.commit.count.author
,add.vertex.attribute.commit.count.committer
(and several more of them combining author and committer information),add.vertex.attribute.artifact.count
(only for source-code artifacts (files, functions, etc.)Along with them, we need to create new functions to determine
mail.count
,mail.thread.count
,issue.count
(possibly also PR count?) ,issue.comment.count
, etc...[The idea of this issue is rather old, but it has not been documented properly yet. So I just opened this issue to not forget about it.]
Ideas for the Implementation
To get the mail count etc. as values, we need new functions like
get.author.mail.count
. To achieve that, see also the following comment: #70 (comment)For the implementation of the vertex attributes, see the current implementations for the commit-count attribute L156ff and for the artifact-count attribute L385ff.
The text was updated successfully, but these errors were encountered: