Getting Started

Visualization scenarios, socially responsible computing, parting words, assignment 6 - data visualization.

Due : 11:59PM Eastern Time, July 30th , 2021

data visualization meme

Getting the stencil

You can click this link to get the stencil for this assignment.

Important : Please view Appendix A for the stencil code structure.

Python Data Visualization Modules

In this assignment, you may use packages that have not been installed on our course virtual environment. Please refer to Appendix B for instructions on how to install new modules on your virtual environment. You will not have the write access to install packages on the our course virtual environment on the department filesystem, so please let the HTA know if there is any Python module that is yet available in the course environment and you think should be added to the official course virtual environment.

Some modules that we recommend using in this assignment are: Pandas , Matplotlib , Seaborn , Plotly , and Sklearn (for your Machine Learning models, and for decision tree visualization ).

Before you start…

Firstly, we recommend finishing the lab first before working on the assignment.

We also care about accessible data visualization. Before you start designing your dashboard, we want you to read the following articles about accessible Data Visualization:

  • “ 5 tips on designing colorblind-friendly visualizations ” (also covered in lab)
  • “ Why Accessibility Is At The Heart of Data Visualization ” - particularly, pay attention to the Design equivalent experiences for all your readers section.
  • “ A Comprehensive Guide to Accessible Data Visualization ” - the article should provide you with specific suggestions to make data visualization accessible to people with visual impairments.

Additionally, we hope that you will utilize the following tools:

  • Colorblindness Simulator , where you can upload a photo (e.g., of a graph that you made), and it will output how the graph would look like if you have a certain type of colorblindness.
  • Guide: Including Alt Text in Markdown files - this will give you some guide on how to include alt texts in your writeup.md report.

Keep the principles from the readings in mind as you design and implement your dashboard. You should try your best to utilize these best practices in your graphs for this assignment, and note the times during your design and implementation process where you could and could not act on suggestions in the readings. You will answer questions about your observations after having produced all the visualizations.

We hope that this will be a fun assignment and will closely resemble future data science work!

Gradescope Autograder & Collaboration

Due to the free-form nature of the assignment, we do not have an autograder configured on Gradescope. Feel free to talk to your friends or come to TA hours to get feedback on your graphs (e.g., “ does it make sense that I use graph X to communicate this information? ” or “ how do you feel about my design for graph Y ”). However, you should be the one who determines the design choices and comes up with the code to produce the graphs.

We have been and will continue to use Gradescope on our assignments to check for code similarity between submissions.

(80 points)

In this assignment, there is no one way to do things: You are the person to make the design choices to visually analyze your data/your models. The design choices that you will make in this assignment include:

  • What are the questions that I will graphically analyze?
  • What kinds of plot will I produce to analyze my questions? Why?
  • Out of the many Python visualization tools/packages, what will I use to produce the plots? How can I use it to make my graphs the most informative and accessible?

In response to the scenarios posed in this assignment, all the code that you write to produce the the answer plots should go in their respective files (as noted in each section). In writeup.md , you will have to include the produced plots, and write your answer to each question that you decide to analyze. Particularly, be sure to mention:

  • Question : What is the question/aspect you want to analyze?
  • Graph & Analysis : Include the graph(s) that you use to analyze the question/aspect. How should we interpret the graph(s)? How should we use this information to judge the model/the dataset, or to decide the next steps in our data analysis?

If you are ever in doubt about whether an aspect of analysis is “valid,” feel free to reach out to your TAs for help!

We will go through your code file to make sure that the code that you wrote correspond to the graphs that you produce, so please make sure to structure your code in the cleanest way possible so we can give you credit. We expect best design for your graphs. This means:

  • Your graphs have to have clear graph titles, axis labels, and need to generally communicate information properly.
  • Your graph needs to follow accessible graph design principles - e.g., think colors, sizes, or alt texts. Please refer to the lab and to the accessible design tools/articles above for more information regarding accessible visualization.
  • Your graph communicates information well on its own, but you also do a good job with analyzing your graphs (refer to the questions mentioned above).

You are free to use any kinds of plots, packages, etc. - as long as you include your graphs in the graphs folder (and in the writeup.md ) file.

We will use two datasets in this assignment: The RI Traffic Stops Dataset, and the Banknote Authentication Dataset. The datasets and their details (features, source, acknowledgements) can be found in the data/ folder.

