0

I'm quite new to R and really excited to learn it. I've one of the built in data set in R called AirPassengers. When I use str(AirPassengers) I get this:

> str(AirPassengers)
 Time-Series [1:144] from 1949 to 1961: 112 118 132 129 121 135 148 148 136 119 ...

This suggests it's a time series. This is the full dataset:

> AirPassengers
     Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
1949 112 118 132 129 121 135 148 148 136 119 104 118
1950 115 126 141 135 125 149 170 170 158 133 114 140
1951 145 150 178 163 172 178 199 199 184 162 146 166
1952 171 180 193 181 183 218 230 242 209 191 172 194
1953 196 196 236 235 229 243 264 272 237 211 180 201
1954 204 188 235 227 234 264 302 293 259 229 203 229
1955 242 233 267 269 270 315 364 347 312 274 237 278
1956 284 277 317 313 318 374 413 405 355 306 271 306
1957 315 301 356 348 355 422 465 467 404 347 305 336
1958 340 318 362 348 363 435 491 505 404 359 310 337
1959 360 342 406 396 420 472 548 559 463 407 362 405
1960 417 391 419 461 472 535 622 606 508 461 390 432

Can anyone please help me to convert this into a data frame? Is there any quick way to convert it?

alistaire
  • 42,459
  • 4
  • 77
  • 117
vik2426
  • 53
  • 6
  • Well, `as.data.frame(AirPassengers)`, but that probably won't give you what you expect. – alistaire Feb 18 '17 at 03:10
  • @RichScriven Many thanks for quick reply. It worked and converted to matrix. But the problem is I need to be able to use separate column as variables. Such as if I do this, aptest3 <- matrix(AirPassengers, ncol=12, byrow=TRUE, dimnames = list(1949:1960, month.abb)) then I should be able to use aptest3$Jan but I think I can only use $ if I have a data frame. – vik2426 Feb 18 '17 at 03:15
  • Hacky, but you can capture the results of `print.ts` and reread it as a data.frame: `read.table(text = capture.output(AirPassengers))`, or `type.convert(.preformat.ts(AirPassengers))` will give you a wide matrix you can wrap in `as.data.frame` easily. – alistaire Feb 18 '17 at 03:20
  • 1
    The linked question and answer should get you going. – Rich Scriven Feb 18 '17 at 03:31
  • or a more complete long form: `data.frame(AirPassengers, year = round(time(AirPassengers)), month = month.abb[cycle(AirPassengers)])` – alistaire Feb 18 '17 at 03:33

0 Answers0