Question

In: Statistics and Probability

species massx deesY Northern pygmy-owl 0٫07 3٫95 Saw-whet owl 0٫08 4٫08 American kestrel 0٫12 2٫75 Merlin...

species massx deesY
Northern pygmy-owl 0٫07 3٫95
Saw-whet owl 0٫08 4٫08
American kestrel 0٫12 2٫75
Merlin 0٫19 3٫03
Short-eared owl 0٫35 2٫27
Coopers hawk 0٫45 3٫16
Prairie falcon 0٫72 2٫19
Peregrine falcon 0٫72 2٫8
Great horned owl 1٫4 2٫45
Rough-legged hawk 0٫99 1٫33
Gyrfalcon 1٫4 2٫24
Red-tailed hawk 1٫08 2٫56
Great gray owl 1٫08 2٫06

You will be testing a hypothesis for each dataset, and that test can be run using SPSS, JMP, or R. It is up to you to figure out how to test each hypothesis in whichever program you are using.​

a) Using the Chickadee data, test the hypothesis that predator mass influences the number of ‘dees’ produced by Chickadees. Copy and paste the resulting statistical test below.

b) Create a figure showing the relationship between the number of dees and predator mass. Include the data points, the regression line, and a 95% confidence interval of the slope.

c) What do you conclude? Be sure to include the statistical test and the r2 value in your conclusion and interpretation of the results.

Solutions

Expert Solution

# R-code

x<-c(0.07,0.08,0.12,0.19,0.35,0.45,0.72,0.72,1.4,0.99,1.4,1.08,1.08)
y<-c(3.95,4.08,2.75,3.03,2.27,3.26,2.19,2.8,2.45,1.33,2.24,2.56,2.06)

cor.test(x,y)

model<-lm(y~x)
summary(model)

##### Output ########

### Correlation coefficient

Pearson's product-moment correlation

data: x and y
t = -3.0485, df = 11, p-value = 0.01108
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
-0.8942685 -0.2004990
sample estimates:
cor
-0.6767251

The correlation is significant, implying that the predator mass significantly
influence the number of dees and the correlation is negative means the impact
is inverse between the two.

### Regression of y on x

Call:
lm(formula = y ~ x)

Residuals:
Min 1Q Median 3Q Max
-1.0206 -0.4429 0.1671 0.3448 0.7779

Coefficients:
Estimate Std. Error t value Pr(>|t|)   
(Intercept) 3.3857 0.2799 12.097 1.07e-07 ***
x -1.0456 0.3430 -3.049 0.0111 *

The regression parameter is significant as described above for the correlation
coefficient.

#############

### R-code for part (b)

model$coef

##> model$coef
##(Intercept) x
## 3.385748 -1.045633

A= 3.385748
B= -1.045633


confint(model)[2,]
##> confint(model)[2,]
## 2.5 % 97.5 %
##-1.8005590 -0.2907064


B_L= -1.8005590
B_U= -0.2907064

plot(x,y,type="p",xlim=c(0,1.5),ylim=c(1,5),main=c("Figure showing true value, predicted value \n in red and CI for slope in green color"))
par(new=TRUE)
plot(x,model$fitted,type="p",lwd=0.1,col="red",xlim=c(0,1.5),ylim=c(1,5),xlab=NA,ylab=NA)
par(new=TRUE)
plot(x,model$fitted,type="l",lwd=0.1,col="red",xlim=c(0,1.5),ylim=c(1,5),xlab=NA,ylab=NA)
par(new=TRUE)
plot(x, (A+B_L*x),type="l",col="green",xlim=c(0,1.5),ylim=c(1,5),xlab=NA,ylab=NA)
par(new=TRUE)
plot(x, (A+B_U*x),type="l",col="green",xlim=c(0,1.5),ylim=c(1,5),xlab=NA,ylab=NA)


###### Interpretation #########3

