.RDATA 파일 확장자
R Workspace File
| 개발사 | The R Project for Statistical Computing |
| 인기도 |
3.3 | 31 투표 |
RDATA 파일이란 무엇인가요?
File created by R, a statistical computation and graphing program developed by The R Project for Statistical Computing; saves a workspace, which includes the function and value objects created during an open session in R; used for storing a working environment that can be extended or modified later.
추가 정보
An example object that can be stored in a workspace is a values list such as my_numbers <- n(1,2,3,4,5), which is a numeric values list.
참고: R does not show a list of previously created objects when you reopen a workspace. However, you can use the ls or objects commands to display the list of objects. Additionally, another software based on R called RStudio shows the object list in a workspace panel.