Skip to content

Commit

Permalink
Hide nonsenical row numbers in crandash
Browse files Browse the repository at this point in the history
  • Loading branch information
jcheng5 committed Jan 28, 2018
1 parent b281a0a commit 8a78197
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 087-crandash/server.R
Expand Up @@ -91,7 +91,7 @@ function(input, output, session) {

output$rawtable <- renderPrint({
orig <- options(width = 1000)
print(tail(pkgData(), input$maxrows))
print(tail(pkgData(), input$maxrows), row.names = FALSE)
options(orig)
})
}
Expand Down

0 comments on commit 8a78197

Please sign in to comment.