I have a file flights.rda and i can't read it with read.table. Pls help me. This is the link for it: https://drive.google.com/file/d/1rhSLipqpHJjafSdCVizninz6v0wJBfMN/view?usp=sharing
Asked
Active
Viewed 72 times
0
-
2Have you tried `load("flights.rda")`? – A5C1D2H2I1M1N2O1R2T1 Dec 12 '20 at 03:07
-
I tried it but when i use x <- read.table("flights.rda", header= TRUE, sep=",", skipNul = TRUE) then i have x with 11434 obs. of 1 variable but flights.rda has 162049 obs. of 16 variables – Nha Hay Dec 12 '20 at 04:13
-
All you have to do is `load("flights.rda")` and that will import the flights tibble to your workspace. There's no need for `read.table`. – A5C1D2H2I1M1N2O1R2T1 Dec 12 '20 at 04:31