Skip to content

Commit

Permalink
Issue#2 and some minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sgaure committed Aug 21, 2018
1 parent 87013f8 commit da7c059
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: lfe
Version: 2.8-1
Date: 2018-06-30
Date: 2018-08-20
Title: Linear Group Fixed Effects
Authors@R: person("Simen", "Gaure", email="[email protected]", role=c("aut","cre"))
Copyright: 2011-2018, Simen Gaure
Expand All @@ -19,4 +19,4 @@ Classification/JEL: C13, C23, C60
Classification/MSC: 62J05, 65F10, 65F50
URL: https://github.com/sgaure/lfe
BugReports: https://github.com/sgaure/lfe/issues
RoxygenNote: 6.0.1
RoxygenNote: 6.1.0
4 changes: 1 addition & 3 deletions man/bccorr.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion man/cgsolve.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/felm.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions man/getfe.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions man/nlexpect.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/Crowsum.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
SEXP Crowsum(SEXP Rmat, SEXP Rfactor, SEXP Rmean) {
if(!IS_NUMERIC(Rmat)) error("Only numeric matrices accepted");
if(!isInteger(Rfactor) && !isFactor(Rfactor)) error("Only factor or integer vector accepted");
mybigint_t len = length(Rmat);
R_xlen_t len = xlength(Rmat);
mybigint_t cols = 0, rows=0;
int *f = INTEGER(Rfactor);
double *mat;
Expand Down

0 comments on commit da7c059

Please sign in to comment.