Displaying 20 results from an estimated 11000 matches similar to: "Missing Windows binary for R-2.15RC?"
2012 Jul 27
2
How can I access an element of a string?
Dear Daniel and Jorge,
Thank you very much and it does help.
If I have a string "ABCD", how can I access the second element of the
string "B"? Thanks,
Miao
2012/7/27 Daniel Nordlund <djnordlund@frontier.com>
> > -----Original Message-----
> > From: r-help-bounces@r-project.org [mailto:r-help-bounces@r-project.org]
> > On Behalf Of jpm miao
2011 Feb 10
1
Revolution Analytics reading SAS datasets
Has anyone heard whether Revolution Analytics is going to release this capability to the R community?
http://www.businesswire.com/news/home/20110201005852/en/Revolution-Analytics-Unlocks-SAS-Data
Dan
Daniel Nordlund
Bothell, WA USA
2013 Apr 18
2
Multiple Multivariate regression in R with 50 independent variables
Hello all
Is there a method/package in R in which I can do regressions for more than
50 independent variables ?
Regards
The woods are lovely, dark and deep
But I have promises to keep
And miles before I go to sleep
And miles before I go to sleep
-----
[[alternative HTML version deleted]]
2011 Mar 07
1
Problem building R-2.13 r54683 on Windows
Hi, Unfortunately it looks like this problem has somehow been reintroduced.
I am now trying to build R-devel 54683 from source, again following
the manual. I get the same error as below:
gcc -std=gnu99 -I../../include -DHAVE_CONFIG_H -O3 -Wall -pedantic
-c zutil.c -o zutil.
o
make[4]: *** No rule to make target `Rzlib.def', needed by `Rzlib.dll'. Stop.
make[3]: *** [rlibs] Error 1
2009 Aug 24
6
Combining matrices
If I have two matrices like
x <- matrix(rep(c(1,2,3),3),3)
y <- matrix(rep(c(4,5,6),3),3)
How can I combine them to get ?
1 1 1 4 4 4
1 1 1 5 5 5
1 1 1 6 6 6
2 2 2 4 4 4
2 2 2 5 5 5
2 2 2 6 6 6
3 3 3 4 4 4
3 3 3 5 5 5
3 3 3 6 6 6
The number of rows and the actual numbers above are unimportant, they are given so as to illustrate how I want to combine the matrices. I.e., I am looking for
2011 Aug 04
2
Efficient way of creating a shifted (lagged) variable?
Hello!
I have a data set:
set.seed(123)
y<-data.frame(week=seq(as.Date("2010-01-03"), as.Date("2011-01-31"),by="week"))
y$var1<-c(1,2,3,round(rnorm(54),1))
y$var2<-c(10,20,30,round(rnorm(54),1))
# All I need is to create lagged variables for var1 and var2. I looked
around a bit and found several ways of doing it. They all seem quite
complicated - while in
2010 Oct 09
4
same random numbers in different sessions
Dear all
I'm using Xubuntu Lucid and I keep getting the same random numbers
whenever I start a new session of R. For example, I keep getting
> sample(1:1000, 1)
[1] 87
or
> rnorm(1:10)
[1] -1.3618103 0.4241701 1.0720076 0.2208145 -0.5375314 -0.4846588
[7] 0.7576768 0.6527407 -0.6868786 0.8718527
I expected that some set.seed() instruction woudl be present in a
config file in
2013 Apr 12
2
"Failed to locate the 'texi2pdf' output file"
Hi,
Every day a few Bioconductor packages (different ones each day) fail
to build, on Windows only, with an error like this:
D:\biocbld\bbs-2.13-bioc\meat>D:\biocbld\bbs-2.13-bioc\R\bin\R.exe CMD
build --keep-empty-dirs --no-resave-data OrganismDbi
[...]
Error in find_vignette_product(name, by = "texi2pdf", engine = engine) :
Failed to locate the 'texi2pdf' output file (by
2015 Mar 19
2
CRAN binary, but no source
----- Original Message -----
> From: "G?bor Cs?rdi" <csardi.gabor at gmail.com>
> To: "John McKown" <john.archie.mckown at gmail.com>
> Cc: r-devel at r-project.org
> Sent: Thursday, March 19, 2015 9:03:37 AM
> Subject: Re: [Rd] CRAN binary, but no source
>
> On Thu, Mar 19, 2015 at 11:59 AM, John McKown
> <john.archie.mckown at
2009 Dec 18
2
how to combine multiple indicator variables in a single factor
Say I have a dataframe like this:
df <- data.frame(cbind(c(1,0,0,1),c(0,1,0,0),c(0,0,1,0)))
names(df) <- c('a','b','c')
I would like to create a factor in a new column, where the factor values are taken from the column names, like this:
> df2
a b c f
1 1 0 0 a
2 0 1 0 b
3 0 0 1 c
4 1 0 0 a
How would I do this? Thanks,
Dan
Daniel Nordlund
Bothell, WA USA
2015 Mar 19
2
CRAN binary, but no source
----- Original Message -----
> From: "G?bor Cs?rdi" <csardi.gabor at gmail.com>
> To: "Dan Tenenbaum" <dtenenba at fredhutch.org>
> Cc: r-devel at r-project.org, "John McKown" <john.archie.mckown at gmail.com>
> Sent: Thursday, March 19, 2015 11:15:47 AM
> Subject: Re: [Rd] CRAN binary, but no source
>
>
>
>
> On
2013 Oct 10
1
install.packages() removes package on Windows
Hi,
Starting with the XML package installed:
> "XML" %in% rownames(installed.packages())
[1] TRUE
>
I ran the following script:
pkgs <- c("XML")
for (i in 1:100)
{
install.packages(pkgs, repos="http://cran.fhcrc.org")
if (!all(pkgs %in% rownames(installed.packages())))
{
print("failed to install pkgs!")
2015 Jan 13
2
R CMD build looking for texi2dvi in the wrong place (R-devel)
----- Original Message -----
> From: "Simon Urbanek" <simon.urbanek at r-project.org>
> To: "Dan Tenenbaum" <dtenenba at fredhutch.org>
> Cc: "R-devel" <r-devel at r-project.org>
> Sent: Monday, January 12, 2015 5:50:35 PM
> Subject: Re: [Rd] R CMD build looking for texi2dvi in the wrong place (R-devel)
>
> Dan,
>
> On
2004 May 22
2
How to define specific location of tick marks in plot()
Hi,
I wish to create a series of plots with the same x-axis range and the same
placement of tick marks. In addition I want to force the tick marks to be at
specific locations. For example, if I wish to have an x-axis which goes from
40 to 110, with tick marks at 40, 50, 60, ... , How can I accomplish that?
The various parameters I have tried changing just seem to be suggestions for
2013 Nov 20
1
"size of shared memory region" messages show up with Rtools 3.1.0.1939
Hi,
After installing Rtools 3.1.0.1939 into c:\rtools31, when I call any (most?) of the commands in c:\rtools31\bin, I see strange messages printed to stderr. Example:
C:\Rtools31>bin\tar
0 [main] tar 6084 shared_info::initialize: size of shared memory region changed from 27984 to 21136
bin/tar: You must specify one of the `-Acdtrux' options
Try `bin/tar --help' or `bin/tar
2011 Mar 03
1
Problem building R-2.13 r54645 on Windows
I am building R-2.13 r54645 from source as described here:
http://cran.r-project.org/doc/manuals/R-admin.html#Building-from-source
The "make all recommended" command ends as follows on both 32 and 64-bit
Windows (Windows Server 2003 R2 Enterprise Edition Service Pack 2 and
Windows Server 2008 R2 Enterprise):
gcc -std=gnu99 -I../../include -DHAVE_CONFIG_H -O3 -Wall -pedantic -c
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
2015 Mar 19
2
CRAN binary, but no source
> On 19 Mar 2015, at 19:45 , G?bor Cs?rdi <csardi.gabor at gmail.com> wrote:
>
> On Thu, Mar 19, 2015 at 2:19 PM, Dan Tenenbaum <dtenenba at fredhutch.org>
> wrote:
> [...]
>
>>
>> In github? ;-)
>>
>
> Well, that's the thing. If github/cran is a read-only mirror, then should I
> delete these versions from there, too? :) On CRAN not
2003 Apr 18
2
Keyboard problem using RWin 1.7.0
I just installed RWin 1.7.0 on an Intel box running Win2000 Pro. If I try to
paste from the clipboard to the console command line, the command(s) are
executed, but the console then stops responding to the keyboard. The only
way I have found to continue is to use the mouse to shut down R.
Typing in the console works just fine; commands are executed, command-line
editing is ok, source-ing
2011 Oct 04
2
R-devel (2.14 alpha) Windows binary
Hello,
This question popped up on the bioc-devel list, I'm forwarding it here.
I know that sources for R-2.14 alpha can be found here:
http://cran.r-project.org/src/base-prerelease/
But the OP (below) is asking about Windows binaries.
Dan
---------- Forwarded message ----------
From: Stefan McKinnon H?j-Edwards <Stefan.Hoj-Edwards at agrsci.dk>
Date: 2011/10/4
Subject: Re: