web-dev-qa-db-fra.com

comment trouver l'emplacement de la bibliothèque R dans Mac OSX?

Sur linux, c'est généralement $HOME/R/..., où est-il sur un Mac?

J'ai essayé quelque chose comme locate Rcpp, mais je n'ai pas obtenu d'informations utiles.

R est installé via homebrew, et la version OSX est 10.9 (mavericks).

14
qed

Avec .Library Vous obtenez votre emplacement de bibliothèque par défaut
Avec .libPaths("your/path") vous pouvez également obtenir/définir vos arborescences de bibliothèque (voir ?.libPaths)
et avec getwd() resp. setwd("your/path") vous obtenez/définissez votre répertoire de travail

26
Rentrop

Vous pouvez utiliser la fonction find.package pour trouver les chemins vers un ou plusieurs packages.

Exemple (recherche du chemin de la bibliothèque R rj):

> find.package('rj')
[1] "\\\\nas/users/dernoncourt/Documents/dernoncourt/R/win-library/3.4/rj"

Vous pouvez également utiliser packageDescription. Par exemple:

> packageDescription("rj")
Encoding: UTF-8
Package: rj
Version: 2.1.0-13
Title: RJ - R Package for high-level Java-R library RJ
Author: Stephan Wahlbrink, Tobias Verbeke, low-level R binding based on the JRI library by Simon Urbanek
Maintainer: Stephan Wahlbrink <[email protected]>
Depends: R (>= 2.11.0)
Suggests: rj.Gd
SystemRequirements: Java
Description: Server implementation and R functions for the high-level Java-R library RJ.  The package also includes callback functions for StatET.  It is shipped with an adapted version of the JRI library.  The package can be used only when R was loaded via RJ.
License: LGPL (== 2.1)
URL: http://www.walware.de/goto/opensource
NeedsCompilation: yes
Packaged: 2017-05-10 08:22:44 UTC; build
Built: R 3.4.0; x86_64-w64-mingw32; 2017-05-10 08:25:27 UTC; windows

-- File: \\nas/users/dernoncourt/Documents/dernoncourt/R/win-library/3.4/rj/Meta/package.rds 
5
Franck Dernoncourt

Pouvez-vous regarder /Library/Frameworks/R.framework/Resources/library

3
Dipak G.