How to view the data-frame properly?
Here are lines to load the data-frame chicken from the astsa package. The object chicken contains monthly figures.
library(astsa)
data("chicken", package = "astsa")
When I execute this line, it only shows a single column numbers, which doesn't look like the data-frame.
View(chicken)
Am I not reading the right data-set? If so, how can I read it correctly? Thank you!