Answered step by step
Verified Expert Solution
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 and Assignment Continuous Visualization
between courses and come up with insights regarding how to enhance residental education across different subjects.
Question : Grade Distribution Comparison
STATSgrade stores the letter grades for those who taok the STATS course
DATASCgrade stares the letter grades for thase who took the DATASCI course
MATHgrade stores the lecter grades for those who took the MATH course
ENGLISHgrade stores the letter grades for thase who took the ENGLISH course
ECONegrade stores the lecter grades for those who took the ECON course
EECSgrade stores the lester grades for those who took the EECS course
You are asked to:
Make a tigure so 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 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 nornhst Trueimport pandas as pd
import seaborn as snd
def gradedistribution:gradedistributionQuestion : Grade Distribution Normality Check
noemal distribution, a sutficient condition rendering the design of statistical models valid for those courses. You suggest that a QQplot is a great method to determine how similar a distribution is to another. Great idea:
Make a figure again subplots so that for each course you hare a 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 figfigure and fig.addsubplot functions heiptul to create subplats. Yau don't have to use these functions though.
def gradenorwality:
return Mone
gradenornality
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started