Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

How do you answer the Python code for questions 1 and 2 ? Assignment 2 - Continuous Visualization between courses and come up with insights

How do you answer the Python code for questions 1 and 2?Assignment 2- Continuous Visualization
between courses and come up with insights regarding how to enhance residental education across different subjects.
Question 1: Grade Distribution Comparison (55%)
STATS250_grade stores the letter grades for those who taok the STATS 250 course
DATASC1386_grade stares the letter grades for thase who took the DATASCI 305 course
MATH217_grade stores the lecter grades for those who took the MATH 217 course
ENGLISH125_grade stores the letter grades for thase who took the ENGLISH 125 course
ECON1e1_grade stores the lecter grades for those who took the ECON 101 course
EECS545_grade stores the lester grades for those who took the EECS 545 course
You are asked to:
Make a 3*2 tigure (so 6 subplots) such that for each course you have a histogram using the student grade samples respectively
Remove the gaps between the bars in the histograms if any
For each probability plat, you should overiay a normal distribution with the same mean and standard devilation parameters as you see in the samples (you can caloulate this!)
Hnts:
To make subplots, one good way to start with is to use f1g,ax= plt. subplot ()
To remare the gaps that might show up in histograms, you can customize the bins parameter
If you want to make histograms using the distplat function in seaborn paciage, you need to specity the parameters kde = False and norn_h1st = Trueimport pandas as pd
import seaborn as snd
def grade_distribution():grade_distribution()Question 2: Grade Distribution Normality Check (35%)
noemal distribution, a sutficient condition rendering the design of statistical models valid for those courses. You suggest that a QQ-plot is a great method to determine how similar a distribution is to another. Great idea:
Make a 3*2 figure (again,6 subplots) so that for each course you hare a QQ plot using the student grade samples versus the normal distribution with the same mean and standard deriation
side. Eriefty describe the figure discussing the courses and whether they seem to be normally distributed.
Hint: You may find using fig=plt.figure() and fig.add_subplot() functions heiptul to create subplats. Yau don't have to use these functions though.
def grade_norwality(1:
return Mone
grade_nornality()
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

What is Larmors formula? Explain with a suitable example.

Answered: 1 week ago