MINITAB 5 MICHAEL CUAUTLA
pdf
keyboard_arrow_up
School
University Of Connecticut *
*We aren’t endorsed by this school
Course
1000
Subject
Statistics
Date
Feb 20, 2024
Type
Pages
2
Uploaded by KidIce12726
Assignment 5 Name: Michael Cuautla Section Number: 028D Date: Wed Oct 25, 2023
Please answer all ques,ons using the appropriate version of the dataset as assigned by your TA. Each graph must be labeled with a ,tle, axis labels, and a footnote with your name and sec,on number. Begin with a clear worksheet. 1. In this problem, you will compare the theore,cal probabili,es to experimental probabili,es that you obtain using rela,ve frequencies from a random sample. You will use a coin flipping example since everyone is familiar with it. All of us know that the probability of a head is .5 when a fair coin is flipped. If you flip a coin 10 ,mes, then this is a binomial experiment with n=10 and p=.5. a. First, create the theore,cal probability distribu,on table, as explained above in parts A and B of the lesson. (Please note: In this example, n=10 and p=.5) Print this theore,cal distribu,on in the Session Window (by leaving the Op4onal Storage
field blank) so that you will have an output display of the theore,cal probabili,es for comparison purposes. In the display, no,ce that the theore,cal probability of observing 3 heads in the 10 flips is 0.1172. Your experimental probability of 3 heads in 10 flips should be close to this. b. Next, you could run an experiment in which 200 people flip a coin 10 ,mes each and record the number of heads they observe. You could then create a frequency table by coun,ng up the number of people who flipped 0 Heads, 1 Head, 2 Heads, etc. If you then calculated the rela,ve frequencies, you could compare them to the theore,cal probabili,es printed in your Session Window. Since finding 200 people who would be willing to flip a coin 10 ,mes would be ,me consuming, you will let the computer simulate the experiment by genera,ng 200 random samples of size 10, and storing the number of successes for each sample in one column. First, generate the 200 random samples of size 10. Click on: CALC →
RANDOM DATA →
BINOMIAL Fill in the screen as follows: Generate
200 Rows of Data
Store in column(s)
: C3 Number of Trials
: 10 Probability of Success
: .5 Look at C3. Each of the 200 cells should contain a number between 0 and 10. This represents the number of Heads observed by each person. (Each cell represents a person.) Next, have MINITAB create the frequency table for you.
Click on: STAT →
TABLES →
TALLY INDIVIDUAL VARIABLES Fill in the screen as follows: Variables
: C3 Select: COUNTS
(an X should appear in the box) Select: PERCENTS (an X should appear in the box) A frequency table will appear in the Session Window. Look carefully at the table. Under the heading C3, you would like to see the numbers from 0 to 10. Because your data is random, it is possible that nobody observed 0 Heads or 10 Heads. In this case, the 0 and 10 will not appear under C3. Under the heading Count, you will see the frequencies. These represent the number of people (out of the 200 people) who tossed that number of Heads. Under the heading Percent, you will see the rela,ve frequencies, as percentages. Compare these rela,ve frequencies to the theore,cal probabili,es that you produced earlier in the Session Window. Since this is random
data, each student’s frequency table will be a li‘le different. In the chart below, fill in the theore,cal and experimental probabili,es using the computer output. Be sure to convert the rela,ve frequency percentages to probabili,es by moving the decimal point two places to the leb so that you can make a direct comparison with the theore,cal probabili,es. (
Round all probabili4es to 3 decimal places.) How close are the experimental probabili,es to the theore,cal probabili,es? Write a brief comparison of the theore,cal and experimental probabili,es. For which X values are the probabili,es very close? Where is the biggest difference? How could you change the experiment to improve these es,mates? Theore4cal and experimental probabili4es closely matched, with an exact match in one instance. The probabili4es were similar across all X values, except when X equaled 0 heads and 10 heads, where a 4ny 0.0009% difference emerged. The most significant varia4on was evident when considering 5 heads, with a 4% disparity. To enhance the experiment's reliability, one could consider conduc4ng mul4ple trials or involving a different person in the experimenta4on process.
X
T h e o r e , c a l Probability
Experimental Probability
Difference
0
0.0009
0
0.0009
1
0.009
0.005
0.004
2
0.43
0.04
0.003
3
0.117
0.1
0.017
4
0.2
0.2
0
5
0.24
0.28
-0.04
6
0.205
0.22
-0.007
7
0.11
0.95
0.006
8
0.04
0.5
-0.01
9
0.009
0.1
-0.01
10
0.0009
0
0.0009
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
- Access to all documents
- Unlimited textbook solutions
- 24/7 expert homework help
Related Documents
Related Questions
Please use the given info to answer the subquestion Part B
arrow_forward
What type of graphs( such as bar, histogram, etc) would be best to use to depict the relationship between the following variables? Please state the reason why the chosen graph was selected.
how the number of days in theICU(intensive care unit) differ by renal failure status.
the association between the number of days in the ICU and the number of hours in the operating room.
the association between the number of days in the ICU and the number of hours on the bypass pump?
the association between the number of hours in the operating room and the number of hours on a bypass pump?
the relationship between the number of days in the ICU and gender?
arrow_forward
Describe the three primary charts and graphs used to organize and display data.
arrow_forward
Window
Below are two snapshots of data taken from the covid19.nj.gov website on January 8, 2021.
What information can you take away from these graphs? Can the graphs be compared? What
might be confusing or misleading about the information? What could you do to better present
the information?
arrow_forward
The whole data set will be in the two pictures
arrow_forward
• Open RStudio.
• Open a new R Script.
• Copy and paste the below code in R. (to present your answer for this task, take a screenshot of
your RStudio session, and paste it into your assessment solutions document).
• Run the code, then copy and paste the outputs and the graphs into your assessment solutions
document.
• Copy and paste the code in your assignment and use comments to explain each line of the code.
Note: to get help in R, highlight the code and press F1.
Code to be copied and pasted into an R script in RStudio:
Treatment <- rep (c("Level_1", "Level_2","Level_3"), each=10)
Response <- c(11, 8, 10, 12, 8, 12, 9, 9, 4, 12,
12, 9, 12, 10, 18, 24, 17, 16, 20, 11,
14, 7, 18, 8, 12, 10, 9, 14, 12, 10)
Data Question_3<-data.frame(Treatment, Response)
View(Data_Question 3)
aggregate (Data Question_3$Response, list (Data Question_3$Treatment), mean)
aggregate (Data_Question_3$Response, list (Data Question_3$Treatment), sd)
aggregate (Response Treatment, Data Question 3, function…
arrow_forward
The entirety of the data set will be in the two pictures
arrow_forward
Continue monitoring the process. A second ten days of data have been collected, see table labeled “2nd 10 Days of Monitoring Reservation Processing Time” in the Data File.
Develop Xbar and R charts for the 2nd 10 days of monitoring. Plot the data for the 2nd 10 days on the Xbar and R charts.
Is the reservation process for the 2nd 10 days of monitoring in control? If the control chart indicates an out-of-control process, note which days, the pattern, and whether it is the Xbar or R chart.
Based on the X-bar and R Charts that you developed for the 2nd 10 days of data, is the process in control?
Group of answer choices
No. The X-bar and R Charts are both out of control.
No. The X-bar Chart is in control, but the R Chart is out of control.
No. The R Chart is in control, but the X-bar Chart is out of control.
Yes. The X-bar and R Charts are both in control.
arrow_forward
A data point that is separated from the rest of the points on a graph is called an…
arrow_forward
what is coordinate graphs
arrow_forward
The red blood cell count of a healthy person was measured on each of 15 days. The number recorded is measured in 106 cells per microliter.
5.4 5.2 5.0 5.2 5.55.3 5.4 5.2 5.1 5.35.3 4.9 5.4 5.2 5.2
A. Choose from the 4 choices the most applicable graph to describe the data. Is it linegraph, dotplot, histogram or stem leaf plot? Why?
B. Describe the shape and location of the red blood cell counts justfy your answer.
C. If the person’s red blood cell count is measured today as 57 x 10^6, would you consider this unusual? What conclusions might you draw?
arrow_forward
The r code for side by side boxplot of vitamind v newage and vitamin d v country.
Scatterplot code for relationship between vitamin d level and age.
arrow_forward
I want the step-by-step answer for the following 3 graphs that is below in the image, please help me out with this.
thank you!
arrow_forward
What type of graphs( such as bar, histogram, etc) would be best to use to depict the relationship between the following variables? Please state the reason why the chosen graph was selected.
1. the association between the number of hours in the operating room and the number of hours on a bypass pump?
2. the relationship between the number of days in the ICU and gender?
arrow_forward
Make a graph of microbial growth from each of the data available in the table. Please no reject only make a graph. This data complete. Im needed the just the graphics thank u
Im needed max in 30-40 minutes thank u...
arrow_forward
A survey was given to a group of ACC students. One question asked the students how many years they have lived
in the district. Which of the following graphs is appropriate for summarizing this data? Choose all that apply.
O Bar Chart
O Histogram
O Dotplot
O Pie Chart
arrow_forward
What are the Shifting Graphs?
arrow_forward
SEE MORE QUESTIONS
Recommended textbooks for you

Algebra: Structure And Method, Book 1
Algebra
ISBN:9780395977224
Author:Richard G. Brown, Mary P. Dolciani, Robert H. Sorgenfrey, William L. Cole
Publisher:McDougal Littell

Glencoe Algebra 1, Student Edition, 9780079039897...
Algebra
ISBN:9780079039897
Author:Carter
Publisher:McGraw Hill
Algebra & Trigonometry with Analytic Geometry
Algebra
ISBN:9781133382119
Author:Swokowski
Publisher:Cengage
Related Questions
- Please use the given info to answer the subquestion Part Barrow_forwardWhat type of graphs( such as bar, histogram, etc) would be best to use to depict the relationship between the following variables? Please state the reason why the chosen graph was selected. how the number of days in theICU(intensive care unit) differ by renal failure status. the association between the number of days in the ICU and the number of hours in the operating room. the association between the number of days in the ICU and the number of hours on the bypass pump? the association between the number of hours in the operating room and the number of hours on a bypass pump? the relationship between the number of days in the ICU and gender?arrow_forwardDescribe the three primary charts and graphs used to organize and display data.arrow_forward
- Window Below are two snapshots of data taken from the covid19.nj.gov website on January 8, 2021. What information can you take away from these graphs? Can the graphs be compared? What might be confusing or misleading about the information? What could you do to better present the information?arrow_forwardThe whole data set will be in the two picturesarrow_forward• Open RStudio. • Open a new R Script. • Copy and paste the below code in R. (to present your answer for this task, take a screenshot of your RStudio session, and paste it into your assessment solutions document). • Run the code, then copy and paste the outputs and the graphs into your assessment solutions document. • Copy and paste the code in your assignment and use comments to explain each line of the code. Note: to get help in R, highlight the code and press F1. Code to be copied and pasted into an R script in RStudio: Treatment <- rep (c("Level_1", "Level_2","Level_3"), each=10) Response <- c(11, 8, 10, 12, 8, 12, 9, 9, 4, 12, 12, 9, 12, 10, 18, 24, 17, 16, 20, 11, 14, 7, 18, 8, 12, 10, 9, 14, 12, 10) Data Question_3<-data.frame(Treatment, Response) View(Data_Question 3) aggregate (Data Question_3$Response, list (Data Question_3$Treatment), mean) aggregate (Data_Question_3$Response, list (Data Question_3$Treatment), sd) aggregate (Response Treatment, Data Question 3, function…arrow_forward
- The entirety of the data set will be in the two picturesarrow_forwardContinue monitoring the process. A second ten days of data have been collected, see table labeled “2nd 10 Days of Monitoring Reservation Processing Time” in the Data File. Develop Xbar and R charts for the 2nd 10 days of monitoring. Plot the data for the 2nd 10 days on the Xbar and R charts. Is the reservation process for the 2nd 10 days of monitoring in control? If the control chart indicates an out-of-control process, note which days, the pattern, and whether it is the Xbar or R chart. Based on the X-bar and R Charts that you developed for the 2nd 10 days of data, is the process in control? Group of answer choices No. The X-bar and R Charts are both out of control. No. The X-bar Chart is in control, but the R Chart is out of control. No. The R Chart is in control, but the X-bar Chart is out of control. Yes. The X-bar and R Charts are both in control.arrow_forwardA data point that is separated from the rest of the points on a graph is called an…arrow_forward
- what is coordinate graphsarrow_forwardThe red blood cell count of a healthy person was measured on each of 15 days. The number recorded is measured in 106 cells per microliter. 5.4 5.2 5.0 5.2 5.55.3 5.4 5.2 5.1 5.35.3 4.9 5.4 5.2 5.2 A. Choose from the 4 choices the most applicable graph to describe the data. Is it linegraph, dotplot, histogram or stem leaf plot? Why? B. Describe the shape and location of the red blood cell counts justfy your answer. C. If the person’s red blood cell count is measured today as 57 x 10^6, would you consider this unusual? What conclusions might you draw?arrow_forwardThe r code for side by side boxplot of vitamind v newage and vitamin d v country. Scatterplot code for relationship between vitamin d level and age.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Algebra: Structure And Method, Book 1AlgebraISBN:9780395977224Author:Richard G. Brown, Mary P. Dolciani, Robert H. Sorgenfrey, William L. ColePublisher:McDougal LittellGlencoe Algebra 1, Student Edition, 9780079039897...AlgebraISBN:9780079039897Author:CarterPublisher:McGraw HillAlgebra & Trigonometry with Analytic GeometryAlgebraISBN:9781133382119Author:SwokowskiPublisher:Cengage

Algebra: Structure And Method, Book 1
Algebra
ISBN:9780395977224
Author:Richard G. Brown, Mary P. Dolciani, Robert H. Sorgenfrey, William L. Cole
Publisher:McDougal Littell

Glencoe Algebra 1, Student Edition, 9780079039897...
Algebra
ISBN:9780079039897
Author:Carter
Publisher:McGraw Hill
Algebra & Trigonometry with Analytic Geometry
Algebra
ISBN:9781133382119
Author:Swokowski
Publisher:Cengage