File tree 3 files changed +9
-1
lines changed
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
Type: Package
2
2
Package: performance
3
3
Title: Assessment of Regression Models Performance
4
- Version: 0.12.4.16
4
+ Version: 0.12.4.17
5
5
Authors@R:
6
6
c(person(given = "Daniel",
7
7
family = "Lüdecke",
Original file line number Diff line number Diff line change @@ -407,6 +407,7 @@ S3method(r2,negbinirr)
407
407
S3method(r2,negbinmfx)
408
408
S3method(r2,nestedLogit)
409
409
S3method(r2,ols)
410
+ S3method(r2,oohbchoice)
410
411
S3method(r2,phylolm)
411
412
S3method(r2,plm)
412
413
S3method(r2,poissonirr)
Original file line number Diff line number Diff line change @@ -706,12 +706,19 @@ r2.fixest <- function(model, ...) {
706
706
structure(class = " r2_generic" , out )
707
707
}
708
708
709
+
709
710
# ' @export
710
711
r2.fixest_multi <- function (model , ... ) {
711
712
lapply(model , r2.fixest )
712
713
}
713
714
714
715
716
+ # ' @export
717
+ r2.oohbchoice <- function (model , ... ) {
718
+ NULL
719
+ }
720
+
721
+
715
722
# ' @export
716
723
r2.felm <- function (model , ... ) {
717
724
model_summary <- summary(model )
You can’t perform that action at this time.
0 commit comments