similar to: Error Building From Source

Displaying 20 results from an estimated 400 matches similar to: "Error Building From Source"

2004 Jul 26
1
Building Windows Package
I am using R-1.9.1 with windows 2000 and trying to build a package. However, when I issue the command: RCMD build --binary BSDA I get: >>> Building/Updating help pages for package 'BSDA' Formats: chm hhc: not found cp: cannot stat `C:/R191/R191/JUNK/BSDA/chm/BSDA.chm': No such file or direc tory make[1]: *** [chm-BSDA] Error 1 make: *** [pkg-BSDA] Error 2 ***
2006 Jan 09
2
paste tab and print
Dear all, info = paste('a', 'b', sep='\t') print(info , quote=F) doesn't produce the same result with R201 and R220 (under Windows2000) R 2.0.1 : [1] a b R 2.2.0 : [1] a\tb I did read the CHANGESR220 file and tried also the search engine but couldn't find an answer. I certainly missed the point, and apologize about that. So if somebody could tell me how to
2006 Dec 10
1
Noncentral t & F distributions
Dear List: The square of the noncentral t-statistic with noncentrality parameter \delta is a noncentral F with noncentrality parameter \lambda=\delta^2. So, t^2_{\nu,\delta} = F_{1,\nu,\lambda=\delta^2}. Consequently, it should follow that t^2_{1-\alpha/2,\nu,\delta} = f_{1-alpha,1,\vu,\lambda=\delta^2}. However, this is not what is happening with the following code. The central
2010 Apr 22
2
Unable to make bitmapdll files on windows 7 64 bit machine
I am trying to build a windows 32 bit version of R 2.11.0 from source on a machine running windows 7 - 64 bit while running as the machine's administrator. I am able to run "make all recommended"...However, once I attempt to build the bitmap files I get the following: C:\Rsource\R-2.11.0\src\gnuwin32>make bitmapdll make -C bitmap make[1]: Entering directory
2005 Dec 29
1
use of predict() with confidence/prediction bands
To my understanding, a confidence interval typically covers a single valued parameter. In contrast, a confidence band covers an entire line with a band. In regression, it is quite common to construct confidence and prediction bands. I have found that many people are connecting individual confidence/prediction interval values produced with predict(object,sd.fit=T,type="conf/pred") and
1999 Oct 19
1
dos.time?
Dear R users, I just noticed that the function "dos.time" is no longer included with _ platform Windows arch x86 os Win32 system x86, Win32 status Release major 0 minor 65.1 year 1999 month October day 07 language R What if any is the difference between "system.time" and
2004 Oct 19
1
Cross compiling in R-2.0.0
Hello, When compiling R-2.0.0 for cross-compiling, I get the following error when calling 'make R' ---------- Making package base ------------ adding build stamp to DESCRIPTION /bin/sh: line 1: --vanilla: command not found make[5]: *** [frontmatter] Erro 127 make[4]: *** [all] Erro 2 make[3]: *** [pkg-base] Erro 2 make[2]: *** [rpackage] Erro 2 make[1]: *** [all] Erro 2 make[1]:
2007 Dec 30
1
Histogram with different colors for different portions
Dear Rusers, I would like to color different sections of a histogram different colors. I have an example that was done by "brute force" given below. Has anyone implemented something like this in general? If not, any suggestions/pointers on how to write a general function to do so would be most appreciated. Alan-
2005 Apr 17
1
Creating packages with windows (accessing data)
Dear R List, I have created a package (under Windows 2.0.1) with 300+ data sets and <20 or so functions I use in teaching. However, to access the data, one needs to type data(foo) once the package has been installed and loaded. With other packages namely MASS, after the package is installed and loaded with library(MASS), it is possible to refer to a data set say Animals by simply typing
1999 Feb 11
2
Installing on DEC 4.0b Alpha Server 2100A
Greetings, I am trying to install R (0.63.2) on a Digital Unix 4.0b Alpha Server 2100A using gcc 2.8.1 and f77 v 0.5.2.3. It seems to compile OK. However, when I try to run R I get the following message: R : Copyright 1999, The R Development Core Team Version 0.63.2 (January 12, 1999) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under
1998 May 04
0
No subject
1. How do I ask a question? 2. How do I answer a question? Question: At ftp://stat.auckland.ac.nz/pub/R/ in the subdirectory courses is the file r201. In r201.fun it states that "definitions are now compatible with Data Analysis by A. Lee". I checked with amazon.com but they don't have anything about this source. What is it? Where can I get it? How much does it cost? etc. Peter B.
2000 Feb 23
2
Files unavailable on CRAN
I've been trying to download from CRAN the floppy versions of the R source files: R-release-1.tar.gz, R-release-2.tar.gz I tried the servers in Seattle, Madison, and the Vienna Technical University. In each case, the file(s) were unavailable. Anne ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Anne E. York National Marine Mammal Laboratory Seattle WA 98115-0070 USA e-mail: anne.york at noaa.gov
2001 Apr 09
5
predict problem
Windows 98 R : Copyright 2001, The R Development Core Team Version 1.2.1 (2001-01-15) Dear friends. How comes this works and produce a single prediction: x <- rnorm(15) y <- x + rnorm(15) predict(lm(y ~ x)) new <- data.frame(x = seq(-3, 3, 0.5)) predict(lm(y ~ x), new, se.fit = TRUE) pred.w.plim <- predict(lm(y ~ x), new, interval="confidence") new1 <- data.frame(x=3)
2010 Jun 15
0
[LLVMdev] Question on X86 backend
Thanks Cristoph, I have that code in my backend, but unless I do the following, the registers are never considered 'live' into the call. / Handle a function call let isCall = 1, Defs = [ R0, R1, R2, R3, R4, R5, R6, R7, R8, R9, R10, R11, R12, R13, R14, R15, R16, R17, R18, R19, R20, R21, R22, R23, R24, R25, R26, R27, R28, R29, R30, R31, R32, R33, R34, R35, R36, R37, R38, R39, R40, R41,
1999 Nov 08
1
Nested Designs
Dear R list, What is the proper way to specify a nested model so that the F values agree with the expected mean square errors? Specifically, suppose I have a design where "Heads" are nested within "Machines". I would like to model the following Y_ijk = Mu + Machine_i +Head_j(i) +Error_k(ij). Using the commands below, > summary(aov(Strain~Machine + Head%in%Machine ))
2010 Jun 15
2
[LLVMdev] Question on X86 backend
Hi Micah, > In X86InstrInfo.td for Call Instructions, it mentions that Uses for > argument registers are added manually. Can someone point me to the > location where they are added as the comment doesn't reference a > where or how? the register uses are added by the function X86TargetLowering::LowerCall() during the DAG Lowering phase. This is the relevant code segment: // Add
2001 May 23
4
Matrix manipulation
Hi, Suppose I have a matrix with, say 12 columns. I would like to extract out column 2 ~ 8 and 11 ~ 12 then combine them together. I tried with success to extract out the columns by doing: foo <- test[,2:8] goo <- test[,11:12] However then I am having trouble combining foo and goo. Helps are appreciated! Cheers, Kevin ----------------------------------- Ko-Kang Kevin Wang
2001 Mar 01
3
How do you expand memory capability (Was: R crashes in Windows ME)
Hello- Since my data bank in SPSS has > 40 variables, I think that R crashes because of the memory limit. In Maindonald?s UsingR text, on pg 3, there?s a footnote that reads: "If you want larger memory space than the default you may want a target akin to <path to binary>\rw091\bin\rgui.exe --visize 30M --nsize 1000K [The default is --vsize 6M --nsize 250K
2001 Apr 02
2
tables of frequencies
Hi! How to make tables of frequencies in R? Thanks. Prof. Carlos A. S. de Andrade Universidade Federal da Para?ba Centro de Humanidades Departamento de Economia e Finan?as Tel.:83-333-5509(res) 310-1215(DEF/CH) E-mail: casandrade at super11.net cantonio at ch.ufpb.br -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list --
2001 Feb 02
3
R problem
hello!! i'm starting with R and i have some big problems:when i try to take a notepad document (or word) i can't put it into R!!!! i tried : read.table("nameofmyfile.dat") but it doesn't work!!!!! my computer says:error in file(file, "r"): cannot open file "nameofmyfile" I think i have to save my notepad file on another location....can u help me????? thank