BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
jmoseley
Quartz | Level 8

Title Predictin final exam score from stats anxiety scores, study minutes, and midterm exam scores;

data Predicting final exam scores;

input finalexamscore statsstressacore studyminutes midtermexamscore;

cards;

40 48 41 45

49 49 55 40

71 73 69 69

42 42 52 51

54 49 46 52

45 49 45 41

63 52 66 69

55 58 54 47

46 47 46 39

39 42 35 38

62 63 66 45

52 50 50 55

62 71 65 59

47 41 41 40

53 47 50 52

54 50 41 50

49 53 47 44

53 49 52 49

52 51 61 38

55 69 60 50

;

 

proc corr;

var finalexamscore = statsstressacore studyminutes midtermexamscore;

proc reg;

model finalexamscore = statsstressacore studyminutes midtermexamscore /stb scorr2 p r vif;

plot residual. * predicted.;

output out=res residual=resid predicted=pred;

proc univariate plot;

var resid;

run;

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Am I missing something, isn't the effect size in your parameter estimate table? 

View solution in original post

1 REPLY 1
Reeza
Super User

Am I missing something, isn't the effect size in your parameter estimate table? 

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1033 views
  • 0 likes
  • 2 in conversation