Question

In: Statistics and Probability

Sediment transport in streams. Coarse sediments in a stream that are carried by intermittent contact with...

Sediment transport in streams. Coarse sediments in a stream that are carried by intermittent contact with the streambed by rolling, sliding, and bouncing are called bedload. The rate at which the bedload is transported in a stream can vary dramatically, depending on flow conditions, stream slope, water depth, weight of the sediment, and so on. In a 2007 technical report for the U.S. Department of Agriculture, Forest Service, Rocky Mountain Research Station, regression was used to model bedload transport rate (kilograms per second) as a function of stream discharge rate (cubic meters per second). The data for the study, collected from Hayden Creek in Colorado during snowmelt runoff in the following table.

Answer the following for the variables bedload (dependent variable) and Discharge (independent variable) by using SAS or R (your answer includes the SAS or R code and output).

  1. Make a scatterplot of this data.
  2. Make a residual plot of ε   vs Discharge x.
  3. Make a test of whether the bedload are associated with the Discharge

H0:β1=0       vs    Ha: β1≠0

  1. Report the parameter estimates (the estimates of the intercept and slope) and interpret their values.
  2. Fit the regression line numerically and graphically.
  3. Calculate SSE and S2, then calculate S and interpret its value.
  4. Is Discharge useful in predicating bedload? Why?
  5. What percentage of the variation in bedload is explained by Discharge? Is that high or low?
  6. What is the predicted value for bedload when Discharge is x=0.79239?
  7. Determine how many outliers there are and identify the observation numbers.

For Standard Normal If:

a) Scattered in a random fashion about the horizontal line through the origin

b) For large n, approximately 5% are outside of the interval (2, 2)

c) For small n, approximately 5% are outside of the interval (3, 3)

Obs

Discharge

BedLoad

1

1.03635

0.00373

2

1.31878

0.0118

3

1.12

0.01507

4

1.28595

0.0149

5

1.57864

0.02055

6

1.43772

0.02041

7

1.29477

0.00777

8

1.16407

0.00386

9

1.33357

0.01009

10

1.35399

0.01663

11

1.28252

0.01596

12

1.38463

0.01492

13

1.32336

0.01984

14

1.32336

0.01046

15

1.39484

0.02087

16

0.75154

0.0036

17

0.79239

0.00471

18

0.7107

0.00317

19

0.81281

0.00499

20

0.7107

0.0053

21

0.87408

0.00308

22

0.69028

0.00556

23

0.85365

0.00426

24

0.7107

0.00564

25

0.56775

0.0008

26

0.60859

0.00094

27

0.6939

0.00092

28

0.5612

0.00074

29

0.6478

0.00185

30

0.91584

0.00575

31

0.99158

0.00882

32

1.62547

0.01937

33

1.24061

0.00634

34

1.33107

0.00919

35

1.21859

0.01631

36

1.21859

0.01356

37

1.33107

0.01554

38

1.4495

0.01138

39

1.62547

0.01332

40

1.17524

0.00636

41

1.15391

0.00982

42

1.54858

0.01107

43

0.38707

0.0012

44

1.01107

0.01085

Solutions

Expert Solution

In order to solve this question I used R software.

R codes and output:

Que.a

> d=read.table('bedload.csv',header=TRUE,sep=',')
> head(d)
Obs Discharge BedLoad
1 1 1.03635 0.00373
2 2 1.31878 0.01180
3 3 1.12000 0.01507
4 4 1.28595 0.01490
5 5 1.57864 0.02055
6 6 1.43772 0.02041
> attach(d)
The following objects are masked from d (pos = 3):

BedLoad, Discharge, Obs

> plot(Discharge,BedLoad)

Scatter plot :

> fit=lm(BedLoad~Discharge)
> summary(fit)

Call:
lm(formula = BedLoad ~ Discharge)

Residuals:
Min 1Q Median 3Q Max
-0.0066801 -0.0026549 -0.0003797 0.0024205 0.0068250

Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) -0.007546 0.001830 -4.124 0.000172 ***
Discharge 0.015537 0.001612 9.640 3.32e-12 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

Residual standard error: 0.003495 on 42 degrees of freedom
Multiple R-squared: 0.6887, Adjusted R-squared: 0.6813
F-statistic: 92.93 on 1 and 42 DF, p-value: 3.315e-12

> res=fit$residuals
> plot(Discharge,res)

Que.b

Residual plot:

Que.c

Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) -0.007546 0.001830 -4.124 0.000172 ***
Discharge 0.015537 0.001612 9.640 3.32e-12 ***

We use t test statistic for testing

t = 9.64 and p-value = 0.000

Since p-value is less than 0.05, we reject null hypothesis and conclude that

Que.d

Intercept = -0.007546

Slope = 0.015537

Que.e

Fitted regression equation is

