Skip to content

burnr v0.1.0

Compare
Choose a tag to compare
@brews brews released this 11 Jul 15:36
· 287 commits to master since this release

Changes in this minor release:

  • Added a vignette!
  • get_ggplot() is being depreciated. Please use plot_demograph().
  • Changed design of fhx objects. They are now data.frame and not lists (nobody used the 'meta', list member anyways). This means that if x is your fhx object and you previously used x$rings, you can now just use x.
  • Added function is.fhx().
  • Updated pgm example data.
  • composite() now returns an fhx object.
  • Added function get_event_years() to find fire and fire injury years in fhx objects. This is especially helpful for composites.
  • concatenate() and combine() were reverted back to '+' at the request of beloved users. This means code like lgr2 + pgm will combine these objects together into a single fhx object!
  • Added examples to all function documentation.
  • resolve_duplicates() is now hidden (i.e. burnr:::check_duplicates()).
  • Added function sample_depth() to get sample depth.
  • Added run_sea function to begin to address issue #58. Has pretty table output. This is still very experimental.
  • Bug fix in series_stats to maintain series IDs for those with no features
  • Changed composite() behavior. Now more similar to FHAES. Can choose to count injuries as "fire events" with the injury_event argument.
  • Added count_recording() function.
  • Fixed minor bugs in series_stats.
  • Removed sorting by default on read_fhx() and '+.fhx'
  • Fixed sort()s non-responsive decreasing argument.
  • Fixed poor sorting function for FHX objects.
  • Added several small utility functions: get_year(), get_series(), series_names(), delete().
  • Improved documentation!
  • Adding series_stats function, closes issue #44.