I am new to R programming language. I am downloading some scientific data which are archived in zip. On unzipping, it gives out some files having .rbin extension which are actually binary files. While on googling the term “.rbin” i am unable to find the way to use them. Can anybody show me a guide on how to use these .rbin files?
Share
The extension
rbinis to my knowledge not an established convention like e.g..Rdataor.rda. I assume that you are right, and that they are binary files. To read binary files, you need to use thereadBinfunction. To get good results, you do need to find out some details:Please take a look at
?readBinfor more details.Alternatively, the
rbinfile could contain a binary representation of R objects (as @Andrie commented). In this case you need to use theloadfunction to load the objects into your workspace, see?loadfor more details.