Question

Hi, I was looking for help with setting up statistics problems in SPSS. I don't know how to enter the information correctly into SPSS to run the analysis. This is for a MANOVA analysis. I don't know how to input or code the data to enter it correctly into SPSS.60 3,973 2. A researcher is interested in the impact of a dietary intervention and/or exercise intervention on weight loss and cholesterol level. Study participants are randomly assigned to receive the dietary intervention and/or the exercise intervention. The data are given in the following table. Use MANOVA to evaluate the impact of the two interventions on the two outcomes, and determine whether there is interaction effect. an ID Diet Exercise Pounds Lost Cholesterol 0 96 126 166 168 173 178 190 194 0 4 0 is for a MANOVA and statement of results.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

I have not SPSS but I do in R

y1=rep(0,8)
y2=rep(0,8)
y3=c(1,4,1,2,4,3,6,4)
y4=c(96,126,166,168,173,178,190,194)
fit=manova(cbind(y3,y4)~y4)
fit

manova(cbind(y3, y4) ~ y4)

Terms:
                      y4 Residuals
resp 1             5.572    15.303
resp 2          7885.875     0.000
Deg. of Freedom        1         6

Residual standard errors: 1.597012 7.536444e-15
Estimated effects may be unbalanced

Add a comment
Know the answer?
Add Answer to:
Hi, I was looking for help with setting up statistics problems in SPSS. I don't know...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Im using SPSS to test whether the researchers’ predictions are true and to determine the proportion...

    Im using SPSS to test whether the researchers’ predictions are true and to determine the proportion of cholesterol concentration that is explained by time watching TV. but I dont know what test to run. please help DATA is below Case Number 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39...

  • Studies have shown that exercising can help prevent heart disease. Within reasonable limits, the more you...

    Studies have shown that exercising can help prevent heart disease. Within reasonable limits, the more you exercise, the less risk you have of suffering from heart disease. One way in which exercise reduces your risk is by reducing serum cholesterol. The more you exercise, the lower your cholesterol concentration. It has recently been shown that the amount of time you spend watching TV, an indicator of a sedentary lifestyle, might be a good predictor of heart disease; that is, the...

  • i'm workimg on a careplan and i need help. i don't know what this Roy adaption...

    i'm workimg on a careplan and i need help. i don't know what this Roy adaption model is. can someone please help me? HELENE FULD COLLEGE OF NURSING CRITERIA FOR EVALUATION OF NURSING CARE PLAN NUR 221 ASSESSMENT Pole poids Actual points d at of 1. Cabe 2. Uspor include e pay and environmental tervisection, auto plation, and person D hes 3. a t in prima including wojective and objective data history, cum DIAGNOSIS Posle points Actual points Criteria Incorporate...

  • Accounting Help. Thanks! I don't know what I'm doing wrong, please help me find the correct...

    Accounting Help. Thanks! I don't know what I'm doing wrong, please help me find the correct answers for everything marked wrong Exercise 6-4 * Your answer is incorrect. Try again. Comfi Airways, Inc., a small two-plane passenger airline, has asked for your assistance in some basic analysis of its operations. Both planes seat 10 passengers each, and they fly commuters from Comfi's base airport to the major city in the state, Metropolis. Each month 40 round-trip flights are made. Shown...

  • I was wondering if you could help me with my statistics final project. I just don't know how to start a hypothesis!...

    I was wondering if you could help me with my statistics final project. I just don't know how to start a hypothesis! At least please help me form a topic and hypothesis and just briefly guide me how to do. Thank you every much!! STAT 200 Final Project Objective: The final project gives the student an opportunity to use their statistical knowledge to research and compile a report based on an application of personal interest. Resources: You may find information...

  • Can someone help me find 3a, b, c and 4b? I don't know how to do...

    Can someone help me find 3a, b, c and 4b? I don't know how to do these. ? ×V-Lectures-Spring 2018-STX / My Lectures-Spring 2018-Mc Testing: introduction x Welcome to Chemistry 102ALON-CAPA PreLab X New Tab Amy c secure https: access3.lon-capaillinois.edu/res u uc/dmills CHEM103/NewLabs/SolubilityConstant PreLab problem?symb-uiu0%2fdmills%2fCHEM103%2f New Labs%2tSolubilityConstant. ? 1. The balanced equation for the dissolution of solid Ca(OH)2 in water is: Ca (OH)2(s)Ca2+(aq) + 20H (aq) Fill in the following blanks to give the correct Ksp expression for Ca(OH)2 (note:...

  • I need help with research critique summary of this below article in APA format and in...

    I need help with research critique summary of this below article in APA format and in text citation and the reference en/poni%20perception%20article.pdf EATING DISORDERS 2018, VOL. 26, NO. 2, 107-126 https://doi.org/10.1080/10640266,2017.1318624 Routledge Taylor & Francis Group PREVENTION SERIES Check to Perceptions of disordered eating and associated help seeking in young women Annamaria J. McAndrew and Rosanne Menna Department of Psychology, University of Windsor, Windsor, Ontario, Canada ABSTRACT Disordered eating is common among young women, but rates of help-seeking are remarkably...

  • I need help understanding what I need to do to complete this spreadsheet (steps on how...

    I need help understanding what I need to do to complete this spreadsheet (steps on how to start it) in Excel, thank you! Spreadsheet Assignment 2 Riesk and Return Historical Data NSTRUCTIONS listorical price data are obtained for Stocks X, Y, Z. To erform the required analysis, as demonstrated in the preadsheet modeling video, first calculate the rates f return for each stock. Then use the RETURNS data not price) to perform the required analysis. Please be ure to watch...

  • so i have my c++ code and ive been working on this for hours but i...

    so i have my c++ code and ive been working on this for hours but i cant get it to run im not allowed to use arrays. im not sure how to fix it thank you for the help our job is to write a menu driven program that can convert to display Morse Code ere is the menu the program should display Menu Alphabet Initials N-Numbers - Punctuations S = User Sentence Q- Quit Enter command the user chooses...

  • I have written my code for an employee management system that stores Employee class objects into...

    I have written my code for an employee management system that stores Employee class objects into a vector, I am getting no errors until I try and compile, I am getting the error: C2679 binary '==': no operator found which takes a right-hand operand of type 'const std::string' (or there is no acceptable conversion). But I am not sure why any help would be great, Thank you! 1 2 3 4 5 6 7 8 9 10 11 12 13...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT