Skip to content

Commit

Permalink
more about visualization
Browse files Browse the repository at this point in the history
  • Loading branch information
badetitou committed Sep 15, 2024
1 parent 057bc78 commit f330405
Showing 1 changed file with 17 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,14 +126,30 @@ Then, you can import more data for each MergeRequest

## Visualize

To visualize the group's "health"
To help with your first analysis of repositories and organization, we included some basic visualization.

### Organization visualization

When using the Pharo inspector to inspect a group, you'll get a new tab called `Group quality`.
It shows you the repositories and if they are pipelines working for them.

You can also have a look at this visualization using the following script.

```st
dritGroup := (glhModel allWithType: GLHGroup) detect: [ :group | group id = 137 ].
canvas := (GLHGroupVisualization new forGroup: { dritGroup } ).
canvas open.
```

### Commits distribution

We integrated a visualization that shows the commits distribution on a project by date.
Commits are also grouped by User who committed.

The same visualization is available in a user centric way, grouped by contributed project.

![Commits distribution for a user](img/commits-distribution.png){: .img-fill }

## Export

To export the visualization as an svg image
Expand Down

0 comments on commit f330405

Please sign in to comment.