Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,850 questions

51,771 answers

573 users

How to get the version of R

2 Answers

0 votes
v <- R.Version()

print(v)



# run:
#
# $platform
# [1] "x86_64-pc-linux-gnu"
# 
# $arch
# [1] "x86_64"
# 
# $os
# [1] "linux-gnu"
# 
# $system
# [1] "x86_64, linux-gnu"
#
# $status
# [1] ""

# $major
# [1] "3"
# 
# $minor
# [1] "6.1"
# 
# $year
# [1] "2019"
# 
# $month
# [1] "07"
# 
# $day
# [1] "05"
# 
# $`svn rev`
# [1] "76782"
# 
# $language
# [1] "R"
# 
# $version.string
# [1] "R version 3.6.1 (2019-07-05)"
# 
# $nickname
# [1] "Action of the Toes"

 



answered Feb 11, 2021 by avibootz
0 votes
v <- sessionInfo()

print(v)



# run:
#
# R version 3.6.1 (2019-07-05)
# Platform: x86_64-pc-linux-gnu (64-bit)
# Running under: Arch Linux
# 
# Matrix products: default
# BLAS:   /usr/lib/libblas.so.3.8.0
# LAPACK: /usr/lib/liblapack.so.3.8.0
# 
# locale:
#  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#  [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8    
#  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
#  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
# [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
# 
# attached base packages:
# [1] stats     graphics  grDevices utils     datasets  methods   base     
# 
# loaded via a namespace (and not attached):
# [1] compiler_3.6.1
# 

 



answered Feb 11, 2021 by avibootz

Related questions

1 answer 190 views
190 views asked Jul 11, 2021 by avibootz
1 answer 170 views
1 answer 184 views
2 answers 198 views
1 answer 176 views
176 views asked Jul 7, 2021 by avibootz
1 answer 119 views
1 answer 105 views
105 views asked Jul 6, 2021 by avibootz
...