-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatistics.html
More file actions
56 lines (55 loc) · 1.04 KB
/
Copy pathstatistics.html
File metadata and controls
56 lines (55 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<html>
<head>
<style>
table {
border-collapse: collapse;
width: 70%;
margin: 20px auto;
}
th, td {
border: 1px solid #333;
padding: 8px;
text-align: center;
}
th {
background-color: #eee;
}
</style>
</head>
<body>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th>Activity Type</th>
<th>activity_type_counts</th>
<th>avg_heart_rate_by_type</th>
<th>avg_speed_by_type</th>
<th>total_calories_by_type</th>
</tr>
</thead>
<tbody>
<tr>
<td>Ride</td>
<td>113</td>
<td>132.27810335159302</td>
<td>14.894684464741596</td>
<td>72252.0</td>
</tr>
<tr>
<td>Run</td>
<td>139</td>
<td>160.05847383582073</td>
<td>9.130259383668145</td>
<td>71810.0</td>
</tr>
<tr>
<td>Swim</td>
<td>44</td>
<td>117.1636723836263</td>
<td>2.2562158025483687</td>
<td>13066.0</td>
</tr>
</tbody>
</table>
</body>
</html>