6 Pages

fishgrowth

Course: STAT 8053, Fall 2008
School: Minnesota
Rating:
 
 
 
 
 

Word Count: 1692

Document Preview

Effects Mixed Models for Fish Growth Sanford Weisberg, sandy@stat.umn.edu October 18, 2008 Much like tree rings on trees, many fish preserve a record of their growth history in annular rings on fish scales and other bony parts. The number of rings provides the age of the fish at capture, and the increment between the rings is a measure of annual growth. We use data from four samples (two years, two gear types) of...

Register Now

Unformatted Document Excerpt

Coursehero >> Minnesota >> Minnesota >> STAT 8053

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Effects Mixed Models for Fish Growth Sanford Weisberg, sandy@stat.umn.edu October 18, 2008 Much like tree rings on trees, many fish preserve a record of their growth history in annular rings on fish scales and other bony parts. The number of rings provides the age of the fish at capture, and the increment between the rings is a measure of annual growth. We use data from four samples (two years, two gear types) of walleye on West Bearskin Lake, Minnesota. > loc <- "http://www.stat.umn.edu/~sandy/SMBassWBlong.txt" > data <- read.table(url(loc), header = TRUE) > names(data) [1] "species" [7] "lencap" [13] "fage" "lake" "radcap" "fyear" "gear" "age" "yearcap" "inc" "fish" "agecap" "yearclass" "year" > data$fage <- factor(data$age) > data$fyear <- factor(data$year) > library(xtable) The variables year and age are, respectively, the year of capture and age at capture. The yearclass is the year in which the fish was born, and gear is the gear used for fishing, either T for trapnetting done in the spring or E for electrofishing done in the fall. Each row of the data file has information about one increment, so for example a six year old fish would contribute 6 lines to the data file. There were 430 fish in the study. The tables below give counts of the number of increments. > xtable(xtabs(~yearclass + age, data), digits = 0) 1 177 32 1 18 150 39 3 2 177 32 1 18 131 23 0 3 177 32 1 16 84 0 0 4 177 32 0 7 0 0 0 5 177 24 0 0 0 0 0 6 119 14 0 0 0 0 0 7 48 0 0 0 0 0 0 1983 1984 1985 1986 1987 1988 1989 Weisberg (1993, Can J. Fisheries, 50, 1229) proposed a fixed-effects linear model for growth based on annular increments. We define ycka to be the a-th annular increment for the k-th fish from year-class c. Then the basic fixed-effects model can be described by the equation ycka = a + c+a-1 + gck + ecka 1 (1) where a is the intrinsic growth or annular increment for a fish in the a-th year of life, is the environmental effect for year = c + a - 1, which is the year in which a fish in year class c will be of age a. The ecka were assumed to be independent errors with mean zero and common variance 2 . Model (1) does not include an intercept, which allows an estimate to be obtained for a for each a. is a parameter to be estimated and gck is a dummy variable equal to one if gear type used to catch the k-th fish in year-class c is T and equal to zero if the gear type is E. This model is easily fit with lm: > m1 <- lm(inc ~ 0 + fage + fyear + gear, data = data) The fixed-effects growth model has a number of defects. First, the estimates of the a and the are not unique. For any constant m, adding m to each of the ^a and simultaneously subtracting m from all the would give a new set of estimates that gives the same fitted ^ values as those produced above by R. R produces unique estimates by setting = 0 for ^ equal to the earliest year in the data; SAS would produce unique estimates by setting to zero the environmental effect with equal to the last year in the data, and other programs might do something else entirely. The result of this is to make the estimates depend on the years of sampling, and so comparison of estimates between locations or over disconnected time periods may be impossible. However, in comparisons between years or between ages within a single study the arbitrary constant m will cancel so these comparisons are meaningful. Second, the assumption that the increments are independently distributed, with common constant variance was originally made for computational convenience, but can hardly be expected to reflect the reality of biological growth. All fish within a year are likely to be correlated, as environmental effects are likely to impact all fish in that year. Similarly, increments on the same fish will in most populations be (positively) correlated. Fish that grow poorly in year would typically be more likely to grow poorly in year + 1, while relatively larger fish in a year-class are more likely to continue to exhibit more growth in succeeding years. A mixed-effects model Each fish contributes more than one measurement, and so a random effect between fish should be expected. Similarly, treating years as a random effect, at least as a baseline model, can make sense in problems with data from many years. We now assume that the random environmental effects h are random draws from a normal 2 distribution with mean zero and variance h . Similarly, let fck be the random effect with zero 2 mean and variance f for the k-th fish of year-class c. The mixed model is ycka = a + hc+a-1 + gck + fck + ecka (2) The R fit is given in Table 1 This appears to be the appropriate baseline model for these data, as it includes fixed intrinsic age effects, predicted random effects for years, and also models within-fish correlation by allowing each fish to have its own overall level of growth that applies to all increments on that fish. The estimated within fish correlation is .0502/(.0502 + .0268 + 2 2 0.0825) = 0.314. The estimate of f is larger than the estimate of h , but smaller than the estimate of 2 . Apparently most of the variation in these data is between fish and the random error not otherwise modeled in (2). Not addressed yet are the "estimates" of the year random effects, which are of primary interest to the fish ecologists. These can be recovered using the rather obscure commands shown in Table 1. We will present more on the estimated year and age effects later. Here is a reasonable graph that summarizes the fish effects, namely a density estimate. The syntax of the ranef command is unfortunately very obscure. 2 > library(lme4) > print(n2 <- lmer(inc ~ 0 + fage + gear + (1 | fyear) + (1 | fish), + data), corr = FALSE) Linear mixed model fit by REML Formula: inc ~ 0 + fage + gear + (1 | fyear) + (1 | fish) Data: data AIC BIC logLik deviance REMLdev 1164 1224 -571 1142 1104 Random effects: Groups Name Variance Std.Dev. fish (Intercept) 0.0502 0.224 fyear (Intercept) 0.0268 0.164 Residual 0.0825 0.287 Number of obs: 1710, groups: fish, 420; fyear, 7 Fixed effects: Estimate Std. Error t value fage1 1.2724 0.0669 19.02 fage2 1.3082 0.0666 19.64 fage3 1.2592 0.0686 18.34 fage4 1.2110 0.0720 16.82 fage5 1.1370 0.0727 15.64 fage6 1.2239 0.0751 16.30 fage7 1.1642 0.0872 13.35 gearT 0.1252 0.0289 4.34 > out <- rbind(t(ranef(n2)$fyear), sqrt(attr(ranef(n2, postVar = TRUE)$fyear, + "postVar")[1, 1, ])) > rownames(out) <- c("Estimate", "SE") > out 1983 1984 1985 1986 1987 1988 1989 Estimate 0.16837 0.11337 -0.26097 -0.18985 0.05770 0.07437 0.03701 SE 0.02512 0.02349 0.02345 0.02266 0.01837 0.01935 0.02498 Table 1: lme4 fit 3 > plot(density(ranef(n2)$fish[, 1]), xlab = "Increment", main = "Fish effects, n2") Fish effects, n2 2.5 Density 0.0 0.5 1.0 1.5 2.0 -0.5 0.0 Increment 0.5 1.0 1 Mixed-effects with random effect interactions A valid criticism of the fixed effects model is that if a yearage interaction is present, the model becomes too complex to be of much practical use. A mixed model with interactions is much simpler: ycka = a + hc+a-1 + (ih)a,c+a-1 + ck + fck + ecka (3) 2 This adds only one new variance term ih for interaction rather than a large number of fixed effects terms. The predictions for the year main effects are still valid and useful. > print(n3 <- lmer(inc ~ 0 + fage + gear + (1 | fyear) + (1 | fyear:fage) + + (1 | fish), data), corr = FALSE) Linear mixed model fit by REML Formula: inc ~ 0 + fage + gear + (1 | fyear) + (1 | fyear:fage) + (1 | Data: data AIC BIC logLik deviance REMLdev 1135 1201 -556 1090 1111 Random effects: Groups Name Variance Std.Dev. fish (Intercept) 0.0498 0.2232 fyear:fage (Intercept) 0.0370 0.1923 fyear (Intercept) 0.0050 0.0707 Residual 0.0795 0.2820 Number of obs: 1710, groups: fish, 420; fyear:fage, 26; fyear, 7 Fixed effects: Estimate Std. Error t value fage1 1.3975 0.0884 15.81 fage2 1.3193 0.0929 14.20 fage3 1.1859 0.1027 11.55 fage4 1.1582 0.1259 9.20 fage5 1.1485 0.1485 7.73 fage6 1.2198 0.1508 8.09 fage7 1.1954 0.2074 5.76 gearT 0.1169 0.0287 4.07 4 fish) > out1 <- rbind(t(ranef(n3)$fyear), sqrt(attr(ranef(n3, postVar = TRUE)$fyear, + "postVar")[1, 1, ])) > rownames(out1) <- c("Estimate", "SE") > out1 1983 1984 1985 1986 1987 1988 1989 Estimate 0.005973 0.01495 -0.01557 -0.07156 0.01926 0.03656 0.01040 SE 0.066428 0.06310 0.06225 0.05967 0.05705 0.05556 0.05509 Including the interaction decreases AIC by about 29, so the interaction model seems to match the data more closely than the no-interaction data. The year:age interaction is larger than the year variance, suggesting that for this particular data set the interactions are more important than previously claimed. The plot of the year effects shown above indicates that the apparently poor years of 1985 and 1986 may not have been as poor as suggested in the no-interaction model, and the years 1983 and 1984 might be better than previously reported. The standard errors for the year effects are larger in the interaction model as well. We can summarize these three models using a couple of graphs: > coefplot <- function(xaxis, coefs, ses, col = "black", ...) { + require(plotrix) + plotCI(xaxis, coefs, ses, ...) + lines(xaxis, coefs, lty = 2, col = col) + } > > > + > + > + + > + > + > + > + + > + m1.coefs <- summary(m1)$coef par(mfrow = c(1, 2)) coefplot(1:7, fixef(n2)[1:7], sqrt(dia...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Minnesota - STAT - 8053
Stat 8053, Fall 2008: GLMMsFrom the lme4 package in R: Contagious bovine pleuropneumonia (CBPP) is a major disease of cattle in Africa, caused by a mycoplasma. This dataset describes the serological incidence of CBPP in zebu cattle during a follow-u
Minnesota - STAT - 5302
Physics Data Handout, Stat 5302&gt; Output from Table Data. . . item. Data set = Physics, Data listing Col. 1 = Case-numbers Col. 2 = x Col. 3 = y Col. 4 = S -0 0.345 367 17 1 0.287 311 9 2 0.251 295 9 3 0.225 268 7 4 0.207 253 7 5 0.186 239 6 6 0.161
Minnesota - STAT - 8061
Minnesota - STAT - 5421
Stat 5421, Fall 2006: Blowdown data, part 4Here is another version of the blowdown data, this time using the species balsam r (BF), Aspen (A) black ash (BA). We consider the predictor D as well as SPP. &gt; &gt; &gt; &gt; + &gt; &gt; options(width = 68) loc &lt;- &quot;http:
Minnesota - STAT - 8053
Stat 8053, Fall 2008: Chapter 11 Cluster AnalysisThe rst example looks at economic data from 69 world cities in 2003, provided by the Union Bank of Switzerland. The variables are: BigMac = Minutes of labor to purchase a Big Mac; Bread = Minutes of l
Minnesota - STAT - 8051
Stat 8051, Fall 2007: Proportional Odds ModelsThe proportional odds model cannot be fit with the glm function. However, this model is so common that software for it is readily available, for example in proc logistic in SAS, in JMP, in special purpos
Minnesota - STAT - 8053
Stat 8053, Fall 2008: L1 and Quantile RegressionReference: R. Koenker (2005). Quantile Regression, Cambridge University Press. See also the vignette for the quantreg package in R on the class website.Sample and population quantilesGiven an distri
Minnesota - STAT - 8051
1Stat 8051, Fall 2007: Logistic RegressionLogistic regression is the forward problem of the study of the distribution of (y|x). Since y can only equal two values, there is value in study of the inverse problem of x|y through the conditional densi
Minnesota - STAT - 8051
Stat 8051, Fall 2007: Logistic RegressionOn July 4, 1999 a huge windstorm caused widespread devastation of trees in the Boundary Water Canoe Area Wilderness in northern Minnesota. A survey done later examined trees to provide data to model survival
Minnesota - STAT - 8053
Stat 8053, Fall 2008: Smoothing, Ch. 11Kernel smoothingKernel smoothing is essentially weighted local averaging. It balances bias and variability using a smoothing parameter that essentially controls how many points get high weight in the averaging
Minnesota - STAT - 8053
Stat 8053, Fall 2008: Chapter 9This follows the results in Chapter 9 of Hrdle and Simar on principal component analysis. The a first example is the banknote data discussed in this book, in Faraway, and in Weisberg (1985). &gt; data(banknote, package =
Minnesota - STAT - 8051
Stat 8051, Fall 2007: More TransformationsBox-Cox transformation of the response&gt; &gt; &gt; &gt; &gt; &gt; &gt; + library(alr3) library(MASS) data(wool) par(mfrow = c(1, 2) m1 &lt;- lm(Cycles ~ ., wool) boxcox(m1) boxcox(Days + 1 ~ Eth * Sex * Age * Lrn, data = quine,
Minnesota - STAT - 8051
Stat 8051, Fall 2007: PrestigeThese data are the running example in the car package. The response is the prestige rating of 102 professions. Potential predictors are income, education and women, the fraction of the profession that is women. An addit
Minnesota - STAT - 5401
THE UNIVERSITY OF MINNESOTA Statistics 5401/8401 Solutions to Sample Midterm Examination The exhibits that were in a separate booklet are included here. Instead of tables of Bonferronized F-probability points, MacAnova output is used. Exhibit 1 (for
Minnesota - STAT - 5401
THE UNIVERSITY OF MINNESOTA Statistics 5401 Multi-group Profile Analysis Example This handout provides an analysis of some artificial data from Example 5.9 on p. 240 of Multivariate Statistical Methods, 3rd Edition by Donald F. Morrison, McGraw Hill
Minnesota - STAT - 5401
C ( SSSS hhhh TTTT AeTUUUU SSSS TTT UUUU eee UUUU SSSS iPpppp PPP eeee iii iiii QQQQ dSSSS(Ud3Qdd UUU QQQ RRRR iiii HHHH hhhh ffff gggg eeee eeee UUUU eeee ffff gggg TTTT ffff eeee dddd cccc # 7 B7@%(A$3 4(%'%&amp;4% 3 B4 % A &amp;%A D#%#7%(7A1@ #155(@7#4
Minnesota - STAT - 8401
L30data 100 5 LABELS) Artifical data generated from factor analytic model with) m = 2 factors, used in Lecture 30, 11/16/05)&quot;%lf %lf %lf %lf %lf&quot; 70.6 36.5 109.5 104.0 73.6 33.3 44.9 102.2 107.4 81.8 68.1 54.6 118.0 102.0 62
Minnesota - CH - 5021
# File ex12_030.txt from publisher's web site# Data for Ex. 12.30, p. 789 of IPS4# Col. 1: id = board number (1-24)# Col. 2: color (factor, 1=Blue, 2=green, 3=Lemon, 4=White)# Col. 3: insects = number of cerial leaf beetles trapped id color in
Minnesota - STAT - 5021
# Data on y = Nickel/Iron ratio in oat plants grown# in sand cultures for x = 4 days# Col. 1: days = Time (days) in sand cultures# Col. 2: ni_fe = Nickel/Iron ratio in oat plantsdays ni_fe 4 0.32 9 0.41 14 0.79 18 0.86 22
Minnesota - CH - 5021
# File ex12_016.txt from publisher's web site# Data for Ex. 12.16, p. 785 of IPS4 (Table 12.3)# Col. 1: id = subject number (1-160)# Col. 2: promotions = number of promotions# Col. 3: price = estimated price of supermarket product ($)# Use group
Minnesota - CH - 5021
# File ex13_012.txt from publisher's web site# Data for Ex. 13.12, p. 820 of IPS4# Col. 1: id = group number (1-6)# Col. 2: gender (factor, 1=Females, 2=Males)# Col. 3: major (factor, 1=CS, 2=EO, 3=O)# Col. 4: grades = mean high school math grad
Minnesota - CH - 5021
# File ex12_013.txt from publisher's web site# Data for Ex. 12.13, p. 784 of IPS4# Col. 1: id = case number (1-10)# Col. 2: time = days after baking# Col. 3: vitamina = Vitamin A content (mg/100 g)# Col. 4: vitamine = Vitamin E content (mg/100 g
Minnesota - CH - 5021
# File ex12_021.txt from publisher's web site# Data for Ex. 12.21, p. 786 of IPS4# Col. 1: id = infant number (1-45)# Col. 2: bftime (factor, 1=BF4, 2=BF5, 3=BF6, months)# Col. 3: energy = energy intake, (kcal/d) id bftime energy 1 BF4 499
Minnesota - CH - 5021
# File ex11_051.txt from publisher's web site# Data for Ex. 11.51, p. 743 of IPS4 (Table 10.1, p. 694)# Col. 1: id = woman number (1-60)# Col. 2: wages = proportional to weekly wages# Col. 3: los = length of service (months)# Col. 4: size = ban
Minnesota - STAT - 5931
cross$ export LD_LIBRARY_PATH=/APPS/ggobi/libcross$ R&gt; library(&quot;Rggobi&quot;)&gt;&gt; data(mtcars)&gt;&gt; class(mtcars)[1] &quot;data.frame&quot;&gt; names(mtcars) [1] &quot;mpg&quot; &quot;cyl&quot; &quot;disp&quot; &quot;hp&quot; &quot;drat&quot; &quot;wt&quot; &quot;qsec&quot; &quot;vs&quot; &quot;am&quot; &quot;gear&quot;[11] &quot;carb&quot;&gt; help(mtcars)&gt; gg
Minnesota - STAT - 5303
Stat 5303Designing ExperimentsFall Semester 2007Time: Location: Textbook: Web page: Instructor:10:10 a.m. to 11:00 a.m. on Mondays, Wednesdays, and Fridays Ford 115 A First Course in Design and Analysis of Experiments by Oehlert http:/www.sta
Minnesota - STAT - 3022
zip fire theft age income race vol invol26 6.2 29 60.4 11744 10 5.3 040 9.5 44 76.5 9323 22.2 3.1 0.113 10.5 36 73.5 9948 19.6 4.8 1.257 7.7 37 66.9 10656 17.3 5.7 0.5
Minnesota - STAT - 3022
jnt1 jnt2 species191 131 conc185 134 conc200 137 conc173 127 conc171 118 conc160 118 conc188 134 conc186 129 conc174 131 conc163 115 conc190 143 conc174 131 conc
Minnesota - STAT - 3022
zinc code185 1189 1187 1181 1150 1176 1171 2174 2202 2171 2207 2125 2189 2179 2163 2174 2184 2186 2210 3139 3172 3198 3177 3
Minnesota - STAT - 3022
temp failure53 156 157 163 066 067 067 067 068 069 070 070 170 170 172 073 075 075 176 076 078 079 080 081
Minnesota - STAT - 3022
absent machine-841 -1375-436 -599-224 -129160 47597 7132-356 1116300 940288 987609 1927412 2150167 2573364 2620384 3596320 3619240 41951365 4395392 4512404 5088408
Minnesota - STAT - 3022
carbonat calcite21.3 20.523.6 23.226.7 27.026.8 28.727.0 27.927.1 27.927.2 29.027.3 27.727.5 27.627.6 29.628.0 28.028.0 29.228.2 27.529.3 28.429.4 28.529.4 29.329.4 30.029.5 31.0
Minnesota - STAT - 3022
absentee machines-841 -1375-436 -599-224 -129160 47597 7132-356 1116300 940288 987609 1927412 2150168 2573364 2620384 3596320 3619240 41951365 4395392 4512404 50884
Minnesota - STAT - 3022
planet order distance Mercury 1 3.87 Venus 2 7.23 Earth 3 10.00 Mars 4 15.24 Asteroids 5 29.00 Jupiter 6 52.03 Saturn 7 95.46 Uranus 8 192.00 Neptune 9 300.90 Pluto 10 395.00
Minnesota - STAT - 3022
brain liver time treat days sex weight loss tumor41081 1456164 .5 BD 10 F 239 5.9 22144286 1602171 .5 BD 10 F 225 4 246102926 1601936 .5 BD 10 F 224 -4.9
Minnesota - STAT - 3022
area species44218 10029371 1084244 453435 5332 165 111 7
Minnesota - STAT - 3022
context mode level m percent1 1 1 132 20.5 2 1 1 132 31.11 1 2 132 28.02 1 2 131 38.91 2 1 132 34.12 2 1 131 48.91 2 2 132 23.52 2 2 123 45.5
Minnesota - STAT - 3022
company treat score1 1 80.01 2 63.21 2 69.22 1 83.92 2 63.12 2 81.53 1 68.23 2 76.24 1 76.54 2 59.54 2 73.5
Minnesota - STAT - 3022
time voltage code5.79 26 11579.52 26 12323.7 26 168.85 28 2108.29 28 2110.29 28 2426.07 28 21067.6 28 27.74 30 317.05 30 320.46 30 321.02 30 322.66 30 343.4 30 347.3 30 3139.07 30 3144.12 30 3175.88 30 3194.9 30 30.27 32 40.4 32
Minnesota - STAT - 5931
&gt; n &lt;- 300&gt; x &lt;- runif(n)&gt; y &lt;- runif(n)&gt; plot(x, y)&gt; plot(x, y, asp = 1)&gt; lines(c(0, 1, 1, 0, 0), c(0, 0, 1, 1, 0)&gt; plot(x, y, asp = 1, type = &quot;n&quot;, axes = FALSE, xlab = &quot;, ylab = &quot;)&gt; lines(c(0, 1, 1, 0, 0), c(0, 0, 1, 1, 0)&gt; points(x, y)&gt;
Minnesota - CH - 5021
# File ex08_066.txt from publisher's web site# Data for Ex. 8.66, p. 603 of IPS4# Col. 1: text = text number (1-10)# Col. 2: girl = number of usages of &quot;girl&quot;# Col. 3: woman = number of usages of &quot;woman&quot;# Col. 4: boy = number of usages of &quot;boy&quot;
Minnesota - CH - 5021
# File ex10_044.txt from publisher's web site# Data for Ex. 10.44, p. 705 of IPS4# Col. 1: id = perch number (1-12)# Col. 2: weight = fish weigh (g)# Col. 3: len = fish length (cm)# Col. 4: width = fish width (cm)perch weight len width 1
Minnesota - CH - 5021
# File ta02_009.txt from publisher's web site# Data from Table 2.9, p. 161 of IPS4# Col. 1: child = child number (1 - 21)# Col. 2: age = age of child (months)# Col. 3: score = Gesell score of childchild age score 1 15 95 2 26 71
Minnesota - CH - 5021
# File ex10_004.txt from publisher's web site# Data for Ex. 10.4, p. 692 of IPS4# Col. 1: id = student number (1-16)# Col. 2: beers = number of cans of beer# Col. 3: bac = blood alcohol content id beers bac 1 5 0.100 2 2 0.030 3
Minnesota - CH - 5021
# File ex09_032.txt from publisher's web site# Data for Ex. 9.32, p. 647 of IPS4# Col. 1: responded (factor, 1=no, 2=yes)# Col. 2: letter (factor, 1=letter, 2=none)# Col. 3: count = number of physicians in cell# Note: cell number column dropped
Minnesota - CH - 5021
# File ex07_058.txt from publisher's web site# Data for Ex. 7.58, p. 544 of IPS4# Col. 1: apt = apartment number# Col. 2: rooms = number of rooms (1 or 2)# Col. 3: rent = rent ($/mo)apt rooms rent 1 2 595 2 2 500 3 2 580
Minnesota - CH - 5021
# File ex07_060.txt from publisher's web site# Data for Ex. 7.60, p. 545 of IPS4# Col. 1: loaf = loaf number (1-4)# Col. 2: days = days stored# Col. 3: vitaminc = vitamin C content (mg/100 g)loaf days vitaminc 1 0 47.62 2 0 49.79
Minnesota - CH - 5021
# File ex09_035.txt from publisher's web site# Data for Ex. 9.35, p. 648 of IPS4# Col. 1: current (factor 1=thislose, 2=thiswin)# Col. 2: next (factor (1=nextlose, 2=nextwin)# Col. 3: funds = number of stock funds# Note: cell number column dropp
Minnesota - CH - 5021
# File ex09_020.txt from publisher's web site# Data for Ex. 9.20, p. 643 of IPS4# Col. 1: wine (factor, 1=French, 2=Italian, 3=Other)# Col. 2: music (factor, 1=French, 2=Italian, 3=None)# Col. 3: count = number of purchases in cell# Note: cell n
Minnesota - CH - 5021
# File ex10_037.txt from publisher's web site# Data for Ex. 10.37, p. 702 of IPS4# Col. 1: id = specimen number (1-5)# Col. 2: femur = length of femur (cm)# Col. 3: humerus = length of humerus (cm) id femur humerus 1 38 41 2 56 63 3
Minnesota - HAWKI - 068
THE COMMUNITY-ENGAGED SCHOLARSHIP FOR HEALTH COLLABORATIVE Many untenured faculty find they must choose between `doing the work that would contribute to career advancement' and doing the work of the institution in linking with communities and educati
Minnesota - NRESEXOTIC - 3002
Biological Invasions:Increasing - Great Lakes, Atlantic &amp; Pacific Bays, Terrestrial, etc.Invasion Process Transport Introduction Establishment rapid growth, integration Spread Impact system Natural declines or stabilization? more rapid with less d
Minnesota - NRESEXOTIC - 3002
Biological Invasions:Increasing - Great Lakes, Atlantic &amp; Pacic Bays, Terrestrial, etc.Invasion Process Transport Introduction Establishment rapid growth, integration Spread Impact system Natural declines or stabilization? more rapid with less dis
Minnesota - FW - 8459
FW 8459 STREAM and RIVER ECOLOGYFall 2000General Phylogenetic/Taxonomy of Some Important Stream Organisms This is an incomplete and biased list but illustrates some key organisms along with their classification.- classifications have been changin
Minnesota - FW - 8459
FW 8459 Stream and River Ecology Nutrient and Carbon Spiraling Relations/EquationsFall 2008The below equations outline some key relations in nutrient and carbon spiraling. Consult the below refs for more information. Note that because the beginni
Minnesota - FW - 5604
2006 SPRING/SUMMER INTERNSHIPMNDNR-LAKE SUPERIOR FISHERIESThe purpose of this position is to assist the Lake Superior management team in the sampling and analysis of fisheries data collected from stocks in Lake Superior and its tributary streams.
Minnesota - PHYS - 1063
Keywords Wednesday, September 19, 2007 Electromagnetic radiation Blackbody radiation Wavelength Intensity Stefan-Boltzmann law Wiens law Colors and wave lengths Light Infrared light Visible light Ultraviolet light Long-wave radiation Short-wave radia
Maryland - MATH - 115
Math 115 Exam 2 Sample 2 1. Suppose a(x) = x + 3 and suppose b(x) is an unknown function with b(3) = 5, b(1) = 6 and b(0) = 4. Find each of the following: (a) (a b)(1). (c) (a + b)(3)(b) (b a)(3) 2. Determine the average rate of change of h(x) =
Minnesota - CE - 5214
Simulator of Network Growth (SONG 1.0) for Homework 4 APrepared for Homework 4A, CE 5214 April 13, 2004What is Simulation?DefinitionlDynamic representation of some part of the real world through building computer model and moving it through
U. Memphis - COMP - 7120
Chapter 7: Signature SchemesCOMP 7120-8120 Lih-Yuan Deng lihdeng@memphis.eduOverviewIntroduction Security requirements for signature schemes ElGamal signature scheme Variants of ElGamal signature schemeDSA: Digital Signature AlgorithmProvably
U. Memphis - UNHP - 4453
How Minds WorkSparse Distributed MemoryStan FranklinComputer Science Division &amp; Institute for Intelligent Systems The University of Memphis1Boolean Geometry The geometry of Boolean space Boolean space of dimension n- the set of all Boolean