Presentation is loading. Please wait.

Presentation is loading. Please wait.

R IIN T AMME, L ARS G ÖTZENBERGER, M ARTIN Z OBEL, J AMES M. B ULLOCK, D ANNY A. P. H OOFTMAN, A NTS K AASIK, M EELIS P ÄRTEL Predicting seed dispersal.

Similar presentations


Presentation on theme: "R IIN T AMME, L ARS G ÖTZENBERGER, M ARTIN Z OBEL, J AMES M. B ULLOCK, D ANNY A. P. H OOFTMAN, A NTS K AASIK, M EELIS P ÄRTEL Predicting seed dispersal."— Presentation transcript:

1 R IIN T AMME, L ARS G ÖTZENBERGER, M ARTIN Z OBEL, J AMES M. B ULLOCK, D ANNY A. P. H OOFTMAN, A NTS K AASIK, M EELIS P ÄRTEL Predicting seed dispersal distances from simple plant traits

2 We collected available maximum dispersal distance data for plant species

3

4 576 plant species are currently represented in our database

5 We collected plant trait data from original studies or databases dispersal syndrome growth form seed mass seed releasing height terminal velocity

6 We related these plant traits to maximum dispersal distances

7 Average maximum dispersal distance increases from species with no special mechanisms for dispersal to ballistic, ant, wind, and animal dispersal 1.1 m 3.6 m 6.5 m 47.6 m 196 m

8 Average maximum dispersal distance also increases from herbs to shrubs and trees 5.2 m 24.4 m 295 m

9 We then built models to predict plant species’ maximum dispersal distances from simple plant traits

10 O BSERVED MAXIMUM DISPERSAL DISTANCE ( LOG ; M ) P REDICTED MAXIMUM DISPERSAL DISTANCE (L OG ; M ) Simple plant traits explained up to 60% of variation in maximum dispersal distances We used 2/3 of the data to build the models and 1/3 of the data as a test set to test the predictions For the test set we predicted dispersal distances using parameters from the models and related these to observed values

11 We provide a function dispeRsal to predict maximum dispersal distances for users’ own datasets

12 How to predict plant species’ dispersal distances using dispeRsal function in ?

13 1

14 Download and install http://www.r-project.org R is a free software environment for statistical computing and graphics

15 2

16 Download and load dispeRsal function http://www.botany.ut.ee/dispersal Simply download the dispeRsal file Double-clicking the file automatically opens R and loads the dispeRsal function

17 3

18 Prepare the data file Your data file has to follow a specific format SpeciesGFDSSMTVRH You can use Excel or similar software to prepare the dataset

19 Prepare the data file Your data file has to follow a specific format SpeciesGFDSSMTVRH Enter the species names without authorship It is also possible to only include genus level

20 Prepare the data file Your data file has to follow a specific format SpeciesGFDSSMTVRH Enter either tree, shrub, or herb Species growth form

21 Prepare the data file Your data file has to follow a specific format SpeciesGFDSSMTVRH Enter either animal, ant, ballistic, wind.none, or wind.special Species dispersal syndrome You can use different online databases to obtain data on species’ dispersal syndrome

22 Prepare the data file Your data file has to follow a specific format SpeciesGFDSSMTVRH Seed mass Enter the value in log10 transformed format (using mg) If no data is available, you can leave the cell empty

23 Prepare the data file Your data file has to follow a specific format SpeciesGFDSSMTVRH If no data is available, you can leave the cell empty Enter the value in log10 transformed format (using m/s) Seed terminal velocity

24 Prepare the data file Your data file has to follow a specific format SpeciesGFDSSMTVRH If no data is available, you can leave the cell empty Seed releasing height (or plant height) Enter the data in log10 transformed format (using m)

25 For example… SpeciesGFDSSMTVRH Acer platanoidestreewind.special2.140.011.35 Abies albatreewind.special1.901.46 Viola montanaherbballistic Viola arvensisherbballistic-0.290.48-0.79 Viola arvensisherbant-0.290.48-0.79

