@@ -885,18 +885,18 @@ AncovaInternal <- function(jaspResults, dataset = NULL, options) {
885
885
}
886
886
887
887
if (options $ postHocTypeStandard )
888
- .anovaPostHocTable (postHocContainer , dataset , options , anovaContainer [[" model" ]]$ object , anovaContainer [[" afexModel" ]]$ object )
888
+ .anovaStandardPostHocTable (postHocContainer , dataset , options , anovaContainer [[" model" ]]$ object , anovaContainer [[" afexModel" ]]$ object )
889
889
890
890
if (options $ postHocTypeGames )
891
- .anovaGamesTable (postHocContainer , dataset , options , anovaContainer [[" model" ]]$ object )
891
+ .anovaGamesPostHocTable (postHocContainer , dataset , options , anovaContainer [[" model" ]]$ object )
892
892
893
893
if (options $ postHocTypeDunnet )
894
- .anovaDunnettTable (postHocContainer , dataset , options , anovaContainer [[" model" ]]$ object )
894
+ .anovaDunnettPostHocTable (postHocContainer , dataset , options , anovaContainer [[" model" ]]$ object )
895
895
896
896
return ()
897
897
}
898
898
899
- .anovaPostHocTable <- function (postHocContainer , dataset , options , model , afexModel = NULL ) {
899
+ .anovaStandardPostHocTable <- function (postHocContainer , dataset , options , model , afexModel = NULL ) {
900
900
if (! is.null(postHocContainer [[" postHocStandardContainer" ]]))
901
901
return ()
902
902
@@ -958,8 +958,8 @@ AncovaInternal <- function(jaspResults, dataset = NULL, options) {
958
958
isBetween = TRUE ))
959
959
avFootnote <- attr(resultPostHoc [[1 ]], " mesg" )[grep(attr(resultPostHoc [[1 ]], " mesg" ), pattern = " Results are averaged" )]
960
960
if (length(avFootnote ) != 0 ) {
961
- avTerms <- .unv( strsplit(gsub(avFootnote , pattern = " Results are averaged over the levels of: " , replacement = " " ),
962
- " , " )[[1 ]])
961
+ avTerms <- strsplit(gsub(avFootnote , pattern = " Results are averaged over the levels of: " , replacement = " " ),
962
+ " , " )[[1 ]]
963
963
postHocStandardContainer [[thisVarNameRef ]]$ addFootnote(gettextf(" Results are averaged over the levels of: %s" , paste(avTerms , collapse = " , " )))
964
964
}
965
965
allPvalues <- do.call(cbind , lapply(resultPostHoc , function (x ) x $ p.value ))
@@ -1098,7 +1098,7 @@ AncovaInternal <- function(jaspResults, dataset = NULL, options) {
1098
1098
}
1099
1099
1100
1100
1101
- .anovaGamesTable <- function (postHocContainer , dataset , options , model ) {
1101
+ .anovaGamesPostHocTable <- function (postHocContainer , dataset , options , model ) {
1102
1102
if (! is.null(postHocContainer [[" postHocGamesContainer" ]]))
1103
1103
return ()
1104
1104
@@ -1197,7 +1197,7 @@ AncovaInternal <- function(jaspResults, dataset = NULL, options) {
1197
1197
return ()
1198
1198
}
1199
1199
1200
- .anovaDunnettTable <- function (postHocContainer , dataset , options , model ) {
1200
+ .anovaDunnettPostHocTable <- function (postHocContainer , dataset , options , model ) {
1201
1201
if (! is.null(postHocContainer [[" postHocDunnettContainer" ]]))
1202
1202
return ()
1203
1203
0 commit comments