The data is labeled. More specifically:

  • RI Traffic Stops Dataset : By default, the name of the target feature is stop_outcome , and the names of the features are the rest of the attributes.
  • Banknote Authentication Dataset : By default, the name of the target feature is Class , and the names of the features are the rest of the attributes.

Stage 1: Data Visualization in Data Exploration

(30 points)

Your code in this section goes into stage_one.py . You are expected to explore three aspects of your choice of your data (with at least one accompanying graph for each aspect). This applies to either of the provided datasets, which means that you only have to produce graphs to explore three aspects for both of the datasets, instead of having to address six aspects.

Some questions you might want to think about when exploring a dataset:

You want to build a Machine Learning model on the datasets, but as a stellar data scientist, you realize that you need to explore how the data distribution looks like first. What kinds of graphs will you produce to explore your data before you dive into building the model?

Hint : To build a good model, you may want to look at the distribution of the fields (of your interest) that exist in your dataset. For example:

  • If a field consists of continuous numerical values: How are the values in this field distributed? What is the range, the median and standard deviation of the values in this field?
  • If a field consists of categorical values: How many distinct categories can the values be divided into, if applicable?
  • If your dataset has true target labels: Are the classes in your dataset are balanced (meaning, roughly the same amount of samples for each class)?
  • Looking at multiple different fields, what is does the breakdown of the data look like? For example: looking at fields A and B , how many samples have: (A,B) = (a_1, b_1) ? (a_1, b_2) ? ( a_2, b_1 )? And so on…

A picture is worth a thousand words A graph is worth a thousand numbers. Before we decide what to do next with the data - e.g., which machine learning model to use - it is important to visualize the dataset (and not just each feature’s statistics).

In a supervised context where the dataset that you’re provided contains the target labels, you can just plot your data points from your original data and see if they are in " natural clusters" already. ( Hint: Take a look at the functions plot_multiclass_fig_2D , plot_fig_3D , plot_linear_line , and plot_linear_plane in sample.py ! ) You may want to explore if your data is linearly separable or are already clustered into almost distinct clusters - if it is, then you can just use super simple Machine Learning models - e.g., SVM with Linear Kernels, Logistic Regression, etc. - on your dataset, but if not, you’ll have to use more complex ones - e.g. SVM with more complex kernels, or deep neural networks.

Hint : For a dataset with many different attributes, it might be hard for us to plot more than 3 dimensions at once. To handle this problem, you can reduce the dimensionality of your dataset to be either 2-dimensional or 3-dimensional (using methods such as Principal Component Analysis, or regression and picking the “most important” subsets of variables). You can visualize one graph of your most important features, or you can produce a few different graphs to visualize different subset of features to derive your conclusions about the data.

Some examples of aspects that you can analyze :

  • In the RI Transit Stops Dataset, how many examples (rows) are of each class? What are we to make of the kind of Machine Learning models that we should use on this dataset?
  • In the Banknote Authentication Dataset, are the data points linearly separable / almost linearly separable? What are we to make of the kind of Machine Learning models that we should use on this dataset?
  • In the RI Transit Stops Dataset, what does the breakdown of the data look like when looking specifically at the features 'driver_race' and 'search_conducted' ? How about 'driver_race' and 'stop_outcome' , or 'driver_race' and 'is_arrested' ? What can we say about the relationship between our features of interest, if at all?
  • How does the number of traffic stops change through the years in the Transit Stops Dataset?
  • What is the distribution of the continuous variables in the Banknote Authentication Dataset?

Stage 2: Data Visualization for Model Exploration

Your code in this section goes into stage_two.py . You are expected to explore three aspects of your choice of your Machine Learning models - again, with at least one accompanying graph for each aspect.

In utils.py , we have built the code to build four different Machine Learning models (decision tree, k-nearest neighbor, logistic regression, and dummy classifier) – examples for how to use our code to get the trained models can be found in sample.py . Feel free to build your own ML models, change the code that we have provided for you in utils.py , etc. – whatever that helps you produce the graphs!

  • What are the true positive, false positive, true negative and false positive rates in each model? What can we say about the the performance of each model using this? You may find plotting confusion matrix useful to support your answer.
  • What is the change in performance as you tweak your models? That is, how does changing the k in the k-nearest neighbor algorithm impact the accuracy? What is the accuracy of a model that is trained using only 3 features, in comparison to those that use 4 or 5 features?
  • How do your models do in comparison to a baseline/ dummy model (a model that predicts using super simple heuristics like random guessing or most-likely-outcome guessing)?
  • What is the decision making process that your model used to make the predictions? What were the splits that your decision tree made ), or what are the coefficients that your model assigned to each features? What can we say about these significant features in these models?
  • In our ML models, we use sklearn’s OneHotEncoder to encode our non-numerical, categorical features. You can read more about OneHotEncoder here if you are not familiar, and the TAs are here to help!

