Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
R
 
 
man
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

panelWranglR

Travis build status Lifecycle: stable License: GPL v3 CRAN status

panelWranglR is a simple package for wrangling panel data.

Installation

You can install the stable version of panelWranglR from CRAN with

install.packages("panelWranglR")

The latest version is also available from github using the devtools package

devtools::install_github("JSzitas/panelWranglR")

Introduction

The goal of panelWranglR is to provide simple functions that take care of common panel data wrangling needs, such as lagging a panel, differencing a panel (including selections of variables from a panel), finding correlations/autocorrelations in a panel, and so on. For a full list of all of the available functionality, please refer to the documentation.

Example

Let’s start by lagging a whole panel of data, using 5 lags.

# example data: 
    X <- matrix(rnorm(800000),8000,100)
    tim <- seq(1:4000)
    geo_AT <- rep(c("AT"), length = 4000)
    geo_NO <- rep(c("NO"), length = 4000)
    both_vec_1 <- cbind(tim,geo_NO)
    both_vec_2 <- cbind(tim,geo_AT)
    both <- rbind(both_vec_1,both_vec_2)
    X <- cbind(both,X)
    colnames(X) <- c("time", "geo", paste("V", 1:100, sep = "")) 

library(panelWranglR)

    panel_lag( data = X, 
               cross.section = "geo",
               time.variable = "time",
               lags = 5 )    
    

Or maybe we want to turn the cross section variable into several dummy variables:

panel_dummify( data = X,
               cross.section = "geo" )

We can do that for the time variable too (though it is not recommended with many time ‘levels’!)

Further functionality follows the same general syntax and usage (and documentation hopefully clears up any misunderstandings.)

Contributing

If you would like to contribute a pull request, please do contribute! All contributions will be considered for acceptance, provided they are justifiable and the code is reasonable, regardless of anything related to the person submitting the pull request. Please keep things civil - there is no need for negativity. Also, please do refrain from adding unnecessary dependencies (Ex: pipe) to the package (such pull requests as would add an unnecessary dependency will be denied/ suspended until the code can be made dependency free).

About

Common panel data wrangling tasks, with a data.table backend

Resources

License

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.