Giter VIP home page Giter VIP logo

matplotlib-challenge's Introduction

Matplotlib-challenge

Module 5 What good is data without a good plot to tell the story?

In this assignment, you’ll apply what you've learned about Matplotlib to a real-world situation and dataset.

Background

You've just joined Pymaceuticals, Inc., a new pharmaceutical company that specializes in anti-cancer medications. Recently, it began screening for potential treatments for squamous cell carcinoma (SCC), a commonly occurring form of skin cancer.

As a senior data analyst at the company, you've been given access to the complete data from their most recent animal study. In this study, 249 mice who were identified with SCC tumors received treatment with a range of drug regimens. Over the course of 45 days, tumor development was observed and measured. The purpose of this study was to compare the performance of Pymaceuticals’ drug of interest, Capomulin, against the other treatment regimens.

The executive team has tasked you with generating all of the tables and figures needed for the technical report of the clinical study. They have also asked you for a top-level summary of the study results.

Instructions

This assignment is broken down into the following tasks:

Prepare the data. Generate summary statistics. Create bar charts and pie charts. Calculate quartiles, find outliers, and create a box plot. Create a line plot and a scatter plot. Calculate correlation and regression. Submit your final analysis.

Prepare the Data

Run the provided package dependency and data imports, and then merge the mouse_metadata and study_results DataFrames into a single DataFrame. Display the number of unique mice IDs in the data, and then check for any mouse ID with duplicate time points. Display the data associated with that mouse ID, and then create a new DataFrame where this data is removed. Use this cleaned DataFrame for the remaining steps. Display the updated number of unique mice IDs.

Generate Summary Statistics

Create a DataFrame of summary statistics. Remember, there is more than one method to produce the results you're after, so the method you use is less important than the result.

Your summary statistics should include:

A row for each drug regimen. These regimen names should be contained in the index column. A column for each of the following statistics: mean, median, variance, standard deviation, and SEM of the tumor volume.

Create Bar Charts and Pie Charts

Generate two bar charts. Both charts should be identical and show the total total number of rows (Mouse ID/Timepoints) for each drug regimen throughout the study. Create the first bar chart with the Pandas DataFrame.plot() method. Create the second bar chart with Matplotlib's pyplot methods. Generate two pie charts. Both charts should be identical and show the distribution of female versus male mice in the study. Create the first pie chart with the Pandas DataFrame.plot() method. Create the second pie chart with Matplotlib's pyplot methods.

Calculate Quartiles, Find Outliers, and Create a Box Plot

Calculate the final tumor volume of each mouse across four of the most promising treatment regimens: Capomulin, Ramicane, Infubinol, and Ceftamin. Then, calculate the quartiles and IQR, and determine if there are any potential outliers across all four treatment regimens. Use the following substeps:

Create a grouped DataFrame that shows the last (greatest) time point for each mouse. Merge this grouped DataFrame with the original cleaned DataFrame. Create a list that holds the treatment names as well as a second, empty list to hold the tumor volume data. Loop through each drug in the treatment list, locating the rows in the merged DataFrame that correspond to each treatment. Append the resulting final tumor volumes for each drug to the empty list. Determine outliers by using the upper and lower bounds, and then print the results.

Using Matplotlib, generate a box plot that shows the distribution of the final tumor volume for all the mice in each treatment group. Highlight any potential outliers in the plot by changing their color and style.

hint: All four box plots should be within the same figure. Use this Matplotlib documentation page for help with changing the style of the outliers.

Create a Line Plot and a Scatter Plot

Select a single mouse that was treated with Capomulin, and generate a line plot of tumor volume versus time point for that mouse. Generate a scatter plot of mouse weight versus average observed tumor volume for the entire Capomulin treatment regimen.

Calculate Correlation and Regression

Calculate the correlation coefficient and linear regression model between mouse weight and average observed tumor volume for the entire Capomulin treatment regimen. Plot the linear regression model on top of the previous scatter plot.

Grading

Prepare the Data (20 points) The datasets are merged into a single DataFrame. (6 points) The number of mice are shown from the merged DataFrame. (2 points) Each duplicate mice is found based on the Mouse ID and Timepoint. (6 points) A clean DataFrame is created with the dropped duplicate mice. (4 points) The number of mice are shown from the clean DataFrame. (2 points)

Generate Summary Statistics (15 points) The mean of the tumor volume for each regimen is calculated using groupby. (2 points) The media of the tumor volume for each regimen is calculated using groupby. (2 points) The variance of the tumor volume for each regimen is calculated using groupby. (2 points) The standard deviation of the tumor volume for each regimen is calculated using groupby. (2 points) The SEM of the tumor volume for each regimen is calculated using groupby. (2 points) A new DataFrame is created with using the summary statistics. (5 points)

Create Bar Charts and Pie Charts (15 points) A bar plot showing the total number of timepoints for all mice tested for each drug regimen using Pandas is generated. (4.5 points) A bar plot showing the total number of timepoints for all mice tested for each drug regimen using pyplot is generated. (4.5 points) A pie plot showing the distribution of female versus male mice using Pandas is generated. (3 points) A pie plot showing the distribution of female versus male mice using pyplot is generated. (3 points)

Calculate Quartiles, Find Outliers, and Create a Box Plot (30 points) A DatFrame that has the last timepoint for each mouse ID is created using groupby. (5 points) The index of the DataFrame is reset. (2 points) Retrieve the maximum timepoint for each mouse. (2 points) The four treatment groups, Capomulin, Ramicane, Infubinol, and Ceftamin, are put in a list. (3 points) An empty list is created to fill with tumor volume data. (3 points) A for loop is used to display the interquartile range (IQR) and the outliers for each treatment group (10 points) A box plot is generated that shows the distribution of the final tumor volume for all the mice in each treatment group. (5 points)

Create a Line Plot and a Scatter Plot (10 points) A line plot is generated that shows the tumor volume vs. time point for one mouse treated with Capomulin. (5 points) A scatter plot is generated that shows average tumor volume vs. mouse weight for the Capomulin regimen. (5 points)

Calculate Correlation and Regression (10 points) The correlation coefficient and linear regression model are calculated for mouse weight and average tumor volume for the Capomulin regimen. (10 points)

Hints and Considerations

Use the code comments in the provided starter file to guide you through this assignment. Use proper labeling for your plots. Include plot titles, axis labels, legend labels, x-axis and y-axis limits, etc. As you work on this assignment, refer to Stack Overflow and the Matplotlib documentation for guidance. These are essential tools in every data analyst's tool belt. Remember that there are many ways to approach a data problem: One way is to break up your task into micro tasks. For example, ask yourself questions like the following:

How does my DataFrame need to be structured so it has the correct x-axis and y-axis? How do I build a basic scatter plot? How do I add a label to a scatter plot? Where in the DataFrame can I find the names that will go into the labels?

References Data generated by Mockaroo, LLC (2022). Realistic Data Generator.https://mockaroo.com/

matplotlib-challenge's People

Contributors

ldudley85 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.