Skip to content

Commit

Permalink
Fix row names in multiple_comparisons table
Browse files Browse the repository at this point in the history
When printing the multiple_comparisons table, the row names are not from 1 to n.
I'm just resetting the order before returning the object.
  • Loading branch information
igorkf authored Jul 21, 2023
1 parent c1bbb87 commit 9afa35a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions R/mct.R
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,8 @@ multiple_comparisons <- function(model.obj,
attr(pp.tab, 'aliased') <- as.character(aliased_names)
}

rownames(pp.tab) <- NULL

return(pp.tab)
}

Expand Down

0 comments on commit 9afa35a

Please sign in to comment.