Stage 3: Data Visualization for SICK Applications

(20 points)

Code in this section goes into stage_three.py .

In this section, you will produce a geographic map to visualize the traffic stop data per county in Rhode Island. We recommend that you use Plotly (and we have an example for you in sample.py ). You are expected to produce at least one geographic map of your choice!

Some examples of graphs that you can make:

  • What is the total number of traffic stops through from 2005 - 2015 per each county?
  • What does the disparity in traffic stops look like in each county? Think the difference between the number of traffic stops on drivers of some race versus some other (dividing by the number of traffic stops in that county).

We recognize that it is hard to have the hover effects that Plotly interactive graphs provide when just downloading and including a static image in the writeup. Therefore, you can just include a static graph in your writeup, and we will check your code to see your Plotly graph(s) on our machines later – no penalty at all!

Stage N: Extra Credit

(15 points)

Code in this section goes into stage_n.py

You can analyze up to three additional aspects of your choice, and we will give you at most five extra credit points per each additional aspect that you analyze. You will receive 2.5 points for producing a good graph (clear, accessible, makes sense for your goal of analysis, and clear graph analysis), and an extra 2.5 if the graph is unique to the other graphs that you have produced in this assignment, for a total of 5 points max per each graph.

For this section, we will give at most 15 points as extra credit towards the assignment.

(3 points) Please list at least three examples of accessible practices in data visualization.

(10 points) Evaluate the accessibility of the graphs that you produced. Specifically:

  • What kinds of users might find your graphs accessible?
  • Who might have more difficulty accessing your graphs?
  • What further actions might you take to make this dashboard more accessible to a wider audience?

Your response should refer to at last one of the readings.

(7 points) Reflect on the stages of your design and implementation process.

  • What did you find easy about factoring accessible visualization practices into your graphs?
  • Think about the steps that you could not take/that you found hard to make your graphs more accessible. What are some factors that kept you from taking these steps?
  • What do you think are some things everyone should do to make accessible design the norm?

As per usual, please run python3 zip_assignment.py to zip the assignment and submit onto Gradescope. The script will include all the files in your directory (e.g., all the code .py files, all your graphs, and the writeup.md of your report), except for the files in the data folder.

After submitting, please make sure that your Gradescope submission includes your filled-out writeup.md report and all the code that you use to produce the graphs in your report.

Note : Manually zipping your files risks (1) not including some files that will be used as part of our grading, and (2) your code not upholding our anonymous grading policy. Please use the zip_assignment.py script to zip and submit, or directly submit through Github.

Congratulations on finishing your last homework assignment in the course! We hope that our course has been educational and fun. We truly believe that you’re set to becoming an amazing data scientist.

We’d love to hear any constructive feedback about our course.

Last but not least, we hope that you enjoy our parting gift .

This assignment was made by Nam (ndo3) in Summer 2021.

Appendix A: Stencil Code Structure

The structure of the stencil is as follows:

code/ : Folder that contains all the code. You can make as many helper .py files as you want here, and they will all be included in the submission.

  • stage_*.py : the respective Python files in which you will write your code to produce the answers for the assignment.
  • get_ri_stops_df and get_banknote_df : Functions to load the data (as a DataFrame)
  • get_trained_model : Function to get trained ML models (Logistic Regression, Decision Tree, K-Nearest Neighbors, and dummy baseline classifier)
  • get_model_accuracy : Function to evaluate trained ML models
  • sample.py : This contains examples for how you can draw certain kinds of plots using Matplotlib and Plotly , as well as for how you can use the functions in utils.py

data/ : Folder that contains all the data ( .csv files) and their README files (which contains information on what each attribute means and the data type).

graphs/ : Folder that should contain all the graphs that you will (1) include in writeup.md , and (2) submit to us.

writeup.md : You will include the graphs that you made in this assignment and your response to each stage in this file. Answers to the Socially Responsible Computing questions also go here.

Appendix B: How to install a new package in your own virtual environment

Note : The instructions below only work on your own virtual environment. If you are using the official course virtual environment on the department machine (e.g. at /course/cs1951a/venv ), you will not have the write permission to install new packages in the virtual environment – please reach out to the HTA if the package that you’re interested in using for the assignment is not available and you think should be added to the official course virtual environment.

