* columbia.txt, chapter 8 appendix; /**************************************************************** COLUMBIA RIVER VELOCITY-DEPTH Data on the velocity (ft/sec) of water versus depth (feet) in a channel were acquired at a station below the Grand Coulee Dam at a distance of 13 feet from the edge of the river. Modeling water velocity in a channel is important when calculating river discharge. (Reference: Savini, J. and Bodhaine, G. L. (1971), Analysis of current meter data at Columbia River gaging stations, Washington and Oregon; USGS Water Supply Paper 1869-F.) ***********************************************************************/ options ls=76; data water; input depth velocity; datalines; 0.7 1.55 2.0 1.11 2.6 1.42 3.3 1.39 4.6 1.39 5.9 1.14 7.3 0.91 8.6 0.59 9.9 0.59 10.6 0.41 11.2 0.22 ; run; proc reg; model velocity = depth; run; quit;