GithubHelp home page GithubHelp logo

neon4cast-beetles's People

Contributors

annaspiers avatar cboettig avatar mech3132 avatar rqthomas avatar taddallas avatar tdlan80 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

neon4cast-beetles's Issues

Null models

Follow-ups from July 21 meeting

  • Performance metrics @carl
  • Add error to random walk and average baseline null forecasts for richness @taddallas
  • Build random walk and average baseline null forecasts for count @annaspiers
  • Pool subspecies to species @annaspiers
  • Data correction ( e.g., for trapnight, something about sampling effort) @brettmelbourne

counts, abundance, and trap-nights

Hi team, I'm still worried about our formulation of 'counts / trap-nights'. Sampling effort is not as clean as we've assumed (i.e. 40 traps per site up to 2017, then 30 traps after). That's the protocol, but the actual number of traps set varies a bit more than that, as we can tell from the field data table, e.g.

bet_fielddata %>% count(siteID, collectDate) 

shows a given collectDate usually collects the expected 40 traps prior to 2018 and 30 traps after, but might also collect far less, i.e. here's how many traps are returned:

 bet_fielddata %>% count(siteID, collectDate) %>% rename(n_traps = n) %>% count(n_traps, sort=TRUE)
# A tibble: 40 x 2
   n_traps     n
     <int> <int>
 1      30   999
 2      40   879
 3      15    65
 4      36    61
 5      29    55
 6       1    49

So to count up "trap-nights" at a given site for a given collection date, we need to use the fielddata table to add up the number of days each individual trap was set at each site,

bet_fielddata %>% group_by(siteID, collectDate) %>% summarize(trapnights = sum(trappingDays))

Also note this cannot be done directly from the bet_sorting table, even though we have collectDate and setDate, because that table does not include any traps that were set and collected but wound up being empty on that bout.

I think this number from the fielddata for trap nights is better, though there may still be improved ways to adjust for effort.

Data exploration

Visualize time series of:

  • abundance
  • number of traps per site
  • range of number of nights per trap per site

Create:

  • Spatial richness accumulation curves
  • Temporal richness accumulation curves
  • Chao's index

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.