hw05_instructions
pdf
keyboard_arrow_up
School
University of Illinois, Urbana Champaign *
*We aren’t endorsed by this school
Course
425
Subject
Statistics
Date
Feb 20, 2024
Type
Pages
4
Uploaded by SargentCheetahPerson730
STAT 425 — Sections 2UG, 2GR, 3UG, 3GR — Spring 2023
Homework 5
Due: April 17, 11:59 PM (US Central)
Please submit your assignment electronically as a PDF document, using the appropriate interface
on Canvas. Remember to include relevant computer output.
1. The list object
PAC
from R package
chemometrics
contains “GC-retention indices”
(component
y
) along with “molecular descriptors” (component
X
) for 209 “polycyclic
aromatic compounds.” (Note that component
X
has the form of a
matrix
, with rows
corresponding to the compounds and columns to the descriptors.) The goal is to predict the
GC-retention index using the descriptors.
After installing and loading the
chemometrics
package, run the following R code to create a
data frame that will be easier to use:
data(PAC)
PAC.df <- as.data.frame(cbind(y=PAC$y,PAC$X))
(a)
[2 pts] Examine the R
summary
of the following fit:
lm(y ~ ., data=PAC.df)
What is unusual about it? Why did that happen? (You do
not
need to include the R
summary output in your submission.)
(b)
[1 pt] Run the following R code to perform forward selection (by AIC) with up to 60
iterations:
stepPAC <- step(lm(y ~ 1, data=PAC.df), scope=formula(PAC.df),
direction="forward", trace=0, steps=60)
How many predictors were added?
(c)
[1 pt] Plot the observed GC-retention index values versus their predicted values from
the
stepPAC
model.
(d)
[1 pt] Run the following R code to compute 10-fold crossvalidated RMSEP for the
stepPAC
model:
library(boot)
sqrt(cv.glm(PAC.df, glm(formula(stepPAC), data=PAC.df), K=10)$delta[1])
What value do you obtain?
(e)
[1 pt] Using function
pcr
from R package
pls
(which you may need to install and
load), fit principal component regression (PCR) models with up to 60 PCs. Make sure
to use
scale=TRUE
and
validation="CV"
. Show your R code.
1
(f)
[3 pts] Compute and plot (10-fold crossvalidated) RMSEP for the PCR models versus
their number of PCs (up to 60). (Use function
RMSEP
with argument
estimate="CV"
,
then
plot
the object it produces.) How many PCs are in the model with the best
RMSEP? What is your value of RMSEP for that best model?
(g)
[2 pts] Plot the observed GC-retention index values versus their predicted values from
your best PCR model (the one you found in the previous part). Comparing this with
the plot from part (c), which seems to be the better predictor: the forward-selected
model or the best PCR model?
2. In the following, use the
seatpos
data set from R package
faraway
, with
hipcenter
as the
response and all other variables as possible predictors.
(a)
[2 pts] Using function
lm.ridge
from R package
MASS
, fit ridge regression models for
λ
values ranging from 0 to 50. Display a ridge trace plot of the coefficients over that
λ
range. Show your R code.
(b)
[2 pts] For your models, plot the
generalized
crossvalidation (GCV) criterion value
versus the
λ
value (over the
λ
range from the previous part). Approximately which
λ
value minimizes the criterion?
(c)
[2 pts] For the minimizing
λ
from the previous part, display the ridge regression
estimates of the coefficients for the
original
predictors. (Function
coef
returns these
for
all
λ
values used, so you will have to extract the ones for the minimizing
λ
.) Do
any of these estimates
exactly
equal zero?
(d)
[2 pts] Using function
lars
from R package
lars
, fit lasso regression models, also
computing (10-fold crossvalidated) RMSEP values for them. Then plot RMSEP versus
the lasso “index”
s
(which is such that
s
= 0 for the intercept-only model, and
s
= 1
for the least squares solution). Show your R code.
(e)
[2 pts] From the previous part, approximately what value of
s
minimizes RMSEP?
What is that minimum value of RMSEP?
(f)
[2 pts] Using the minimizing
s
from the previous part, display the lasso coefficient
estimates for the predictors. Which predictors are selected?
(g)
[1 pt] By applying
plot
to the output of
lars
(from part (d)), display a kind of lasso
trace plot.
3. The data set in the file named
bullsbears.txt
has the
Height
(inches) and
Weight
(lb) of
players on the Chicago Bulls men’s basketball team (
Team=Bulls
) and the Chicago Bears
American football team (
Team=Bears
) from a previous season. You will fit a
homogeneity-of-regressions (“ANCOVA”) model.
(a)
[2 pts] Fit the regression of
log(Weight)
on
log(Height)
and
Team
. (Make
Team
a
factor variable such that its dummy variable equals 1 for
Bulls
.) Give a summary of
the results. Is
Team
significant?
(b)
[2 pts] Plot the (parallel) regression lines representing the relationship between
log(Weight)
and
log(Height)
for each team, according to your model from the
previous part. (The two lines should be on the
same
plot.)
Label
the lines.
(c)
[2 pts] Fit the regression of
log(Weight)
on
log(Height)
,
Team
,
and
the interaction
between
log(Height)
and
Team
. Give a summary of the results. Is the interaction
significant?
2
(d)
[2 pts] Plot the (
not
parallel) regression lines representing the relationship between
log(Weight)
and
log(Height)
for each team, according to your model from the
previous part that includes an interaction. (The two lines should be on the
same
plot.)
Label
the lines.
4. In a pilot study of treatment for facial acne vulgaris, 10 subjects were instructed to topically
apply, twice daily for 4 weeks, each of two different formulations (#1 and #2) of benzoyl
peroxide 10.0% cream. Each formulation was assigned to one side of the face (left or right),
with the side determined at random for each subject, for the duration of the study. Severity
of acne was monitored from the beginning (Day 0) to the end (Day 28). The following table
lists, for each formulation and each subject, the difference in the number of papules
observed on Day 28 versus on Day 0 (before application) for the side of the subject’s face to
which the formulation was applied.
1
Subject
1
2
3
4
5
6
7
8
9
10
Formulation #1:
0
-
7
1
-
4
3
-
10
1
-
3
-
4
-
7
Formulation #2:
-
6
1
-
9
3
6
5
3
0
-
8
-
4
(a)
[2 pts] Carefully enter this data into R. Display the R object(s) you create.
(b)
[2 pts] Perform an
appropriate
t
-test for whether there is any mean difference in the
papule differences of the two formulations. Display a summary of the results. What do
you conclude?
(c)
[2 pts] Perform an approximate
randomization test
(based on simulating the
t
-statistic
under re-randomization) for whether there is any mean difference. What is your
approximate
p
-value? Show the R code you used to produce it. Does your conclusion
change?
(d)
[2 pts] Display a histogram of the
randomization distribution
of the
t
-statistic, based
on your simulation of the previous part. Show the R code you used to produce it.
5.
[ GRADUATE SECTION ONLY ] Recall Mallows’
C
p
criterion. Let the “full” model (on
which ˆ
σ
2
is based) have
p
full
variables (
p
0
full
< n
), and a residual sum of squares
RSS
full
.
(a)
[2 pts] Show that
C
p
full
=
p
0
full
.
(b)
[3 pts] For
p < p
full
, express
C
p
exclusively in terms of
p
0
,
p
0
full
, and the
F
-statistic, call
it
F
p
, for testing the
p
-variable reduced model versus the “full” model. [ Hint:
RSS
p
= (
RSS
p
-
RSS
full
) +
RSS
full
, and express ˆ
σ
2
using
RSS
full
]
(c)
[3 pts] The
F
ν
1
,ν
2
distribution has expected value
ν
2
/
(
ν
2
-
2) (when
ν
2
>
2). Use this
and your expression from the previous part to derive the expected value of
C
p
for a
correct
p
-variable model (when the expected value exists, and assuming
F
p
really does
have the null
F
distribution).
(d)
[2 pts] Justify the statement that “if all of the predictors that are left out have
coefficients near 0, the expected value of
C
p
is approximately
p
0
.” Under what
condition(s) does it tend to be true?
1
Modified as described from original data source:
ClinicalTrials.gov
, Identifier: NCT00787943, last update
May 1, 2015
3
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
Some comments:
As appropriate, use the function
read.table
or the function
read.csv
to read an external
text data file into R.
Unless otherwise stated, use a 5% level (
α
= 0
.
05) in all tests.
4
Related Documents
Related Questions
Briefly describe the methods of collecting primary data
arrow_forward
PLEASE HELP ME WITH THE TOPIC :
Crime Management: Multiple LR
arrow_forward
File Edit View
Home - myRCC
History
Female
X
A
Male 13
Bookmarks Profiles Tab Window Help
mylearning.suny.edu/d21/le/content/920969/viewContent/25846499/View
Giving a test to a group of students, the grades and gender are summarized below
B.1 HW-23FA STATISTICS (81 x
B C Total
11
18
8 15 16
Total 21 26 34
Submit Question
42
39
81
If one student was chosen at random,
find the probability that the student got a B.
Give your answer as a fraction or decimal.
Question Help: Video
+
A
BLO
O
23
MacBook Air
arrow_forward
District Assessment of Topic / X
K Scruz 00683 - G7M3 Topic A.pdf x
b web.kamihq.com/web/viewer.html?state=%7B"ids"%3A%5B"1Fu-ewnjY8-E2hmPAR-e9hoqlfqx4hF4a"%5D%2C"action"%3..
C
K
E U-46 Links
O History
random - Soundtrap
Imported
homework
I Dashboard | Tinker.
A Canton Middle Sch.
Other bookmarks
E Reading list
Kami Student Edu
O A 7th MATH - St..
SCruz 00683 - G7M3 Topic A.pdf
112%
A Submit
So
* Select
Montserrat
18px
1.5pt :
B
A
A
O x, x2
Le
Dictionary
8.) Gloria simplified this problem: 5- (2) Gx - 1). Are her steps correct? If not, describe
Read Aloud
where she went wrong, and solve it correctly showing all work.
A Markup
5-(2) (금x -3)
Comment
**
T Text Box
18 -
3(1/2x - 3/4)
÷ Equation
3
3
2
1 1/2x -3/4
4
Drawing
she did not multiply 3 x
1/2 correctly
Shapes
Eraser
Add Media
Signature
Page
3 /3
«
Sign out
INTL
i 10:27
arrow_forward
District Assessment of Topic / X
K Scruz 00683 - G7M3 Topic A.pdf x
b web.kamihq.com/web/viewer.html?state=%7B"ids"%3A%5B"1Fu-ewnjY8-E2hmPAR-e9hoqlfqx4hF4a"%5D%2C"action"%3..
C
K
E U-46 Links
O History
random - Soundtrap
Imported
O homework H Dashboard | Tinker.
A Canton Middle Sch.
Other bookmarks
E Reading list
Kami Student Edu
O A 7th MATH - St..
SCruz 00683 - G7M3 Topic A.pdf
112%
Submit
So
* Select
Montserrat
18px
1.5pt :
в I U
A
A
O x, x2
Dictionary
Read Aloud
3. Subtract:
(4х + 7) — (18х — 2)
A Markup
22x - 5
Comment
**
T Text Box
18 -
÷ Equation
Drawing
Shapes
Eraser
4. Write the expression below as a product of two factors.
9m + 15n - 6
Add Media
Signature
Page 1 /3
Sign out
INTL
1 10:28
arrow_forward
File Edit View History
Home - myRCC
Frequency
mylearning.suny.edu/d21/le/content/920969/viewContent/25846458/View
-10
8
n=
Data was collected for a sample of organic snacks. The amount of sugar (in mg) in each snack is
summarized in the histogram below.
6
X
2
Bookmarks Profiles Tab Window Help
A.1 HW-23FA STATISTICS (81 X
160 164 168 172 176 180 184 188
amount of sugar (mg)
Q
What is the sample size for this data set?
Submit Question
Question Help: Video
b Enter your payment details | ba x +
BUN
SEP
15
MacBook Air
arrow_forward
ASSIGNMENT 4
9.84 Grey-Seal Nursing. The average lactation (nursing) period of
all earless seals is 23 days. Grey seals are one of several types of
earless seals. The length of time that a female grey seal nurses her
pup is studied by S. Twiss et al. in the article "Variation in Female
Grey Seal (Halichoerus grypus) Reproductive Performance Corre-
lates to Proactive-Reactive Behavioural Types" (PLOS ONE T7(11):
e49598. doi:10.1371/journal.pone.0049598). A sample of 14 female
grey seals had the following lactation periods, in days.
20.9
21.4
20.2
20.6
23.6
19.6
15.9
15.4
19.5
17.4
21.9
22.3
16.4
At the 5% significance level, do the data provide suficient evidence
to conclude that the mean lactation period of grey seals differs from
23 days? Assume that the population standard deviation is 3.0 days.
(Note: The sum of the data is 274.9 days.)
arrow_forward
Please help!!
From these following topics in CANADA, choose one of the 3, and formulate a research question, in which you could analyze the data.
Sawn wood: Sawn wood, production, deliveries and stocks by species
Weather: Weather data for Hamilton January 2020
Basketball - The Raptors: Statistics with the players
arrow_forward
Determine the type of variation model that best fits the data in the attached image.
arrow_forward
Using the data in the first image can you give me answers to questions in 2nd image(4,5,6).Can you plz atleast explain how to do 5&6 (6 is the main one) plz help......
arrow_forward
This dataset of size n - 51 is for the 50 states and the District of Columbia in the
United States. The variables are
- year 2002 birth rate per 1000 females 15 to 17 years old and
z- poverty rate (the percent of the state's population living in households with in-
comes below the federally defined poverty level)
i- 13.1
- 22.3
R- 51,
Su - E(-2) - 914.7
S, - E( -2)( - 6) - 1, 256.2
Su - E(m - M) - 3, 249
SSE - E(w - - 1, 509.6
1. Find A. A and r.
2. Write the fitted linear regression model for ý, in terms of z, A, and A- For A
and , use the values you obtained in problem 1.
3. Interpret the slope of the least squares line based on the context.
4. Find SST, SE and SSR.
5. Find R* and .
6. Complete a chart for ANOVA
df
MS
pvalue
Source
Regression
Error
Total
7. Complete a chart for Parameter Estimates.
t-value
pvalue
Parameter
Intercept
Slope
Estimate
S.e.
8. What is the residual e, for the observation (.) - (20.1,31.5)?
9. What is the conclusion for the test Ha : -0 vs Ho : +0 with a -…
arrow_forward
Excel Exercise Week 5 Chapter 7 workbook.
Please upload your answers as an excel file with properly labeled answers. Please answer in excel only.
Data are collected in a clinical trial evaluating a new compound designed to improve wound healing in trauma patients. The new compound is compared against a placebo after treatment for 5 days with the new compound or placebo, the extent of wound healing is measured and the data are shown in table 7-6. Is there a difference in the extent of wound healing by treatment? (hint: are treatment and the percent wound healing independent?) Run the appropriate test at a 5% level of significance.
Percent Wound Healing
Treatment 0-25% 26-50% 31-75% 76-100%
New Compound (N=125) 15 37 32 41
Placebo(N=125) 36 45 34 10
Table 7-6
arrow_forward
This data type data is non-numbers, OR numbers that do not represent quantities.
arrow_forward
Part 1 of 4
Does the length of a surgery patient's stay in the hospital depend on the length of time the
operation took? The table below gives the operative time (in hours) and the length of the hospital
stay (in days) for 10 patients. (Comma separated lists of the data are also provided below the table
to ease in copying the data to R.)
Operative Time (x)
Length of Hospital Stay (y)
13
13
12
12
6.
14
5
17
4
12
3.
12
7
15
7
x: 5, 5, 5, 2, 6, 5, 4, 3, 7, 3
y: 13, 13, 12, 12, 14, 17, 12, 12, 15, 7
Conduct a hypothesis test with a 5% level of significance to determine whether or not the operative
time and the length of a patient's hospital stay are correlated.
Step 1: State the null and alternative hypotheses.
Ha:p #v 0
v test.)
(So we will be performing a two-tailed
Part 2 of 4
arrow_forward
Classification of Data
Identify the individuals and give the variables under the following:
1.
You want to study about the people who climbed Mt. Everest.
2.
The Department of Agriculture wishes to conduct a study about the pineapples in Tagaytay.
arrow_forward
How to determine the number of observation in the model?
arrow_forward
The data corresponds to a study that found that the number of stumps from trees felled by beavers predicts the abundance of beetle larvae.
Stumps
Beetle larvae
2
10
2
30
1
12
3
24
3
36
4
40
3
43
1
11
2
27
5
56
1
18
3
40
2
25
1
8
2
21
2
14
1
16
1
6
4
54
1
9
2
13
1
14
4
50
Click to download the data in your preferred format.
CSV Excel JMP Mac-Text Minitab14-18 Minitab18+ PC-Text R SPSS TI CrunchIt!
Is there good evidence that more beetle larvae clusters are present when beavers have left more tree stumps? Estimate how many more clusters accompany each additional stump, with 95% confidence.
SOLVE: Use the software of your choice to make a scatterplot of the data.
There is a positive non‑linear relationship.
There is a negative non‑linear relationship.
There is a positive linear relationship.
There is a negative linear relationship.
Calculate the intercept ? , and…
arrow_forward
Calculate the best (most complex/sophisticated/stable) measure of central tendency allowed for the following data. The variable is favorite month (Where January = 1, February = 2, etc.) Explain.
3, 9, 9, 4, 2, 7, 1
arrow_forward
Please help me answer this question in detail
arrow_forward
The picture for the dataset for AIDS cases below include the numbers of cases of AIDS in Australia by date of diagnosis for successive 3-month periods from 1984 to 1988. (Data from National Centre for HIV Epidemiology and Clinical Research, 1994.)
Answer parts 1, 2, and 3 below. Please explain with detail.
1.) Identify the type and scale of each variable (measurement)
2.) Identify the primary outcome of interest (Y)
3.) Identify the factors that affect the value of Y (X)
arrow_forward
Describe the relationship between the variables in terms of direction, form and strength.
arrow_forward
What does MS between reflects?
arrow_forward
Information for questions 4
•
•
Please Download "wages" from Canvas (the link to
this dataset is right below the HWA1 questions - it is
a Microsoft excel worksheet) and store it in your
favorite folder.
It contains 797 observations and 16 variables. The
"state" variable gives the names of the states
involved in this dataset.
• You need to have excel on your computer to open
this dataset.
i. You should use File > Import > Excel Spreadsheet
etc. as done in class 3 convert this file into a
Stata dataset. Once you are done, write the final
STATA code that makes the transformation of an
excel file to a STATA file possible.
ii. Write a code that will close the log file that has
been open since Question 1 part ii.
arrow_forward
A sales manager wants to examine the relationship between the number of daily customers (x) and the revenue generated (y). For this purpose, he made observations in a randomly chosen 6 days for a store and observed the number of daily customers and the revenue (1000 TL). The personally created data set for the x and y variables is included in the attached “Homework data” file. Using the data set defined on your behalf;
x1 x2 x3 x4 x5 x6 y1 y2 y3 y4 y5 y6 sb1
Burak data 74 86 96 105 110 124 290 307 331 406 421 481 0.491
d) Establish and interpret the 95% confidence interval for β1.
arrow_forward
dear sir mam how do u create a steam and leaf data plot
arrow_forward
You may need to use the appropriate technology to answer this question.
An automobile dealer conducted a test to determine if the time in minutes needed to complete a minor engine tune-up depends on whether a computerized engine analyzer or an electronic analyzer is used. Because tune-up time varies among compact, intermediate, and full-sized cars, the three types of cars were used as blocks in the experiment. The data obtained follow.
Analyzer
computerized
electronic
Car
compact
50
41
Intermediate
56
45
Full Sized
62
46
Use ? = 0.05 to test for any significant differences.
State the null and alternative hypotheses.
H0: ?Computerized = ?ElectronicHa: ?Computerized ≠ ?ElectronicH0: ?Computerized ≠ ?ElectronicHa: ?Computerized = ?Electronic H0: ?Computerized = ?Electronic = ?Compact = ?Intermediate = ?Full-sizedHa: Not all the population means are equal.H0: ?Compact = ?Intermediate = ?Full-sizedHa: ?Compact ≠ ?Intermediate ≠ ?Full-sizedH0:…
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
SEE MORE QUESTIONS
Recommended textbooks for you
![Text book image](https://www.bartleby.com/isbn_cover_images/9781119256830/9781119256830_smallCoverImage.gif)
MATLAB: An Introduction with Applications
Statistics
ISBN:9781119256830
Author:Amos Gilat
Publisher:John Wiley & Sons Inc
![Text book image](https://www.bartleby.com/isbn_cover_images/9781305251809/9781305251809_smallCoverImage.gif)
Probability and Statistics for Engineering and th...
Statistics
ISBN:9781305251809
Author:Jay L. Devore
Publisher:Cengage Learning
![Text book image](https://www.bartleby.com/isbn_cover_images/9781305504912/9781305504912_smallCoverImage.gif)
Statistics for The Behavioral Sciences (MindTap C...
Statistics
ISBN:9781305504912
Author:Frederick J Gravetter, Larry B. Wallnau
Publisher:Cengage Learning
![Text book image](https://www.bartleby.com/isbn_cover_images/9780134683416/9780134683416_smallCoverImage.gif)
Elementary Statistics: Picturing the World (7th E...
Statistics
ISBN:9780134683416
Author:Ron Larson, Betsy Farber
Publisher:PEARSON
![Text book image](https://www.bartleby.com/isbn_cover_images/9781319042578/9781319042578_smallCoverImage.gif)
The Basic Practice of Statistics
Statistics
ISBN:9781319042578
Author:David S. Moore, William I. Notz, Michael A. Fligner
Publisher:W. H. Freeman
![Text book image](https://www.bartleby.com/isbn_cover_images/9781319013387/9781319013387_smallCoverImage.gif)
Introduction to the Practice of Statistics
Statistics
ISBN:9781319013387
Author:David S. Moore, George P. McCabe, Bruce A. Craig
Publisher:W. H. Freeman
Related Questions
- Briefly describe the methods of collecting primary dataarrow_forwardPLEASE HELP ME WITH THE TOPIC : Crime Management: Multiple LRarrow_forwardFile Edit View Home - myRCC History Female X A Male 13 Bookmarks Profiles Tab Window Help mylearning.suny.edu/d21/le/content/920969/viewContent/25846499/View Giving a test to a group of students, the grades and gender are summarized below B.1 HW-23FA STATISTICS (81 x B C Total 11 18 8 15 16 Total 21 26 34 Submit Question 42 39 81 If one student was chosen at random, find the probability that the student got a B. Give your answer as a fraction or decimal. Question Help: Video + A BLO O 23 MacBook Airarrow_forward
- District Assessment of Topic / X K Scruz 00683 - G7M3 Topic A.pdf x b web.kamihq.com/web/viewer.html?state=%7B"ids"%3A%5B"1Fu-ewnjY8-E2hmPAR-e9hoqlfqx4hF4a"%5D%2C"action"%3.. C K E U-46 Links O History random - Soundtrap Imported homework I Dashboard | Tinker. A Canton Middle Sch. Other bookmarks E Reading list Kami Student Edu O A 7th MATH - St.. SCruz 00683 - G7M3 Topic A.pdf 112% A Submit So * Select Montserrat 18px 1.5pt : B A A O x, x2 Le Dictionary 8.) Gloria simplified this problem: 5- (2) Gx - 1). Are her steps correct? If not, describe Read Aloud where she went wrong, and solve it correctly showing all work. A Markup 5-(2) (금x -3) Comment ** T Text Box 18 - 3(1/2x - 3/4) ÷ Equation 3 3 2 1 1/2x -3/4 4 Drawing she did not multiply 3 x 1/2 correctly Shapes Eraser Add Media Signature Page 3 /3 « Sign out INTL i 10:27arrow_forwardDistrict Assessment of Topic / X K Scruz 00683 - G7M3 Topic A.pdf x b web.kamihq.com/web/viewer.html?state=%7B"ids"%3A%5B"1Fu-ewnjY8-E2hmPAR-e9hoqlfqx4hF4a"%5D%2C"action"%3.. C K E U-46 Links O History random - Soundtrap Imported O homework H Dashboard | Tinker. A Canton Middle Sch. Other bookmarks E Reading list Kami Student Edu O A 7th MATH - St.. SCruz 00683 - G7M3 Topic A.pdf 112% Submit So * Select Montserrat 18px 1.5pt : в I U A A O x, x2 Dictionary Read Aloud 3. Subtract: (4х + 7) — (18х — 2) A Markup 22x - 5 Comment ** T Text Box 18 - ÷ Equation Drawing Shapes Eraser 4. Write the expression below as a product of two factors. 9m + 15n - 6 Add Media Signature Page 1 /3 Sign out INTL 1 10:28arrow_forwardFile Edit View History Home - myRCC Frequency mylearning.suny.edu/d21/le/content/920969/viewContent/25846458/View -10 8 n= Data was collected for a sample of organic snacks. The amount of sugar (in mg) in each snack is summarized in the histogram below. 6 X 2 Bookmarks Profiles Tab Window Help A.1 HW-23FA STATISTICS (81 X 160 164 168 172 176 180 184 188 amount of sugar (mg) Q What is the sample size for this data set? Submit Question Question Help: Video b Enter your payment details | ba x + BUN SEP 15 MacBook Airarrow_forward
- ASSIGNMENT 4 9.84 Grey-Seal Nursing. The average lactation (nursing) period of all earless seals is 23 days. Grey seals are one of several types of earless seals. The length of time that a female grey seal nurses her pup is studied by S. Twiss et al. in the article "Variation in Female Grey Seal (Halichoerus grypus) Reproductive Performance Corre- lates to Proactive-Reactive Behavioural Types" (PLOS ONE T7(11): e49598. doi:10.1371/journal.pone.0049598). A sample of 14 female grey seals had the following lactation periods, in days. 20.9 21.4 20.2 20.6 23.6 19.6 15.9 15.4 19.5 17.4 21.9 22.3 16.4 At the 5% significance level, do the data provide suficient evidence to conclude that the mean lactation period of grey seals differs from 23 days? Assume that the population standard deviation is 3.0 days. (Note: The sum of the data is 274.9 days.)arrow_forwardPlease help!! From these following topics in CANADA, choose one of the 3, and formulate a research question, in which you could analyze the data. Sawn wood: Sawn wood, production, deliveries and stocks by species Weather: Weather data for Hamilton January 2020 Basketball - The Raptors: Statistics with the playersarrow_forwardDetermine the type of variation model that best fits the data in the attached image.arrow_forward
- Using the data in the first image can you give me answers to questions in 2nd image(4,5,6).Can you plz atleast explain how to do 5&6 (6 is the main one) plz help......arrow_forwardThis dataset of size n - 51 is for the 50 states and the District of Columbia in the United States. The variables are - year 2002 birth rate per 1000 females 15 to 17 years old and z- poverty rate (the percent of the state's population living in households with in- comes below the federally defined poverty level) i- 13.1 - 22.3 R- 51, Su - E(-2) - 914.7 S, - E( -2)( - 6) - 1, 256.2 Su - E(m - M) - 3, 249 SSE - E(w - - 1, 509.6 1. Find A. A and r. 2. Write the fitted linear regression model for ý, in terms of z, A, and A- For A and , use the values you obtained in problem 1. 3. Interpret the slope of the least squares line based on the context. 4. Find SST, SE and SSR. 5. Find R* and . 6. Complete a chart for ANOVA df MS pvalue Source Regression Error Total 7. Complete a chart for Parameter Estimates. t-value pvalue Parameter Intercept Slope Estimate S.e. 8. What is the residual e, for the observation (.) - (20.1,31.5)? 9. What is the conclusion for the test Ha : -0 vs Ho : +0 with a -…arrow_forwardExcel Exercise Week 5 Chapter 7 workbook. Please upload your answers as an excel file with properly labeled answers. Please answer in excel only. Data are collected in a clinical trial evaluating a new compound designed to improve wound healing in trauma patients. The new compound is compared against a placebo after treatment for 5 days with the new compound or placebo, the extent of wound healing is measured and the data are shown in table 7-6. Is there a difference in the extent of wound healing by treatment? (hint: are treatment and the percent wound healing independent?) Run the appropriate test at a 5% level of significance. Percent Wound Healing Treatment 0-25% 26-50% 31-75% 76-100% New Compound (N=125) 15 37 32 41 Placebo(N=125) 36 45 34 10 Table 7-6arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- MATLAB: An Introduction with ApplicationsStatisticsISBN:9781119256830Author:Amos GilatPublisher:John Wiley & Sons IncProbability and Statistics for Engineering and th...StatisticsISBN:9781305251809Author:Jay L. DevorePublisher:Cengage LearningStatistics for The Behavioral Sciences (MindTap C...StatisticsISBN:9781305504912Author:Frederick J Gravetter, Larry B. WallnauPublisher:Cengage Learning
- Elementary Statistics: Picturing the World (7th E...StatisticsISBN:9780134683416Author:Ron Larson, Betsy FarberPublisher:PEARSONThe Basic Practice of StatisticsStatisticsISBN:9781319042578Author:David S. Moore, William I. Notz, Michael A. FlignerPublisher:W. H. FreemanIntroduction to the Practice of StatisticsStatisticsISBN:9781319013387Author:David S. Moore, George P. McCabe, Bruce A. CraigPublisher:W. H. Freeman
![Text book image](https://www.bartleby.com/isbn_cover_images/9781119256830/9781119256830_smallCoverImage.gif)
MATLAB: An Introduction with Applications
Statistics
ISBN:9781119256830
Author:Amos Gilat
Publisher:John Wiley & Sons Inc
![Text book image](https://www.bartleby.com/isbn_cover_images/9781305251809/9781305251809_smallCoverImage.gif)
Probability and Statistics for Engineering and th...
Statistics
ISBN:9781305251809
Author:Jay L. Devore
Publisher:Cengage Learning
![Text book image](https://www.bartleby.com/isbn_cover_images/9781305504912/9781305504912_smallCoverImage.gif)
Statistics for The Behavioral Sciences (MindTap C...
Statistics
ISBN:9781305504912
Author:Frederick J Gravetter, Larry B. Wallnau
Publisher:Cengage Learning
![Text book image](https://www.bartleby.com/isbn_cover_images/9780134683416/9780134683416_smallCoverImage.gif)
Elementary Statistics: Picturing the World (7th E...
Statistics
ISBN:9780134683416
Author:Ron Larson, Betsy Farber
Publisher:PEARSON
![Text book image](https://www.bartleby.com/isbn_cover_images/9781319042578/9781319042578_smallCoverImage.gif)
The Basic Practice of Statistics
Statistics
ISBN:9781319042578
Author:David S. Moore, William I. Notz, Michael A. Fligner
Publisher:W. H. Freeman
![Text book image](https://www.bartleby.com/isbn_cover_images/9781319013387/9781319013387_smallCoverImage.gif)
Introduction to the Practice of Statistics
Statistics
ISBN:9781319013387
Author:David S. Moore, George P. McCabe, Bruce A. Craig
Publisher:W. H. Freeman