Displaying 20 results from an estimated 600 matches similar to: "what folder to run write_PACKAGES in?"
2014 Aug 06
3
portableParalleSeeds Package violation, CRAN exception?
I'm writing to ask for a policy exception, or advice on how to make
this package CRAN allowable.
http://rweb.quant.ku.edu/kran/src/contrib/portableParallelSeeds_0.9.tar.gz
Yesterday I tried to submit a package on CRAN and Dr Ripley pointed
out that I had not understood the instructions about packages. Here's
the part where the R check gives a Note
* checking R code for possible
2012 Nov 06
0
\value section for write_PACKAGES not updated
Hi,
Found in \value section of man page for tools::write_PACKAGES:
Invisibly returns the number of packages described in the resulting
\file{PACKAGES} and \file{PACKAGES.gz} files. If \code{0}, no
packages were found and no files were written.
Those days (don't know when this has changed exactly), PACKAGES and
PACKAGES.gz are written, even if no packages were found (which is a
2012 Dec 13
2
Installing Packages from a Local Repository
Hi everyone,
I've followed the instructions from R-Admin Section 6.6 for creating a
local repository. I've modified my Rprofile.site file to add the local
repository to my repos, but I haven't been able to successfully install my
package from the repo.
Here's the code that I've run.
##################################
sessionInfo()
getOption("repos")
2008 Nov 30
1
using survey weights for correlations
Dear list,
I have a data file which includes, alongside various variables representing questionnaire scores, a variable for survey weights computed as the number of observations in the sample drawn from that group divided by the number of observations in the population in the group. I need to calculate a covariance matrix of the questionnaire scores for use in sem. How do I apply the weights?
2012 Nov 02
1
Can't install.packages() from local repo in 2.15.2
Hi guys
I think there's a high chance this is a bug. But I can't rule out that I can be blamed for this. I've posted this to bugzilla (#15092). Then I read that I probably should have posted it to R-develop first. Sorry for doing this in the wrong order.
I've set up a local repo on my local drive (happens to be mapped to L:/). It has the following structure (as per
2017 May 31
2
[Dovecot-news] v2.2.30.1 released
Am 31.05.2017 um 16:35 schrieb Timo Sirainen:
> On 31 May 2017, at 16.53, Reindl Harald <h.reindl at thelounge.net
> <mailto:h.reindl at thelounge.net>> wrote:
>>
>> LTO build is as broken as 2.2.30
>>
>> libtool: link: ( cd ".libs" && rm -f "lib10_quota_plugin.la" && ln -s
>> "../lib10_quota_plugin.la"
2011 Aug 19
1
Error in read.dcf(file = tmpf) : Line starting '<head> ...' is malformed!
Dear R-Users,
I'm trying to setup a personal repository for a few packages I'm working on.
I am on R-Forge but I still need to have various versions of my package that
R-Forge does not build (for R 2.8.1 for example).
So I followed the instructions in this document:
Hhttp://
cran.r-project.org/doc/manuals/R-admin.html#Setting-up-a-package-repository
and used this function as
2013 Mar 21
1
missing space in R version specifier makes PACKAGES file unreadable by install.packages()
Hi,
After updating to R-3.0 beta r62328, I get the following:
> install.packages("Biobase", type="source", repos="http://george2/BBS/2.12/bioc")
Error in do.call(op, list(v_c, v_t[[op]])) :
could not find function "R (>=2.15.1)"
The problem can be fixed by adding a space after >= in the offending
package's DESCRIPTION file and re-generating
2005 Nov 16
1
update R packages in local repos
I try to update R packages via my local repository.
I put all R packages in g:/myFolder/myRepository, I do like
> library(tools)
> write_PACKAGES("g:/myFolder/myRepository")
> options(repos=c(LocalR="file://g:/myFolder/myRepository"))
> getOption("repos")
LocalR
"file://g:/myFolder/myRepository"
>
2022 Oct 13
1
tools:: extracting pkg dependencies from DCF
Dear R devs,
I would like to raise a request for a simple helper function.
Utility function to extract package dependencies from DESCRIPTION file.
I do think that tools package is better place, for such a fundamental
functionality, than community packages.
tools pkg seems perfect fit (having already great function write_PACKAGES).
Functionality I am asking for is already in R svn repository
2013 Apr 23
2
Needed: Beta Testers and Summer Camp Students
Greetings.
I'm teaching linear regression this semester and that means I write
more functions for my regression support package "rockchalk". I'm at
a point now were some fresh eyes would help, so if you are a student
in a course on regression, please consider looking over my package
overview document here:
http://pj.freefaculty.org/R/rockchalk.pdf
That tells how you can grab
2024 Jun 09
1
Fields used by available.packages
Hi all,
I have recently been researching how available.packages and
install.packages filter packages from repositories with additional fields
in their PACKAGES file.
Currently there are some default filters, but users (and R admins) can set
up their own filters by passing a list to the fields argument or adding
them to the "available_packages_filters" option.
But if the fields used by
2024 Jun 12
1
Fields used by available.packages
>>>>> Llu?s Revilla writes:
Lluis,
So in available.packages() I could replace
if (is.null(fields))
fields <- requiredFields
else {
stopifnot(is.character(fields))
fields <- unique(c(requiredFields, fields))
}
by someting like
if(is.null(fields))
fields <- getOption("available_packages_fields")
if(is.null(fields))
fields
2008 Jan 26
5
double-click in RData file versus load( file )
hello all,
when I start up the R and I execute o follow code:
> ls()
character(0)
> x=123
> assign("test_x", x, envir = .GlobalEnv )
> ls()
[1] "test_x" "x"
> setwd('C:\\R\\etc')
> save.image('TEST.RData')
> q('no')
I have two different behaviours:
(a) - when I start up R again by "double click" in
2024 Jun 12
1
Fields used by available.packages
Yes, I think that would be enough.
Thank you, Kurt!
Llu?s
On Wed, 12 Jun 2024 at 16:35, Kurt Hornik <Kurt.Hornik at wu.ac.at> wrote:
> >>>>> Llu?s Revilla writes:
>
> Lluis,
>
> So in available.packages() I could replace
>
> if (is.null(fields))
> fields <- requiredFields
> else {
> stopifnot(is.character(fields))
2008 Sep 04
2
printing name of object inside lapply
Dear list members,
I am trying, within a lapply command, to print the name of the objects
in list or data frame. This is so that I can use odfWeave to print out a
report with a section for each object, including the object names.
I tried e.g.
a=b=c=1:5
lis=data.frame(a,b,c)
lapply(
lis, function (z) {
obj.nam <- deparse(substitute(z))
cat("some other text",obj.nam,"and so
2008 Jan 19
0
batchfiles 0.4-0
batchfiles 0.4-0 consists of a set of Windows Vista
.bat, .hta and .pl files.
More information is available on the home page:
http://batchfiles.googlecode.com
CHANGES
- now tested with Vista exclusively (use 0.3-2 instead on XP)
- sweave.bat now has no dependencies on the other batch
files. With this change all .bat and .hta files now
have no dependencies except possibly for R.
-
2008 Jan 19
0
batchfiles 0.4-0
batchfiles 0.4-0 consists of a set of Windows Vista
.bat, .hta and .pl files.
More information is available on the home page:
http://batchfiles.googlecode.com
CHANGES
- now tested with Vista exclusively (use 0.3-2 instead on XP)
- sweave.bat now has no dependencies on the other batch
files. With this change all .bat and .hta files now
have no dependencies except possibly for R.
-
2018 Dec 06
0
Package 'tools' support for linux binary packages?
I may have a deployment reason at work for Linux binary packages as created
by `R CMD INSTALL --build src`. Using the example of my digest package this
creates eg
digest_0.6.18.1_R_x86_64-pc-linux-gnu.tar.gz
where 'x86_64-pc-linux-gnu' is also what `R.version[["platform"]]` returns.
However, once I started to look into supporting this via my repository helper
package
2006 Apr 25
1
RSetReg.exe
R v2.3.0 patched from today: Was just checking out the RSetReg.exe
application after reading about it in "R for Windows FAQ":
"After installation you can add the Registry entries in
HKEY_LOCAL_MACHINE by running RSetReg.exe in the bin folder, and
remove them by running this with argument /U. Note that this requires
administrative privileges and neither sets up nor removes the file