Tags | technical-assessment |
Hard Prerequisites | |
IMPORTANT: Please review these prerequisites, they include important information that will help you with this content. | |
|
On Tilde you’ll notice that this card is asking for a link submission. Please don’t worry about submitting a link. You will be assessed according to TOPIC: Introduction to live assessments .
For each of the concepts covered below, the learner should know how to do the calculations by hand. If the learner only knows how to do this work using data science tooling (e.g. pandas) then they won’t be in a good position to apply the tools correctly or reason about their output.
Given a list of numbers, the learner should be able to calculate the mean:
For example, the average of [87, 94, 78, 77, 85, 86]
is 84.5.
Given a list of numbers the learner should be able to calculate the median. Make sure to check that they know how to handle:
[87, 94, 78, 77, 85, 86]
[87, 94, 77, 85, 86]
[30,2,12,1,8]
Given a list of numbers, the learner should be able to calculate the mode.
Example 1: [2,3,4,2]
Example 2: [2,3,4,2,3]
IQR
Given a list of numbers, the learner should be able to calculate the 1st, 2nd and 3rd quartile.
Make sure to check that they know how to handle:
[87, 94, 78, 77, 85, 86]
[87, 94, 77, 85, 86]
[30,2,12,1,8]
The learner should know:
Show the learner some scatter plots and ask them to tell you about the correlation of the various plots.