Skip to content

Commit

Permalink
Add commit network to 'get.networks'
Browse files Browse the repository at this point in the history
Commit Network now also built when calling function 'get.networks'.

Signed-off-by: Leo Sendelbach <s8lesend@stud.uni-saarland.de>
  • Loading branch information
Leo-Send committed May 21, 2024
1 parent 3c342e3 commit 15f373a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion util-networks.R
Original file line number Diff line number Diff line change
Expand Up @@ -1180,12 +1180,15 @@ NetworkBuilder = R6::R6Class("NetworkBuilder",
authors.net = self$get.author.network()
## artifact relation
artifacts.net = self$get.artifact.network()
## commit relation
commit.net = self$get.commit.network()

return(list(
"authors.to.artifacts" = authors.to.artifacts,
"bipartite.net" = bipartite.net,
"authors.net" = authors.net,
"artifacts.net" = artifacts.net
"artifacts.net" = artifacts.net,
"commit.net" = commit.net
))
},

Expand Down

0 comments on commit 15f373a

Please sign in to comment.