|
7 | 7 | <v-card-item>
|
8 | 8 | <div class="tiles-text">
|
9 | 9 | <div class="spacing-25"/>
|
10 |
| - <div class="text-h6 mb-1">Acceptance Rate (by count)</div> |
| 10 | + <v-tooltip location="bottom start" open-on-hover open-delay="200" close-delay="200"> |
| 11 | + <template v-slot:activator="{ props }"> |
| 12 | + <div v-bind="props" class="text-h6 mb-1">Acceptance Rate (by count)</div> |
| 13 | + </template> |
| 14 | + <v-card class="pa-2" style="background-color: #f0f0f0; max-width: 350px;"> |
| 15 | + <span class="text-caption" style="font-size: 10px !important;">This metric represents the ratio of accepted suggestions to the total suggestions made by GitHub Copilot. This rate indicates the relevance and usefulness of Copilot's suggestions based on the number of prompts, but should be used with caution as developers use Copilot in various ways (research, confirm, verify, etc., not always "inject").</span> |
| 16 | + </v-card> |
| 17 | + </v-tooltip> |
11 | 18 | <div class="text-caption">
|
12 | 19 | Over the last 28 days
|
13 | 20 | </div>
|
|
20 | 27 | <v-card-item>
|
21 | 28 | <div class="tiles-text">
|
22 | 29 | <div class="spacing-10"/>
|
23 |
| - <div class="text-h6 mb-1">Total count of Suggestions (Prompts)</div> |
| 30 | + <v-tooltip location="bottom start" open-on-hover open-delay="200" close-delay="200"> |
| 31 | + <template v-slot:activator="{ props }"> |
| 32 | + <div v-bind="props" class="text-h6 mb-1">Total count of Suggestions (Prompts)</div> |
| 33 | + </template> |
| 34 | + <v-card class="pa-2" style="background-color: #f0f0f0; max-width: 350px;"> |
| 35 | + <span class="text-caption" style="font-size: 10px !important;">This chart illustrates the total number of code suggestions made by GitHub Copilot. It offers a view of the tool's activity and its engagement with users over time.</span> |
| 36 | + </v-card> |
| 37 | + </v-tooltip> |
24 | 38 | <div class="text-caption">
|
25 | 39 | Over the last 28 days
|
26 | 40 | </div>
|
|
33 | 47 | <v-card-item>
|
34 | 48 | <div class="spacing-25"/>
|
35 | 49 | <div class="tiles-text">
|
36 |
| - <div class="text-h6 mb-1">Acceptance Rate (by lines)</div> |
| 50 | + <v-tooltip location="bottom start" open-on-hover open-delay="200" close-delay="200"> |
| 51 | + <template v-slot:activator="{ props }"> |
| 52 | + <div v-bind="props" class="text-h6 mb-1">Acceptance Rate (by lines)</div> |
| 53 | + </template> |
| 54 | + <v-card class="pa-2" style="background-color: #f0f0f0; max-width: 350px;"> |
| 55 | + <span class="text-caption" style="font-size: 10px !important;">This metric represents the ratio of accepted lines of code to the total lines suggested by GitHub Copilot. This rate indicates the relevance and usefulness of Copilot's suggestions based on the volume of code, but should be used with caution as developers use Copilot in various ways (research, confirm, verify, etc., not always "inject").</span> |
| 56 | + </v-card> |
| 57 | + </v-tooltip> |
37 | 58 | <div class="text-caption">
|
38 | 59 | Over the last 28 days
|
39 | 60 | </div>
|
|
46 | 67 | <v-card-item>
|
47 | 68 | <div class="tiles-text">
|
48 | 69 | <div class="spacing-10"/>
|
49 |
| - <div class="text-h6 mb-1">Total Lines of code Suggested</div> |
| 70 | + <v-tooltip location="bottom start" open-on-hover open-delay="200" close-delay="200"> |
| 71 | + <template v-slot:activator="{ props }"> |
| 72 | + <div v-bind="props" class="text-h6 mb-1">Total Lines of code Suggested</div> |
| 73 | + </template> |
| 74 | + <v-card class="pa-2" style="background-color: #f0f0f0; max-width: 350px;"> |
| 75 | + <span class="text-caption" style="font-size: 10px !important;">Showcases the total number of lines of code suggested by GitHub Copilot. This gives an idea of the volume of code generation and assistance provided.</span> |
| 76 | + </v-card> |
| 77 | + </v-tooltip> |
50 | 78 | <div class="text-caption">
|
51 | 79 | Over the last 28 days
|
52 | 80 | </div>
|
|
59 | 87 | <v-main class="p-1" style="min-height: 300px;">
|
60 | 88 |
|
61 | 89 | <v-container style="min-height: 300px;" class="px-4 elevation-2">
|
62 |
| - <h2>Acceptance rate by count (%)</h2> |
| 90 | + <v-tooltip location="bottom start" open-on-hover open-delay="200" close-delay="200"> |
| 91 | + <template v-slot:activator="{ props }"> |
| 92 | + <h2 v-bind="props">Acceptance rate by count (%)</h2> |
| 93 | + </template> |
| 94 | + <v-card class="pa-2" style="background-color: #f0f0f0; max-width: 350px;"> |
| 95 | + <span class="text-caption" style="font-size: 10px !important;">This metric represents the ratio of accepted suggestions to the total suggestions made by GitHub Copilot. This rate indicates the relevance and usefulness of Copilot's suggestions based on the number of prompts, but should be used with caution as developers use Copilot in various ways (research, confirm, verify, etc., not always "inject").</span> |
| 96 | + </v-card> |
| 97 | + </v-tooltip> |
63 | 98 | <Bar :data="acceptanceRateByCountChartData" :options="chartOptions" />
|
64 | 99 |
|
65 |
| - <h2>Total Suggestions Count | Total Acceptances Count</h2> |
| 100 | + <v-tooltip location="bottom start" open-on-hover open-delay="200" close-delay="200"> |
| 101 | + <template v-slot:activator="{ props }"> |
| 102 | + <h2 v-bind="props" class="mb-1">Total Suggestions Count | Total Acceptances Count</h2> |
| 103 | + </template> |
| 104 | + <v-card class="pa-2" style="background-color: #f0f0f0; max-width: 350px;"> |
| 105 | + <span class="text-caption" style="font-size: 10px !important;">This visualization focuses on the total number of suggestions accepted by users.</span> |
| 106 | + </v-card> |
| 107 | + </v-tooltip> |
66 | 108 | <Line :data="totalSuggestionsAndAcceptanceChartData" :options="chartOptions" />
|
67 | 109 |
|
68 |
| - <h2>Acceptance rate by lines (%)</h2> |
| 110 | + <v-tooltip location="bottom start" open-on-hover open-delay="200" close-delay="200"> |
| 111 | + <template v-slot:activator="{ props }"> |
| 112 | + <h2 v-bind="props">Acceptance rate by lines (%)</h2> |
| 113 | + </template> |
| 114 | + <v-card class="pa-2" style="background-color: #f0f0f0; max-width: 350px;"> |
| 115 | + <span class="text-caption" style="font-size: 10px !important;">This metric represents the ratio of accepted lines of code to the total lines suggested by GitHub Copilot. This rate indicates the relevance and usefulness of Copilot's suggestions based on the volume of code, but should be used with caution as developers use Copilot in various ways (research, confirm, verify, etc., not always "inject").</span> |
| 116 | + </v-card> |
| 117 | + </v-tooltip> |
69 | 118 | <Bar :data="acceptanceRateByLinesChartData" :options="chartOptions" />
|
70 | 119 |
|
71 |
| - <h2>Total Lines Suggested | Total Lines Accepted</h2> |
| 120 | + <v-tooltip location="bottom start" open-on-hover open-delay="200" close-delay="200"> |
| 121 | + <template v-slot:activator="{ props }"> |
| 122 | + <h2 v-bind="props" class="mb-1">Total Lines Suggested | Total Lines Accepted</h2> |
| 123 | + </template> |
| 124 | + <v-card class="pa-2" style="background-color: #f0f0f0; max-width: 350px;"> |
| 125 | + <span class="text-caption" style="font-size: 10px !important;">As the name suggests, the total lines of code accepted by users (full acceptances) offering insights into how much of the suggested code is actually being utilized and incorporated into the codebase.</span> |
| 126 | + </v-card> |
| 127 | + </v-tooltip> |
72 | 128 | <Line :data="chartData" :options="chartOptions" />
|
73 | 129 |
|
74 |
| - <h2>Total Active Users</h2> |
| 130 | + <v-tooltip location="bottom start" open-on-hover open-delay="200" close-delay="200"> |
| 131 | + <template v-slot:activator="{ props }"> |
| 132 | + <h2 v-bind="props" class="mb-1">Total Active Users</h2> |
| 133 | + </template> |
| 134 | + <v-card class="pa-2" style="background-color: #f0f0f0; max-width: 350px;"> |
| 135 | + <span class="text-caption" style="font-size: 10px !important;">Represents the number of active users engaging with GitHub Copilot. This helps in understanding the user base growth and adoption rate.</span> |
| 136 | + </v-card> |
| 137 | + </v-tooltip> |
75 | 138 | <Bar :data="totalActiveUsersChartData" :options="totalActiveUsersChartOptions" />
|
76 | 139 |
|
77 | 140 | </v-container>
|
|
0 commit comments