R 설치버전 확인하는 방법
R에서 설치버전을 확인하는 방법은 세가지 방법이 있습니다.
1. package_version(R.version)
package_version 함수를 이용하면 간단하게 버전이름만 볼 수 있습니다. 아래와 같이 사용합니다.
> package_version(R.version)
[1] ‘3.5.0’
2. R.version 또는 version
R.version 또는 version 이라는 명령어를 입력하면, 운영체제 설치년도 등 다양한 정보를 볼 수 있습니다. 아래에서 두번째 줄에 버전이 쓰여있습니다. 아래와 같이 사용합니다.
> R.version
_
platform x86_64-w64-mingw32
arch x86_64
os mingw32
system x86_64, mingw32
status
major 3
minor 5.0
year 2018
month 04
day 23
svn rev 74626
language R
version.string R version 3.5.0 (2018-04-23)
nickname Joy in Playing
3. sessionInfo()
sessionInfo 함수를 이용하면 R 버전 뿐 아니라 attach된 패키지 등을 보여줍니다. 아래와 같이 사용합니다.
> sessionInfo()
R version 3.5.0 (2018-04-23)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1
Matrix products: default
locale:
[1] LC_COLLATE=Korean_Korea.949 LC_CTYPE=Korean_Korea.949 LC_MONETARY=Korean_Korea.949 LC_NUMERIC=C
[5] LC_TIME=Korean_Korea.949
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] readxl_1.3.1
loaded via a namespace (and not attached):
[1] Rcpp_1.0.1 fansi_0.4.0 zeallot_0.1.0 utf8_1.1.4 crayon_1.3.4 assertthat_0.2.1 cellranger_1.1.0
[8] backports_1.1.4 pillar_1.4.2 rlang_0.4.0 cli_1.1.0 vctrs_0.2.0 nortest_1.0-4 tools_3.5.0
[15] compiler_3.5.0 pkgconfig_2.0.2 tibble_2.1.3
댓글