-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 1.36 KB
/
Copy pathindex.html
File metadata and controls
23 lines (23 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matplotlib HW</title>
</head>
<body>
<h1>
Matplotlib Challenge
</h1>
<p>This is my matplotlib homework.</p>
<h2>Observations and Insights</h2>
<img src="Pymaceuticals/images/pyplot_line.png" alt="Line Graphs">
<p>Looking at the Tumor Volume over the Timepoint for four mice treated with Capomulin, we can see that for three of the mice, their tumor volume had a steady decrease in volume over the timepoints, suggesting that Capomulin has a positive effect on decreasing tumors.</p>
<img src="Pymaceuticals/images/pyplot_box.png" alt="Box Plots">
<p>Looking at the last tumor volume for these four drug regimens, we can see that both Capomulin and Ramicane have a similar effect on the tumor volume.
</p>
<img src="Pymaceuticals/images/pyplot_correlation_regression.png" alt="Scatter Plot">
<p>Looking at the data in the scatter plot, it appears that there is a strong positive correlation (correlation coefficient = 0.84) between mouse weight and average tumor volume. This is made clearer with the linear regression line. The strong positive correlation between suggests that the heavy the mouse is the larger their average tumor volume will be.</p>
<a href="https://tkuar.github.io">Back to Home</a>
</body>
</html>