Displaying 20 results from an estimated 10000 matches similar to: "Compile from Source."
2001 May 14
0
Re: s+
Well, R is not S+ nor SPSS. Although it is sort of similar to S+ in terms of how you use it...
You can get it from http://cran.r-project.org/
To know more about what it really is, you can get my PowerPoint presentation from:
http://www.stat.auckland.ac.nz/~kwan022/pub/R/Introduction/
or and article I wrote from:
http://www.stat.auckland.ac.nz/~kwan022/pub/SDK/SAD/Journal/
If you're a
2001 Aug 15
2
FORTRAN in R
Hi,
Can anyone tell me what might cause this error message?
Error in .Fortran("swallocate", as.double(mtx), as.double(wt),
as.integer(n), :
C/Fortran function name not in load table
This occurs when I copied the Splus stepwise() function into R. I can
source into R fine, but when I need to call that function on some dataset,
I got the above error message.
Platform
2001 Sep 19
2
Save/Display R Work
Hi,
I was tutoring in the lab when a student asked me this question.
Is it possible to save the work done in R, then source it back in AND
display all the work within R later? I know that one can save the history
(i.e. all the codes in a session) in *.R format, then source it back in at
a later stage. However the historical codes will not be displayed within
R, only the line source(...) is
2001 Aug 25
2
Writing R Library
Hi there,
I'm trying to write an R library (for Windows version) when I encountered
this problem.
I put in a dataset called mussels into a sub-folder, data (I saw this is
how it is done in other libraries). However when I load the library in R
and typed:
data(mussels)
it complains it cannot find the data set in the library.
Everything else works fine (so far), am I missing something
2001 Aug 14
1
loess() v.s. lowess()
Hi there,
Just out of curious, is there any difference between loess() and
lowess() in R (and Splus in fact).
Which one is more often used?
Thanks,
Ko-Kang Wang
------------------------------------------------------------------------------
Ko-Kang Kevin Wang
Statistical Analysis Division Leader
Software Developers' Klub (SDK)
University of Auckland
New Zealand
2001 Oct 15
1
An Introduction to R - LaTeX Code
Hi,
I am interested in seeing the LaTeX version of R manuals (such as An
Introduction to R), and I found from CRAN that:
"The texinfo sources of the latest version of these documents are
contained
in every R source distribution (in the subdirectory doc/manual of the
extracted archive). "
However when I went into that directory I only found the pdf and html
version. Are there any
2001 Mar 21
3
Output Files..
Hi,
Somehow I forgot how to do this...
Say I have a command that produced a 28 x 28 data matrix. How can I output the matrix into a txt file (rather than copy/paste the matrix)?
Thanks...
Kevin
-------------------------------------------------
Ko-Kang Kevin Wang
Statistical Analysis Division Leader
Software Developers' Klub
University of Auckland
New Zealand
2001 Aug 12
3
gam() and library( modreg )
Hi,
I'm just wonder if there is an R equivalent function of gam() - which
exist in Splus.
Also does anyone know if the library( modreg ), which comes with the
installation file of R 1.3.0 (Windows version), exists in the previous
versions of R (again, Windows version)? Or does one need to install the
library into the previous versions of R explicitly?
Thanks,
Ko-Kang Wang
2001 Mar 15
2
Alternative to list()
Hi,
Suppose I have a dataset with 10 columns, let's call it "foo".
Now if I want to extract out only column 2 ~ 8, then I know I can use either:
foo[ ,2:8]
or
fooNew <- list( foo[ ,2:8] )
(Is there any other alternative, just out of curiosity?)
But, if I only want, say, column 1, 4 and 7, I tried:
fooNew <- list( x = foo[ ,1], y = foo[ ,4], z = foo[ , 7] )
2002 Jan 09
3
Build R Packages (man)
Hi there,
I'm trying to get the manual for an R package (that I'm creating) to
work...
Firstly, I created the *.Rd files (by following the instructions in
"Writing R Extensions" and using prompt() in R, then edit the *.Rd
files. I then copy them into the "pkg/man" directory as suggested by the
manual. However when I load the library (successfully) in R, I cannot
2002 Jan 19
1
Build R-patched from Source
Hi,
If I want to build R-patched from source (on Windows), do I need to edit
Makefile and/or MkRules at all?
I have followed all instructions in the INSTALL file (under
R-patched/src/gnuwin32/), as well as downloaded all the files from
http://www.stats.ox.ac.uk/pub/Rtools/ . My PATH variable has been
modified accordingly.
Now, with the only change to MkRules I made was to modify the Tcl/Tk
2002 Apr 15
1
Re: Writting R Function
Hi,
I think I found the problem. It lies in my Fortran program. Is there a
way, after a DO loop, to make sure it does NOT return anything?
Cheers,
Kevin
On Mon, 15 Apr 2002, Ko-Kang Kevin Wang wrote:
> Date: Mon, 15 Apr 2002 17:27:20 +1200 (NZST)
> From: Ko-Kang Kevin Wang <kwan022 at stat1.stat.auckland.ac.nz>
> To: R Help <r-help at stat.math.ethz.ch>
> Subject:
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 16
2
apply()
Hi,
I input this command on a data matrix:
> apply( traffic, 2, function(z){z-mean(z)})
and got the following error messages:
Error in sum(..., na.rm = na.rm) : invalid "mode" of argument
Can anyone tell me what is wrong here?
Running R1.2.2 on Windows ME.
Cheers,
Kevin
-------------------------------------------------
Ko-Kang Kevin Wang
Statistical Analysis Division
2001 Mar 29
1
screeplot() v.s. plot()
Hi,
Suppose I've got a data set that I found the eigenvalues and eigenvectors. Then I want to draw a screeplot for the eigenvalues. However it returns:
Error in matrix(w.m, nc = NC) : negative extents to matrix
Then I tried a plot() function on the eigenvalues of the data set, and I can successfully draw it! And the output looks like what the screeplot would show to me.
Is there any
2001 Apr 08
1
Random Number Testing...
Hi,
Suppose I want to test a set of random numbers (using the Binormal random
number generator), input the following command to generate a set of random
numbers:
test <- rbinom( 10000000, 1, 0.5 )
How can I, after obtaining the result, export the vector "test" into an text
file?
Then, suppose I want to do something like:
> x <- 1e10
> x
[1] 1e+10
2001 Sep 25
2
pairs() Legend
Hi,
Is it possible to create a legend in a pairs() plot?
For example, suppose I have the following R codes:
data(iris)
pairs(iris[1:4], main = "Anderson's Iris Data -- 3 species",
pch = 21, bg = c("red", "green3", "blue")[codes(iris$Species)])
How can I created a legend that shows which colour represents to which
Iris species?
Thanks,
2001 May 02
2
Export to File...
Hi,
I've been reading the Data Import and Export manual (page 25 on Connection
chapter) but somehow I can't manage to get what I want.
I have a 28x28 distance matrix, which I would like to export to a file.
What I did was something like:
zz <- file("ex.data", "w") # open an output file connection
cat( traffic.manDist, file = zz ) # traffic.manDist is my
2001 Apr 03
0
PICT output? R plot to word
On 3 Apr 01,, R-help Digest wrote (re: R-help Digest V2 #382):
> - ----- Original Message -----
> From: "Mark Myatt" <mark at myatt.demon.co.uk>
> To: "Greg Trafton" <trafton at itd.nrl.navy.mil>
> Cc: <r-help at stat.math.ethz.ch>
> Sent: Monday, April 02, 2001 9:31 PM
> Subject: Re: [R] PICT output?
>
> > > 2) Is there a way
2002 Sep 18
2
More on list to data frame (was: Re: List to Data Frame
Hi,
Now suppose I have just one list called FOO, which has 25 objects, e.g.:
[[1]]
1 2 3 4 5
[[2]]
6 7 8 9 10
.
.
.
And I want to do something like:
FRED <- data.frame(cbind(unlist(FOO[[1]]),
unlist(FOO[[2]]),
# ... for all 25 subsets
))
Is it possible to do this, without doing unlist(FOO[[i]]) 25