Step by step instructions: If you run into any roadblock following these steps, feel free to come to TA hours for more support!

Suppose you are trying to import a package X to use in your Python program. In this example, we will use Seaborn package as X - using the import statement import seaborn as sns . However, Python is not happy about you using that statement, and gives you the error message ModuleNotFoundError: No module named X (in this case, ModuleNotFoundError: no module named 'seaborn' )

ModuleNotFoundError

Step 1 : Activate your course virtual environment (e.g., using the cs1951a_venv command that we have set up in Homework 0, our using source PATH/TO/YOUR/VIRTUAL/ENVIRONMENT/bin/activate ). Try Googling how to activate your virtual environment ( this page might be helpful ) if you don’t know how to.

This step is to make sure that your module is installed to the virtual environment with which you will run your code for the assignment.

Step 2 : In your terminal, type in pip3 install <NAME-OF-MODULE> or python3 -m pip install <NAME-OF-MODULE> .

In the example above, the command would be pip3 install seaborn or python3 -m pip install seabon .

After you have successfully installed the module, the last line/one of the last lines displayed in your terminal should say "Successfully installed <MODULE-NAME>-<MODULE-VERSION>" (in my case, that would be seaborn-0.11.1 )

Step 3 : See whether the module is successful installed on your machine by running your program (that contains the import line again). If it does not (the ModuleNotFoundError shows up again), feel free to come to TA hours for help! Be sure that you are in the virtual environment when installing the module and when running the code that contains the module import statements.

data visualization with python peer graded assignment github

Components of the report items

Expected layout

Requirements to create the dashboard

What is new in this exercise compared to other labs?

Hints to complete TODOs

Application.

As a data analyst, you have been given a task to monitor and report US domestic airline flights performance. Goal is to analyze the performance of the reporting airline to improve fight reliability thereby improving customer relaibility.

Below are the key report items,

Yearly airline performance report

Yearly average flight delay statistics

NOTE: Year range is between 2005 and 2020.

For the chosen year provide,

Number of flights under different cancellation categories using bar chart.

Average flight time by reporting airline using line chart.

Percentage of diverted airport landings per reporting airline using pie chart.

Number of flights flying from each state using choropleth map.

Number of flights flying to each state from each reporting airline using treemap chart.

Monthly average carrier delay by reporting airline for the given year.

Monthly average weather delay by reporting airline for the given year.

Monthly average natioanl air system delay by reporting airline for the given year.

Monthly average security delay by reporting airline for the given year.

Monthly average late aircraft delay by reporting airline for the given year.

NOTE: You have worked created the same dashboard components in Flight Delay Time Statistics Dashboard section. We will be reusing the same.

Expected Layout

cognitiveclass.ai logo

Create dropdown using the reference here

Create two HTML divisions that can accomodate two components (in one division) side by side. One is HTML heading and the other one is dropdown.

Add graph components.

Callback function to compute data, create graph and return to the layout.

What's new in this exercise compared to other labs?

Make sure the layout is clean without any defualt graphs or graph layouts. We will do this by 3 changes:

Add app.config.suppress_callback_exceptions = True right after app = JupyterDash(__name__) .

Having empty html.Div and use the callback to Output the dcc.graph as the Children of that Div.

Add a state variable in addition to callback decorator input and output parameter. This will allow us to pass extra values without firing the callbacks. Here, we need to pass two inputs chart type and year . Input is read only after user entering all the information.

Use new html display style flex to arrange the dropdown menu with description.

Update app run step to avoid getting error message before initiating callback.

NOTE: These steps are only for review.

Search/Look for review to know how commands are used and computations are carried out. There are 7 review items.

REVIEW1: Clear the layout and do not display exception till callback gets executed.

REVIEW2: Dropdown creation.

REVIEW3: Observe how we add an empty division and providing an id that will be updated during callback.

REVIEW4: Holding output state till user enters all the form information. In this case, it will be chart type and year.

REVIEW5: Number of flights flying from each state using choropleth

REVIEW6: Return dcc.Graph component to the empty division

REVIEW7: This covers chart type 2 and we have completed this exercise under Flight Delay Time Statistics Dashboard section

Reference link

Provide title of the dash application title as US Domestic Airline Flights Performance .

Make the heading center aligned, set color as #503D36 , and font size as 24 . Sample: style={'textAlign': 'left', 'color': '#000000', 'font-size': 0}

