Skip to content

slider 0.1.3

Compare
Choose a tag to compare
@DavisVaughan DavisVaughan released this 14 May 14:18
164b162
  • Updated to stay compatible with vctrs 0.3.0.

  • A few edge cases with size zero input in the index functions have been fixed.

  • The default for the .names_to argument of *_dfr() variants has been
    updated to rlang::zap() to match the default of the function it is passed
    on to, vctrs::vec_rbind().

  • All *_vec() variants now maintain size stability when auto-simplifying
    (i.e. when .ptype = NULL) (#78, #93).

  • hop() and its variants no longer place the names of .x on the output.
    Because there is no size guarantee on the output, the size of .x can
    be different than the size of the output, meaning that the names might not
    line up. This also affects slide_period(), which is implemented using
    a hop() variant (#75).

  • With data frames containing row names, slide() and its variants now copy
    those row names onto the output. This is an implicit benefit from vctrs
    gaining better support for data frame row names.