This community-built FAQ covers the “Introduction” exercise from the lesson “Average”.
Paths and Courses
This exercise can be found in the following Codecademy content:
FAQs on the exercise Introduction
There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
Agree with a comment or answer? Like () to up-vote the contribution!
Ah, ok. Sometimes there are links in the courses to the forums’ FAQ posts, but these FAQs aren’t really maintained or updated with a link back to the current course content. These FAQs are automatically scheduled and pushed to the forums.
This one is labeled “Python FAQ”, so that’s kinda generic.
For this, I’d assume that one should have a basic understanding of linear algebra, or whatever is mentioned in the course catalog: " Probability , Descriptive Statistics , Linear Regression , Matrix Algebra , Calculus , Hypothesis Testing , and more."
And, well, Python too.
hello!
hope you fine!
in this lesson i have some confusion; so, i didn’t face for the same formula that they are in here during the school and university but, in here sth like numpy. pyplot and pandas are unknow for me so, please give details about them. as well as in mean, median and mode i pass one quiz but, i cannot go ahead and it worming me that you must complete the task and then can go ahead but i don’t know that what is wrong with me.
on the first math class we must just pass one
quiz and go ahead or the other thing is also on there?
Please provide some context here. What is the link to the lesson?
Also, remember, you can always research these concepts outside of codecademy. If you don’t understand something in the lesson, then search elsewhere until you grasp the concepts.
http://codecademy.com/business/register?token=7LyT3NDZTW9j0bDBVu65gg
This is the link of our study and I need for your guidance to understand my lesson so will so this major and online class is something new for me and I want to have a scheduled for my lessons so it got confusing me a little bit.
The link you provided is to the Intro portion. It just asks you where you think the middle is in the histogram.
In the second part, calculating the mean, there should already be some code there and again, just click “run”:
#Set total equal to the sum
total = 29 + 49 + 42 + 43
#Set mean_value equal to the mean
mean_value = total / 4.0
# The following code prints the total and mean
print("The sum total is equal to: " + str(total))
print("The mean value is equal to: " + str(mean_value))
to see this:
The sum total is equal to: 163
The mean value is equal to: 40.75