Giter Club home page Giter Club logo

transx's Introduction

transx

Lifecycle: experimental CRAN status R build status Codecov test coverage

Univariate time series operations that follow an opinionated design. The main principle of transx is to keep the number of observations the same. Operations that reduce this number have to fill the observations gap.

Design Principles

  • The input and the output will always be a numeric vector.
  • The output retains the same length as the input.
  • Uses a filling logic, where fill is used to keep the length of vector identical.

Optional:

  • na.rm: Which setsna.rm = TRUE by default when needed to.
  • keep.attrs: Which after manipulations the new series would retain the same attributes.
  • display: Display informative message for the transformation procedure.

Installation

You can install the development version from Github.

remotes::install_github("transx")

Usage

This is a basic example with lagged and leading values. fill can be achieved either by value or by function. The function can be a build-in function such as mean, or median, that fill-in by a single values, or it can be of the fill_* family such as fill_locf and fill_nocb that consider the location of the observations before performing the filling.

library(transx)

x <- c(5,3,2,2,5)
lagx(x)
#> [1] NA  5  3  2  2
lagx(x, fill = 1)
#> [1] 1 5 3 2 2
lagx(x, fill = mean)
#> [1] 3 5 3 2 2
lagx(x, fill = fill_nocb)
#> [1] 5 5 3 2 2

Code of Conduct

Please note that the transx project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

transx's People

Contributors

kvasilopoulos avatar

Watchers

Gábor Csárdi avatar CRAN robot avatar  avatar

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.