Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What's wrong with my R code? I'm trying to create a simulation for the following question: Using the logistic growth model and your competition coefficients,

What's wrong with my R code? I'm trying to create a simulation for the following question: Using the logistic growth model and your competition coefficients, develop a 40-year simulation in discrete time of the population (start with 60 fish of each type).

competition coefficients are : 0.7220 for species 1 and 0.7245 for species 2

carrying capacity: 1000 for both species

growth rate: 0.6 for species 1 and 0.3 for species 2

time: 40 years

dlvcomp2<-function(N,alphas,rd= c(1, 1 ), K= c(1000,1000)) { N1.t1<-N[1]+r[1] * N[1] * (1-(N[1]+a[1] * N[2]/ K[1]) N2.t1<-N[2]+r[2] * N[2] * (1-(N[2]+a[2] * N[2]/K[1]) c( N1.t1,N2.t1) }

a<-matrix(c(0.7220 , 0.7245),ncol = 2, byrow = TRUE) r<- c(0.6,0.3) k<-c(1000,1000) t<-40 N <- matrix(0, nrow = t + 1, ncol = 2) N[1, ]<- c(60, 60) for( i in 1:t) N[i + 1, ] <- dlvcomp2(N[i, ], a)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data Management Databases And Organizations

Authors: Watson Watson

5th Edition

0471715360, 978-0471715368

More Books

Students also viewed these Databases questions