Electric Fish
ElectricFish.Rd
Species abundance of electric fish upstream and downstream of the entrance of a tributary in the Amazon basin.
Format
A data frame with 12 observations on the following 3 variables.
- tributary
a character vector
- species.upstream
a numeric vector of the number of species of electric fish present upstream of the tributary
- species.downstream
a numeric vector of the number of species of electric fish present downstream of the tributary
Source
Fernandes, C.C., J. Podos, and J.G. Lundberg. 2004. Amazonian ecology: tributaries enhance the diversity of electric fishes. Science 305: 1960-1962.
Examples
ElectricFish
#> tributary species.upstream species.downstream
#> 1 Ica 14 19
#> 2 Jutai 11 18
#> 3 Japura 8 8
#> 4 Coari 5 7
#> 5 Purus 10 16
#> 6 Manacapuru 5 6
#> 7 Negro 23 24
#> 8 Madeira 29 30
#> 9 Trombetas 19 16
#> 10 Tapajos 16 20
#> 11 Xingu 25 21
#> 12 Tocantins 10 12
require(grid)
xyplot(species.upstream ~ species.downstream, data = ElectricFish,
panel=function(x, y, ...){
grid.text(ElectricFish$tributary, x=x, y=y,
rot = 45,
gp = gpar(cex=.6),
default.units = 'native')
}
)