26 For example… Save your file in a comma separated file format (.csv) Make sure your data file is in the same directory as the dispeRsal file Note that you can enter a species multiple times to predict dispersal distance for different syndromes SpeciesGFDSSMTVRH Acer platanoidestreewind.special2.140.011.35 Abies albatreewind.special1.901.46 Viola montanaherbballistic Viola arvensisherbballistic-0.290.48-0.79 Viola arvensisherbant-0.290.48-0.79

27 4

28 your.data <- read.table(“YourFileName.csv”, header=TRUE, sep=“;”, dec=“.”) You may need to modify the values for separator (sep) and decimal (dec) depending on your file format Read in your data to

29 5

30 dispeRsal(your.data, model=5) Use dispeRsal function

31 dispeRsal(your.data, model=5) The value for model can be either 1, 2, 3, 4, or 5 Use dispeRsal function 1 uses DS, GF, TV 2 uses DS, GF, SM, RH 3 uses DS, GF, RH 4 uses DS, GF, SM 5 uses DS, GF Choose the model depending on the data available (you can run the function several times using different models) Note that the simplest model (5) only uses DS and GF data even for species that have more data available

32 The output… SpeciesOrderFamilyDSlog10MDD _Family log10MDD _Order log10MDD _measured Acer platanoides SapindalesSapindaceaewind.special2.362.322.68 Abies albaPinalesPinaceaewind.special2.572.323.85 Viola montanaMalphigialesViolaceaballistic0.610.47NA Viola arvensisMalphigialesViolaceaballistic0.610.470.38 Viola arvensisMalphigialesViolaceaant0.820.69NA

33 The output… The function automatically assignes your species to a family and an order SpeciesOrderFamilyDSlog10MDD _Family log10MDD _Order log10MDD _measured Acer platanoides SapindalesSapindaceaewind.special2.362.322.68 Abies albaPinalesPinaceaewind.special2.572.323.85 Viola montanaMalphigialesViolaceaballistic0.610.47NA Viola arvensisMalphigialesViolaceaballistic0.610.470.38 Viola arvensisMalphigialesViolaceaant0.820.69NA

34 The output… The function predicts dispersal distances taking account the taxonomy of the species (family or order) SpeciesOrderFamilyDSlog10MDD _Family log10MDD _Order log10MDD _measured Acer platanoides SapindalesSapindaceaewind.special2.362.322.68 Abies albaPinalesPinaceaewind.special2.572.323.85 Viola montanaMalphigialesViolaceaballistic0.610.47NA Viola arvensisMalphigialesViolaceaballistic0.610.470.38 Viola arvensisMalphigialesViolaceaant0.820.69NA Note that the maximum dispersal distance values are log10 transformed (in m)

35 The output… If possible, also the measured maximum dispersal distance from the original data source is given SpeciesOrderFamilyDSlog10MDD _Family log10MDD _Order log10MDD _measured Acer platanoides SapindalesSapindaceaewind.special2.362.322.68 Abies albaPinalesPinaceaewind.special2.572.323.85 Viola montanaMalphigialesViolaceaballistic0.610.47NA Viola arvensisMalphigialesViolaceaballistic0.610.470.38 Viola arvensisMalphigialesViolaceaant0.820.69NA Note that the maximum dispersal distance values are log10 transformed (in m)

36 For more information… http://www.botany.ut.ee/dispersal

37 dispeRsal is being presented by a research article in Ecology, which we kindly ask you to cite in case you use the tool and its output for your own publications Riin Tamme, Lars Götzenberger, Martin Zobel, James M. Bullock, Danny A. P. Hooftman, Ants Kaasik, and Meelis Partel (In press). Predicting species' maximum dispersal distances from simple plant traits. Ecology. http://dx.doi.org/10.1890/13- 1000.1http://dx.doi.org/10.1890/13- 1000.1


Download ppt "R IIN T AMME, L ARS G ÖTZENBERGER, M ARTIN Z OBEL, J AMES M. B ULLOCK, D ANNY A. P. H OOFTMAN, A NTS K AASIK, M EELIS P ÄRTEL Predicting seed dispersal."

Similar presentations


Ads by Google