Displaying 1 result from an estimated 1 matches for "eb_flno1".
2017 Sep 18
1
Help/information required
...4 bit (Desktop)
o RAM - 8 GB
o Processor - i5-6500 @ 3.2 Ghz
* R Version:
o R Studio 1.0.136
o R 3.4.0
While trying to merge two datasets we received the following resource error message on running the code
Code: merg_data <- merge(x=Data_1Junto30Jun,y=flight_code,by.x="EB_FLNO1",by.y="EB_FLNO1",all.x = TRUE)
Error Message: Error: cannot allocate vector of size 5.8 Gb
Later we tried running the code differently but error still remained
Code: merg_data <- sqldf("Select * from Data_1Junto30Jun as a inner join flight_code as b on a.EB_FLNO1=b.EB_FLNO1&...