The regression is significant since the p-value is 0.01108 (<0.05) at 5% level of significance.
Also, the covariate predator mass has significant effect on the response and the impact is
negative. The R^2 value is 0.458, which is not so high, imply that the model can explain
45.8% variability contained in the responses.


Related Solutions

Hi All, n order to protect the northern spotted owl (Strix occidentalis caurina) population, logging was...
Hi All, n order to protect the northern spotted owl (Strix occidentalis caurina) population, logging was greatly reduced in 1994, even though it was projected to cause the loss of over 30,000 jobs in the rural communities of the Pacific Northwest. After the plan was implemented, jobs were lost (although there is some debate as to whether the recovery plan was wholly responsible) but the owl population continued to decline. Based on the information provided, please answer the following questions:...
How did the American revolution impact slavery in the northern and southern colonies?
How did the American revolution impact slavery in the northern and southern colonies?
Wolves in the northern Rockies were protected as a threatened species until very recently. The last...
Wolves in the northern Rockies were protected as a threatened species until very recently. The last few years they were legally hunted in MT and ID. a. Why are people hunting wolves? b. Try to come up with one possible benefit of wolf hunting and one possible negative consequence. c. Do you agree or disagree with wolf hunting? Explain your reasoning.
If you saw the movie “Heist, Who Stole the American Dream” and please provide a summary...
If you saw the movie “Heist, Who Stole the American Dream” and please provide a summary essay of the movie and the economic issues it addresses. Discuss your own opinions and draw your own conclusions about the outcome of the movie.
The fitness for a particular species of South American bats is determined by a single gene...
The fitness for a particular species of South American bats is determined by a single gene locus with two segregating alleles, (W) and (w), that determines echo-location ability. The dominant allele W causes normal echo-location, whereas the recessive allele w impairs echo-location ability. In the large bat population that you are studying, you determine initial frequencies of the W and w alleles to be 0.6 (p) and 0.4 (q), respectively. If the genotypes are in Hardy–Weinberg equilibrium on fertilization, and...
The fitness for a particular species of South American bats is determined by a single gene...
The fitness for a particular species of South American bats is determined by a single gene locus with two segregating alleles, (W) and (w), that determines echo-location ability. The dominant allele W causes normal echo-location, whereas the recessive allele w impairs echo-location ability. In the large bat population that you are studying, you determine initial frequencies of the W and w alleles to be 0.6 (p) and 0.4 (q), respectively. If the genotypes are in Hardy–Weinberg equilibrium on fertilization, and...
an owl m=4.72kg slides down a semi-circular ramp r=7.5m. the owl starts at the top ramp...
an owl m=4.72kg slides down a semi-circular ramp r=7.5m. the owl starts at the top ramp at rest. when the owl is at an angle 31.9. what is the normal force exerted by the owl.
Fox Co. bought 1,000 shares of Owl Co. common stock, after which Owl had 10,000 shares...
Fox Co. bought 1,000 shares of Owl Co. common stock, after which Owl had 10,000 shares authorized, 9,000 shares issued, and 8,000 shares outstanding. Fox expects to hold this stock for at least 9 months. When could Fox report a gain on its income statement? When Owl reports net income When Fox sells Owl common stock When Owl declares common stock dividends When the market price of Owl common stock increases
The blue catfish is the largest species of North American catfish. The current world record stands...
The blue catfish is the largest species of North American catfish. The current world record stands at 134 pounds, which was caught in the John H Kerr Reservoir. The average weight of a blue catfish is between 20 to 40 pounds. Given that the largest blue catfish ever caught was at the John H Kerr reservoir, you believe that the mean weight of the fish in this reservoir is greater than 40 pounds. Use the data below which represents the...
3. What factors led to the urban crisis after World War II throughout northern American cities?...
3. What factors led to the urban crisis after World War II throughout northern American cities? How did cities decline? How did urban residents respond to the crisis? ESSAY QUESTION PLEASE ANSWER FULLY
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT