Skip to content

Commit

Permalink
Changes for new CRAN release
Browse files Browse the repository at this point in the history
  • Loading branch information
AdaemmerP committed Dec 11, 2018
1 parent ae41f7d commit e14b13b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 14 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
^CRAN-RELEASE$
^.*\.Rproj$
^\.Rproj\.user$
^\.httr-oauth$
Expand Down
8 changes: 5 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ output: github_document
[![Build Status](https://travis-ci.com/AdaemmerP/lpirfs.svg)](https://travis-ci.com/AdaemmerP/lpirfs)
[![Downloads](https://cranlogs.r-pkg.org/badges/lpirfs)](https://CRAN.R-project.org/package=lpirfs)
[![Total Downloads](https://cranlogs.r-pkg.org/badges/grand-total/lpirfs?color=orange)](https://CRAN.R-project.org/package=lpirfs)
[![Coverage Status](https://codecov.io/gh/adaemmerp/lpirfs/graph/badge.svg)](https://codecov.io/github/adaemmerp/lpirfs?branch=master)
[![Coverage Status](https://codecov.io/gh/adaemmerp/lpirfs/graph/badge.svg)](https://codecov.io/github/adaemmerp/lpirfs?branch=master)

```{r setup, include = FALSE}
knitr::opts_chunk$set(
Expand All @@ -27,9 +27,11 @@ with local projections by [Jordà (2005)](https://www.aeaweb.org/articles?id=10.
## Main features

- Estimates linear and nonlinear impulse responses with local projections.
- Estimates linear impulse responses with identified shock and/or with 2SLS.
- Estimates linear and nonlinear impulse responses with local projections for panel data (development version).
- Estimates linear and nonlinear impulse responses with identified shock and/or with 2SLS.
- Estimates linear and nonlinear impulse responses with local projections for panel data.
- Functions to plot linear and nonlinear impulse responses.
- Functions are partly implemented in *Rcpp*/*RcppArmadillo* and partly written for parallel computation
to improve efficiency.


## Installation
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@ local projections by [Jordà

- Estimates linear and nonlinear impulse responses with local
projections.
- Estimates linear impulse responses with identified shock and/or with
2SLS.
- Estimates linear and nonlinear impulse responses with identified
shock and/or with 2SLS.
- Estimates linear and nonlinear impulse responses with local
projections for panel data (development version).
projections for panel data.
- Functions to plot linear and nonlinear impulse responses.
- Functions are partly implemented in *Rcpp*/*RcppArmadillo* and
partly written for parallel computation to improve efficiency.

## Installation

Expand Down
9 changes: 4 additions & 5 deletions src/Makevars
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) $(SHLIB_OPENMP_CFLAGS)
PKG_CFLAGS = $(SHLIB_OPENMP_CFLAGS)
CXX_STD = CXX11


PKG_CPPFLAGS = -I../inst/include/
CXX_STD = CXX11
PKG_LIBS = $(SHLIB_OPENMP_CXXFLAGS) $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
PKG_CXXFLAGS = $(SHLIB_OPENMP_CXXFLAGS)
6 changes: 3 additions & 3 deletions src/Makevars.win
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
##
## And with R 3.4.0, and RcppArmadillo 0.7.960.*, we turn C++11 on as OpenMP
## support within Armadillo prefers / requires it
PKG_CPPFLAGS = -I../inst/include/
CXX_STD = CXX11

PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS) $(SHLIB_OPENMP_CFLAGS)
PKG_CFLAGS = $(SHLIB_OPENMP_CFLAGS)
PKG_LIBS = $(SHLIB_OPENMP_CXXFLAGS) $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
PKG_CXXFLAGS = $(SHLIB_OPENMP_CXXFLAGS)

0 comments on commit e14b13b

Please sign in to comment.