Displaying 1 result from an estimated 1 matches for "captures_complete_r".
2005 Nov 21
1
Plotting one or more series on the same graphs
Hi, I'm from Italy (sorry for my english...). I've two questions about
the plot function.
I've to create a simple graph for the data set "n_species":
species=sqlQuery(dati, "select count(distinct species), season from
captures_complete_r group by species, season")
n_species=tapply(species$count, species$season, sum)
n_species=data.frame(n_species)
n_species
n_species
autumn 10
spring 7
summer 7
winter 7
The problem is that, if I use "plot(n_species)", I can't put the season...