Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Using Python Program the decision tree detailed below exactly: Use the exact text in the diagram, EXCEPT 100% of your strings need to be lowercase
Using Python Program the decision tree detailed below exactly: Use the exact text in the diagram, EXCEPT 100% of your strings need to be lowercase in this project! . for prompts, make sure they start with the exact text from the diagram, but you should add possible choices after that. For every choice, the user should only enter "1" or "2" to indicate the first choice listed or the second one. This is true even if the possible answers are something like yes vs no, or 2 vs >2. For example, for the first prompt, you use something along these lines: "which kind of test? (1=variable relationship, 2=comparing means)" Make sure the code expects 1 for the left-path and 2 for the right-path. When using the input() function, don't add a prompt to it directly, instead print your prompt using print() and then use input() without any arguments. Stats Decision Tree Which kind of test? Relationships between variables Comparing means Which kind of means? Sample and Population Both Sample Which kind of variables? Population Variance Known? Nominal Interval or Ratio Yes No How are data structured? Do a Z- Test How many Do a Chi- Square Test Do a 1- sample t- test Variables? Independent Paired 2 > 2 Do a Correlation Do a Regression Do an independent samples t-test Do a paired samples t- test
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started