Create a dropdown menu and add two chart options to it.

Parameters to be updated in dcc.Dropdown :

Set id as input-type .

Set options to list containing dictionaries with key as label and user provided value for labels in value .

1st dictionary

label: Yearly Airline Performance Report

value: OPT1

2nd dictionary

label: Yearly Airline Delay Report

value: OPT2

Set placeholder to Select a report type .

Set width as 80% , padding as 3px , font size as 20px , text-align-last as center inside style parameter dictionary.

Add a division with two empty divisions inside. For reference, observe how code under REVIEW has been structured.

Provide division ids as plot4 and plot5 . Display style as flex .

Our layout has 5 outputs so we need to create 5 output components. Review how input components are constructured to fill in for output component.

It is a list with 5 output parameters with component id and property. Here, the component property will be children as we have created empty division and passing in dcc.Graph after computation.

Component ids will be plot1 , plot2 , plot2 , plot4 , and plot5 .

Deals with creating line plots using returned dataframes from the above step using plotly.express . Link for reference is here

Average flight time by reporting airline

Set figure name as line_fig , data as line_data , x as Month , y as AirTime , color as Reporting_Airline and title as Average monthly flight time (minutes) by airline .

Deals with creating treemap plot using returned dataframes from the above step using plotly.express . Link for reference is here

Number of flights flying to each state from each reporting airline

Set figure name as tree_fig , data as tree_data , path as ['DestState', 'Reporting_Airline'] , values as Flights , colors as Flights , color_continuous_scale as 'RdBu' , and title as 'Flight count by airline to destination state'

Congratulations for completing your dash and plotly assignment.

More information about the libraries can be found here

Saishruthi Swaminathan

Instantly share code, notes, and snippets.

@eltomali

eltomali / Data Analysis with Python Peer Graded Assignment.ipynb

  • Download ZIP
  • Star ( 17 ) 17 You must be signed in to star a gist
  • Fork ( 18 ) 18 You must be signed in to fork a gist
  • Embed Embed this gist in your website.
  • Share Copy sharable link for this gist.
  • Clone via HTTPS Clone using the web URL.
  • Learn more about clone URLs
  • Save eltomali/df20f199e764f1b289f51f6403539e29 to your computer and use it in GitHub Desktop.

@pradneshbhike

pradneshbhike commented Apr 12, 2020

Sorry, something went wrong.

@atere4ever

atere4ever commented Sep 12, 2020

@sahilsaqi

sahilsaqi commented Jul 24, 2021

bro i got error in Q7! TypeError: list indices must be integers or slices, not str how to resolve this

@Livhuwani-coder

Livhuwani-coder commented Oct 4, 2021

Thank you very much, help me a lot.

Please help me with Module 6: Databases and SQL assignment.

Thank you in advance.

IMAGES

  1. GitHub

    data visualization with python peer graded assignment github

  2. Data analysis with python peer graded assignment notebook

    data visualization with python peer graded assignment github

  3. Data Visualization in Python: Overview, Libraries & Graphs

    data visualization with python peer graded assignment github

  4. Data Visualization in Python: Overview, Libraries & Graphs

    data visualization with python peer graded assignment github

  5. Data analysis with python peer graded assignment notebook

    data visualization with python peer graded assignment github

  6. Data Visualization with Python

    data visualization with python peer graded assignment github

VIDEO

  1. Coursera

  2. Coursera: IBM

  3. Page View Time Series Visualizer

  4. Coursera

  5. Coursera: IBM

  6. Python Data Visualization

COMMENTS

  1. NakulLakhotia/Data-Visualization-with-Python

    This repository contains all the jupyter notebooks and the final peer graded assignment for the course - "Data Visualization with Python" offered by Coursera Topics data-science datavisualization

  2. Data Visualization with Python

    Data Visualization with Python - Final Assignment Import required libraries import pandas as pd import dash import dash_html_components as html import dash_core_components as dcc from dash.dependencies import Input, Output, State import plotly.graph_objects as go import plotly.express as px from dash import no_update

  3. Data-Visualization-with-Python-Week-5-Final-Peer-Graded-Assignment

    GitHub Gist: instantly share code, notes, and snippets.

  4. HW6: Data Visualization

    This step is to make sure that your module is installed to the virtual environment with which you will run your code for the assignment. Step 2: In your terminal, type in pip3 install <NAME-OF-MODULE> or python3 -m pip install <NAME-OF-MODULE>. In the example above, the command would be pip3 install seaborn or python3 -m pip install seabon.

  5. GitHub

    Data Visualization with Python. Contribute to Jimcy-coder/5_Peer_Graded_Assignment_Questions.py development by creating an account on GitHub.

  6. CoCalc -- Peer Graded Assignment Questions.ipynb

    Data Visualization with Python/Final Assignment/Peer Graded Assignment Questions.ipynb Views: 1 8 8 0. Kernel: Python 3. Assignment. Story. Components of the report items. ... Application. Story: As a data analyst, you have been given a task to monitor and report US domestic airline flights performance. Goal is to analyze the performance of the ...

  7. Data Visualization with Python and Seaborn

    Elevate Your Python Data Visualization Skills: A Deep Dive into Advanced Plotly Techniques with… Data visualization is a crucial aspect of data analysis and exploration. It helps in gaining ...

  8. Airplane Flight Reports

    Dash- as a python framework is used to build interactive web application to enrich experience of data visualization. In this project, I will explain how to create a dash application to present an interactive report. The aim of this project is to create an interactive visualization to monitor and report US domestic airline flights performance.

  9. Data Visualization with Python Peer Graded Assignment · GitHub

    # Select data df = airline_data[airline_data['Year']==int(year)] if chart == 'OPT1': # Compute required information for creating graph from the data bar_data, line_data, div_data, map_data, tree_data = compute_data_choice_1(df) # Number of flights under different cancellation categories bar_fig = px.bar(bar_data, x='Month', y='Flights', color ...

  10. New Data Visualization with Python Course Up on GitHub for Free

    New Data Visualization with Python Course Up on GitHub for Free Hi all! I wanted to share with y'all that all of the materials for my new seminar--Practical Data Visualization in Python--are now up on GitHub. I would love if y'all got something out it, and would appreciate even more if folks have constructive criticism! ...

  11. martinokratter/Data-visualization-Peer_graded_assignment

    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window.

  12. bscully8/Data-Visualization-with-Python: peer graded assignment

    Languages. Python 100.0%. peer graded assignment. Contribute to bscully8/Data-Visualization-with-Python development by creating an account on GitHub.

  13. Peer Graded Assignment

    GitHub Gist: instantly share code, notes, and snippets. GitHub Gist: instantly share code, notes, and snippets. Skip to content. All gists Back to GitHub Sign in Sign up ... eltomali / Peer Graded Assignment - Data Visualisation.ipynb. Created May 30, 2019 06:53. Show Gist options. Download ZIP

  14. Extraction, Processing and Visualization of Peer Assessment Data in

    Situated in the intersection of two emerging trends, online self- and peer assessment modes and learning analytics, this study explores the current landscape of software applications to support peer assessment activities and their necessary requirements to complete the learning analytics cycle upon the information collected from those applications. More particularly, the study focuses on the ...

  15. Create dashboard (week 5 peer graded assignment) in Data visualization

    Create a dashboard for week 5 peer graded assignment in Data visualization with python course (IBM Data science professional certificate on coursera)

  16. Peer Graded Assignment

    omerjan-k. /. Peer Graded Assignment - Data Visualisation.ipynb. Forked from eltomali/Peer Graded Assignment - Data Visualisation.ipynb. Created 4 years ago. Star 0. Fork 0. GitHub Gist: instantly share code, notes, and snippets.

  17. GitHub

    OldMcBundy/Statistics-with-Data-Science-for-Python-Final-Assignment This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository. main

  18. Austin Riley's Optional Peer Graded Assignment.jupyterlite.ipynb

    Contribute to OldMcBundy/Statistics-with-Data-Science-for-Python-Final-Assignment development by creating an account on GitHub.

  19. TechnoMeter/Applied-Data-Science-Capstone: Peer-graded Assignment

    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window.

  20. python data science assignment for ibm certification (peer graded)

    Find and fix vulnerabilities Codespaces. Instant dev environments

  21. Data Analysis with Python Peer Graded Assignment.ipynb · GitHub

    eltomali. /. Data Analysis with Python Peer Graded Assignment.ipynb. Created 5 years ago. Star 17. Fork 18. Embed. Raw. Data Analysis with Python Peer Graded Assignment.ipynb.

  22. GitHub

    part of assignment for python project. Contribute to pavleen14/Analyzing-Historical-Stock-Revenue-Data-and-Building-a-Dashboard development by creating an account on GitHub.