Bedload = -0.007546 + 0.015537 * Discharge

Scatter plot with regression line is,

> plot(Discharge,BedLoad)
> abline(fit)


Related Solutions

Coarse sediments in a stream that are carried by intermittent contact with the streambed by rolling,...
Coarse sediments in a stream that are carried by intermittent contact with the streambed by rolling, sliding, and bouncing are called bedload. The rate at which the bedload is transported in a stream can vary dramatically, depending on flow conditions, stream slope, water depth, weight of the sediment, and so on. In a 2007 technical report for the U.S. Department of Agriculture, Forest Service, Rocky Mountain Research Station, regression was used to model bedload transport rate (kilograms per second) as...
The concentration of copper in the sediments in a particular stream in the Yukon was studied...
The concentration of copper in the sediments in a particular stream in the Yukon was studied using 40 samples. The mean of the samples was found to be 40.0 ppm, with a standard deviation of 16.0 ppm. a) Construct a 95% confidence interval for the true mean level of copper in the stream sediments.               b) Suppose that 70 samples were collected (instead of 40), would the 95% confidence interval widen or tighten? Explain how you know.               c) Suppose...
Two streams are mixed to form a single stream. Only the steady flow in the mixed...
Two streams are mixed to form a single stream. Only the steady flow in the mixed stream is known. A soluble salt is added to one of the original streams at a steady state and samples show the stream to have a 4.76% salt content by weight. Samples of the combined stream show it to be 0.62% salt content by weight. What is the flow rate of the two original streams ?
Dual-Stream Hypothesis of Audition: What are the two-streams and what are their functions? What is their...
Dual-Stream Hypothesis of Audition: What are the two-streams and what are their functions? What is their relative position along the temporal lobe? Be prepared to reason about the two different streams in vignettes of case studies and/or hypothetical experiments.
A mixer is used to mix 3 different streams. Stream A is an acid solution containing...
A mixer is used to mix 3 different streams. Stream A is an acid solution containing HNO3 = 2% weight, H2SO4 = 57% weight. Stream B contains nitric acid solution with composition of 90% weight HNO3. Stream C is a concentrated sulfuric acid solution containing 93% weight H2SO4. The mixture of those 3 streams flown out from the mixer with a flowrate of 1000 kg/hour and composition of: HNO3 = 27% weight, H2SO4 = 60% weight. a) Draw a block...
UNEVEN CASH FLOW STREAM a.)Find the present values of the following cash flow streams at a...
UNEVEN CASH FLOW STREAM a.)Find the present values of the following cash flow streams at a 4% discount rate. Round your answers to the nearest cent. 0 1 2 3 4 5 Stream A $0 $100 $400 $400 $400 $250 Stream B $0 $250 $400 $400 $400 $100 Stream A $ ________ Stream B $ ________ b.)What are the PVs of the streams at a 0% discount rate? Stream A $ ________ Stream B $ ________ *Please show how to...
UNEVEN CASH FLOW STREAM Find the present values of the following cash flow streams at a...
UNEVEN CASH FLOW STREAM Find the present values of the following cash flow streams at a 4% discount rate. Round your answers to the nearest cent. 0 1 2 3 4 5 Stream A $0 $150 $400 $400 $400 $300 Stream B $0 $300 $400 $400 $400 $150 Stream A $   Stream B $   What are the PVs of the streams at a 0% discount rate? Stream A $   Stream B $  
UNEVEN CASH FLOW STREAM Find the present values of the following cash flow streams at a...
UNEVEN CASH FLOW STREAM Find the present values of the following cash flow streams at a 9% discount rate. Round your answers to the nearest cent. 0 1 2 3 4 5 Stream A $0 $150 $400 $400 $400 $300 Stream B $0 $300 $400 $400 $400 $150 Stream A $   Stream B $   What are the PVs of the streams at a 0% discount rate? Stream A $   Stream B $  
Uneven Cash Flow Stream Find the present values of the following cash flow streams. The appropriate...
Uneven Cash Flow Stream Find the present values of the following cash flow streams. The appropriate interest rate is 10%. (Hint: It is fairly easy to work this problem dealing with the individual cash flows. However, if you have a financial calculator, read the section of the manual that describes how to enter cash flows such as the ones in this problem. This will take a little time, but the investment will pay huge dividends throughout the course. Note that,...
Consider two streams of cash flows, A and B. Stream A’s first cash flow is $9,000...
Consider two streams of cash flows, A and B. Stream A’s first cash flow is $9,000 and is received three years from today. Future cash flows in Stream A grow by 3 percent in perpetuity. Stream B’s first cash flow is −$9,900, is received two years from today, and will continue in perpetuity. Assume that the appropriate discount rate is 11 percent.    a. What is the present value of each stream? (A negative amount should be indicated by a...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT