Hi All,
Here below is a code:
student_id <- seq(1,10)
math <- c(502,600,412,358,495,512,410,625,573,522)
science <- c(95,99,80,82,75,85,80,95,89,86)
english <- c(25,22,18,15,20,28,15,30,27,18)
df <- data.frame(student_id,math,science,english)
df$z <- scale(df[,2:4],center=TRUE,scale=TRUE)
df2 <- df %>% dplyr::arrange(desc(z)) %>% as_tibble()
I would like to have "full" tibble or dataframe like a console output:
but with RStudio's environment pane I have got a "short" version of it:

How is that possible ?