Skip to content

Commit

Permalink
Merge pull request #30 from mayer79/fix_summary
Browse files Browse the repository at this point in the history
missing head() in inter.summary()
  • Loading branch information
mayer79 authored Jul 7, 2023
2 parents 7473414 + caa5735 commit a7cc76e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/interact.R
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ summary.interact <- function(object, top_m = 6L, ...) {
for (nm in names(out)) {
cat(txt[[nm]])
cat("\n")
print(out[[nm]])
print(utils::head(out[[nm]], top_m))
cat("\n")
}
invisible(out)
Expand Down

0 comments on commit a7cc76e

Please sign in to comment.