Displaying 20 results from an estimated 35 matches for "packrat".
2016 Jul 20
2
package installation fails when symlink of same name exists
...ing, continues
> I guess my wish here would be that R would check if any file already
> existed at the 'instdir' path, and if it existed and was a symlink, R
> would remove that symlink before install.
are you sure?
I think ... and from what you mention below ("packrat") it would
rather be important to *keep* the symlink, and install to
whereever the symlink is pointing, no ?
> It could happen before creating the directory, e.g. here:
> https://github.com/wch/r-source/blob/62f5acbdbdf36e1fc618510312125d1677d79941/src/library/tools/R/install...
2018 Feb 06
1
Warning from Sys.junction when using network drive.
I am running 3.4.3 on a windows server and I ran the code in a new session.
I get a warning when running packrat::init() on a project that is located on a windows network drive.
The warning I get is
Warning message:
cannot set reparse point 'U:/packrat5/packrat/lib-R/base', reason 'Access is denied'
The error is created based inside the function .Internal(mkjunction(fr, link)) which is cal...
2016 Jul 20
0
package installation fails when symlink of same name exists
...t; I guess my wish here would be that R would check if any file already
> > existed at the 'instdir' path, and if it existed and was a symlink, R
> > would remove that symlink before install.
>
> are you sure?
> I think ... and from what you mention below ("packrat") it would
> rather be important to *keep* the symlink, and install to
> whereever the symlink is pointing, no ?
For packrat's case at least, removing the symlink and installing to a
newly-created directory within the library would be fine -- later,
when a user wants to 'save t...
2016 Jul 19
2
package installation fails when symlink of same name exists
...xisting directory could / should be removed when
installing a new package. (It appears that R does clear out a
pre-existing directory when downloading and installing a package
binary directly from CRAN.)
For motivation: I bumped into this when attempting to implement a
package caching feature with packrat. A packrat project using a global
cache will have a (private) R library containing symlinks to R package
installations in a separate, global library. This allows projects to
effectively be isolated from one another, while avoiding duplication
of packages used across multiple projects. Unfortunately...
2017 Jun 08
3
Creating a private CRAN with webpages
Hello,
I am trying to setup a private CRAN for work (behind a firewall). The best
options available include miniCRAN
<https://github.com/RevolutionAnalytics/miniCRAN>, drat
<https://github.com/eddelbuettel/drat> and packrat
<https://rstudio.github.io/packrat/>. One problem is these packages do not
automatically generate the web pages that are on the CRAN.
Examples:
https://cran.r-project.org/web/packages/index.html
https://cran.r-project.org/web/packages/available_packages_by_name.html
Each time the CRAN adds...
2009 Aug 24
0
[LLVMdev] Regular Expression lib support
Hello LLVM Devs,
I thought I'd weigh in on some of these non-backtracking linear time RegEx algorithms. If they're anything like the PackRat parsing algorithms they take at least 4x the amount of memory in terms of storage as the string length itself by not backtracking. That should be fine for small RegExes but it wouldn't do so well for more elaborate and long expressions.
If what you need is something for a short regex, a packr...
2015 Jan 22
5
Programming Tools CTV
...requests for additions to the reproducible research
task view that fall into a grey area (to me at least).
For example, roxygen2 is a tool that broadly enable reproducibility
but I see it more as a tool for better programming. I'm about to check
in a new version of the task view that includes packrat and
checkpoint, as they seem closer to reproducible research, but also
feel like coding tools.
There are a few other packages that many would find useful for better
coding: devtools, testthat, lintr, codetools, svTools, rbenchmark,
pkgutils, etc.
This might be some overlap with the HPC task view....
2016 Feb 11
2
inconsistency in treatment of USE.NAMES argument
...ngr/R/buggy_count.R:67
/lintr/R/absolute_paths_linter.R:35
/lintr/R/absolute_paths_linter.R:71
/loo/R/helpers.R:13
/loo/R/helpers.R:20
/matconv/R/convEasySyntax.R:71
/matconv/R/convFunctionCalls.R:11
/matconv/R/utils.R:113
/micropan/R/biostrings.R:80
/micropan/R/biostrings.R:106
/mime/R/mime.R:129
/packrat/R/bundle.R:137
/packrat/R/hooks.R:45
/packrat/R/lockfile.R:56
/pixiedust/R/sprinkle_colnames.R:66
/plyr/R/id.r:38
/polyCub/R/polyCub.SV.R:110
/polyCub/R/polyCub.exact.Gauss.R:99
/polyCub/R/polyCub.iso.R:130
/polyCub/R/polyCub.iso.R:166
/polyCub/R/polyCub.iso.R:168
/pryr/R/dots.r:25
/rappdirs/R/util...
2017 Jun 09
0
Creating a private CRAN with webpages
...jgbradley1 at gmail.com> wrote:
>
> Hello,
>
> I am trying to setup a private CRAN for work (behind a firewall). The best
> options available include miniCRAN
> <https://github.com/RevolutionAnalytics/miniCRAN>, drat
> <https://github.com/eddelbuettel/drat> and packrat
> <https://rstudio.github.io/packrat/>. One problem is these packages do not
> automatically generate the web pages that are on the CRAN.
>
> Examples:
> https://cran.r-project.org/web/packages/index.html
> https://cran.r-project.org/web/packages/available_packages_by_name....
2009 Aug 24
8
[LLVMdev] Regular Expression lib support
On Aug 23, 2009, at 9:01 PM, Daniel Berlin wrote:
>> 2. Use POSIX regcomp facilities. This implies importing some
>> implementation of this interface, e.g., Windows. On Linux, BSD, etc.
>> we would try to use the platform version if available (and non-
>> buggy).
>
> Don't do it.
> They are ridiculous slow, and posix made some really dumb choices in
>
2014 Jul 22
3
Descargar lista de paquetes zipeados
Hola
Alguien sabe como descargar una lista de librerías de R en formato zipeado.
Por ejemplo quiero descargar las librerías (lme4, latticeExtras,
Biobase,....., etc,etc) en formato zipeado.
Se que puedo hacerlo una por una desde el cran pero quisiera tener un
procedimiento para hacerlo automáticamente.
Prof. Julio Di Rienzo
Estadística y Biometría
FCA- U.N. Córdoba
2015 Jan 22
2
Programming Tools CTV
...research
>> task view that fall into a grey area (to me at least).
>>
>> For example, roxygen2 is a tool that broadly enable reproducibility
>> but I see it more as a tool for better programming. I'm about to check
>> in a new version of the task view that includes packrat and
>> checkpoint, as they seem closer to reproducible research, but also
>> feel like coding tools.
>>
>> There are a few other packages that many would find useful for better
>> coding: devtools, testthat, lintr, codetools, svTools, rbenchmark,
>> pkgutils, etc...
2016 Feb 08
2
inconsistency in treatment of USE.NAMES argument
Hi,
Both vapply() and sapply() support the 'USE.NAMES' argument. According
to the man page:
USE.NAMES: logical; if ?TRUE? and if ?X? is character, use ?X? as
?names? for the result unless it had names already.
But if 'X' has names already and 'USE.NAMES' is FALSE, it's not clear
what will happen to the names. Are they going to propagate to the
result
2017 Jul 06
2
Regarding R_LIBS_USER
...are
searched
- We may try to change install.packages() so instead of trying to install
to .libPaths()[1] by default it tries /usr/local/lib/R/site-library first.
We don't know how many things may break because they rely on that
assumption, we would need to test CRAN packages like checkpoint and packrat
and worse we don't know if we break some custom setups from users.
- We can't remove the home directory from .libPaths() because some users
won't be able to install packages there anymore nor find their packages,
unless they choose to do that in their Renviron file.
Considering this, t...
2015 Jan 22
1
Programming Tools CTV
...fall into a grey area (to me at least).
>>>>
>>>> For example, roxygen2 is a tool that broadly enable reproducibility
>>>> but I see it more as a tool for better programming. I'm about to check
>>>> in a new version of the task view that includes packrat and
>>>> checkpoint, as they seem closer to reproducible research, but also
>>>> feel like coding tools.
>>>>
>>>> There are a few other packages that many would find useful for better
>>>> coding: devtools, testthat, lintr, codetools, svT...
2015 Jan 22
0
Programming Tools CTV
...o the reproducible research
> task view that fall into a grey area (to me at least).
>
> For example, roxygen2 is a tool that broadly enable reproducibility
> but I see it more as a tool for better programming. I'm about to check
> in a new version of the task view that includes packrat and
> checkpoint, as they seem closer to reproducible research, but also
> feel like coding tools.
>
> There are a few other packages that many would find useful for better
> coding: devtools, testthat, lintr, codetools, svTools, rbenchmark,
> pkgutils, etc.
>
> This might...
2015 Jan 22
0
Programming Tools CTV
...to the reproducible research
> task view that fall into a grey area (to me at least).
>
> For example, roxygen2 is a tool that broadly enable reproducibility
> but I see it more as a tool for better programming. I'm about to check
> in a new version of the task view that includes packrat and
> checkpoint, as they seem closer to reproducible research, but also
> feel like coding tools.
>
> There are a few other packages that many would find useful for better
> coding: devtools, testthat, lintr, codetools, svTools, rbenchmark,
> pkgutils, etc.
>
> This might b...
2004 Sep 07
0
[Fwd: dovecot bug case] Reproducably make "imap" loop.
...a few people talking about a bug where "imap" processes loop.
Bruce has managed to reproduce the bug. Anyone know if this has been
fixed in CVS, or is it an unfixed problem?
Cheers
Grahame
-------------- next part --------------
An embedded message was scrubbed...
From: Bruce Murphy <packrat at ucs.uwa.edu.au>
Subject: dovecot bug case
Date: Tue, 7 Sep 2004 13:01:39 +0800
Size: 3826
URL: <http://dovecot.org/pipermail/dovecot/attachments/20040907/09e68936/attachment-0003.mht>
2005 Nov 17
1
Retention Policy Feature(?)
I am currently using dovecot 0.99.14p1 on OpenBSD 3.8, mbox format,
procmail+sendmail MTA. I subscribe to quite a few mailing lists and
currently have procmail sorting mail into the proper mboxes. I was hoping
there would be some sort of retention policy feature built in to dovecot. I
want to delete mail more than X days old from X folders. I have combed the
documentation, list archives, and
1998 Jul 13
0
Guest can't access IPC$ - Samba 1.9.18p7, Linux 2.0.32
...Thanks in advance!
Alex Satrapa
Windows 95: n. 32 bit extensions and a graphical shell for a 16 bit patch
to an 8 bit operating system originally coded for a 4 bit microprocessor,
written by a 2 bit company that can't stand 1 bit of competition.
http://ucnet.canberra.edu.au/~packrat/windows_sig.html