CommencerCommencer gratuitement

Predicting test scores

With the relationship between the hours of study and the scores that students got on a given test, you already got the parameters of a linear model, slope and intercept. With those parameters, let's predict the test score for a student who studies for 10 hours.

For this exercise, the linregress() function has been imported for you from scipy.stats.

Cet exercice fait partie du cours

Foundations of Probability in Python

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Get the predicted test score for given hours of study
score = slope*____ + ____
print('score:', ____)
Modifier et exécuter le code