``` df <- data_frame(x = Sys.time() + 1:10) df$y <- as.POSIXlt(df$x) df ``` Printing interprets these columns in a funny way. (A POSIXlt column is a list of length 11 (?) with a class.) Related: https://github.com/hadley/dplyr/issues/1789