Displaying 20 results from an estimated 10000 matches similar to: "storing objects (lm results) in an array"
2003 Oct 08
1
using split.screen() in Sweave
Dear R and sweave users
A further problem, which I couldn't resolve, using the manual: In R I
use the split.screen command to put e.g. two timecourses one above the
other into one plot:
split.screen(c(2,1))
screen(1)
plot(stick,type='h', col="red",lwd=2)
screen(2)
plot(deconvolution.amplitude,type='h',col="blue",lwd=2)
Is there a similar way, doing this
2005 Apr 21
2
apply vs sapply vs loop - lm() call appl(y)ied on array
Christoph --
There was just a thread on this earlier this week. You can search in the
archives for the title: "refitting lm() with same x, different y".
(Actually, it doesn't turn up in the R site search yet, at least for me.
But if you just go to the archive of recent messages, available through
CRAN, you can search on refitting and find it. The original post was from
William
2002 Sep 03
1
t(xmat)
Hi,
I have a matrix and time series "xmat". I have no problem executing any matrix functions except t(xmat) which gives the following error message. My question if "xmat" is a matrix why I can not execute this matrix function?? converting the time series and matrix into a data frame solves the problem
>dim(xmat)
[1] 98 7
> t(xmat)
Error in "tsp<-"(*tmp*,
2002 Dec 18
6
Can I build an array of regrssion model?
Hi,
I am trying to use piecewise linear regression to approximate a
nonlinear function. Actually, I don't know how many linear functions I
need, therefore, I want build an array of regression models to automate
the approximation job. Could you please give me any clue?
Attached is ongoing code:
rawData = scan("c:/zyang/mass/data/A01/1.PRN",
what=list(numeric(),numeric()));
len =
2004 Jan 14
1
array(list(),c(2,5)) gives error in R 1.8.1
Hi
In R 1.7 the following worked fine:
> array(list(),c(2,5))
[,1] [,2] [,3] [,4] [,5]
[1,] NULL NULL NULL NULL NULL
[2,] NULL NULL NULL NULL NULL
now in R 1.8.1 I get the error:
Error in rep.int(data, t1) : invalid number of copies in "rep"
In addition: Warning message:
NAs introduced by coercion
thanks for help, I need this possibility for storing objects (lm
results) in
2003 Dec 10
2
OT: BibTex year-only citation in text?
Sorry for the off-topic question, but I know there are some talented
LaTeX users out there. Which bibliography style gives only the year in
text citations (e.g "for further details, see Anderson (1992)" )?
Thanks
Jason
--
Indigo Industrial Controls Ltd.
http://www.indigoindustrial.co.nz
64-21-343-545
jasont at indigoindustrial.co.nz
2003 Nov 01
2
Question about the high dimensional density estimation
Hi,
I found that the R package "KernSmooth" can deal with only 1D and 2D data. But now I have a collection of 4-dimensional data (x1,x2,x3,x4) and would like to estimate the "mode" of the underlying density. What can I do about it ?
Thanks a lot.
--
Ying-Chao Hung
Assistant Professor
Graduate Institute of Statistics
National Central University
Chung-Li, Taiwan
TEL:
2003 Oct 21
5
run R under linux
Dear all,
Our department uses the linux system and we are not allowed to submit job
directly. We must make a batch to submit through "qmon".
so, I make a foo.sh file, which only contains one line: nohup R --vanilla <
foo.txt > foo.results
foo is all my codes. It is a simulation of 200 times. I set the seed at the
beginning. It is to estimate the success probability, which is
2003 Dec 18
2
diagnostic information ....
Paul E. Johnson wrote:
> I handed out some results from glm() and the students ask "how many
> observations were dropped due to missing values"?
>
> How would I know?
>
> In other stat programs, the results will typically include N and
> the number dropped because of missings. Without going back to R and
> fiddling about to find the total number of rows in
2003 Dec 21
3
Sweave/LaTeX Problem with EPS PDF
Dear List:
I am unsure if my problem is with Sweave or LaTeX. Anyhow, I am using the MikTeX distribution and TexnicCenter.
I can easily create Sweave files and all goes well until I try to incorporate graphics. I use the same code as found in the examples found in the users manual.
In R, the graphics I want are created as Sweave is creating the .tex file. When I examine the .tex file
2003 Dec 02
3
check WARNING...
I've been developing a package and have been getting the following warning
when running the check command:
* checking S3 generic/method consistency ... WARNING
plot:
function(x, ...)
plot.summaries:
function(trees, sp)
* checking for replacement functions with final arg not named 'value' ... OK
* checking Rd files ... OK
...blah, blah, blah...
* checking examples ... OK
*
2003 Oct 28
3
ts vs. POSIX
OK.
What if I have a time series which is collected every Monday, please?
What is the proper way to use the start option within the ts command
in order to indicate that this is Monday data, please?
Thanks again!
Sincerely,
Erin
2003 Oct 01
5
lda source code
I am new to R. Trying to find out how lda() {in MASS R1.8.0 Windows} was
implemented in R. Does anyone know where to find out lda source code ?
Thanks.
Wei
2003 Dec 04
4
bug in as.POSIXct ?
I think that there is a bug in the as.POSIXct function on Windows.
Here is what I get on Win2000, Pentium III machine in R 1.8.1.
> dd1 <- ISOdatetime(2003, 10, 26, 0, 59, 59)
> dd2 <- ISOdatetime(2003, 10, 26, 1, 0, 0)
> dd2 - dd1
Time difference of 1.000278 hours
Now, the 26th of October was the day that change to the standard time
occurred, so I suspect that this has
2002 Apr 29
3
how to trap any warnings from an R function
Within an user function, how are the warnings from an R function be trapped
(such that some proper actions can be taken)? 'last.warning' is returned
only at the top level. Pointers are appreciated.
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info",
2003 Jun 01
6
compositional data: percent values sum up to 1
again, under another subject:
sorry, maybe an all too trivial question. But we have power data from J
frequency spectra and to have the same range for the data of all our
subjects, we just transformed them into % values, pseudo-code:
power[i,j]=power[i,j]/sum(power[i,1:J])
of course, now we have a perfect linear relationship in our x design-matrix,
since all power-values for each subject sum up
2003 Sep 09
1
Newbie question about plotting density objects
Dear List,
I have an array of 6400 x 56 elements. I want to calculate the density function for each column and plot all 56 density functions in one plot.
I have tried several procedures, but they all failed.
What can I do?
TIA
Christian
[[alternative HTML version deleted]]
2011 May 04
2
what happens when I store linear models in an array?
I've got a bunch of similar datasets, all of which I've fit to linear
models. I'd like to easily create arrays of a specific parameter from each
linear model (e.g., all of the intercepts in one array). I figured I'd put
the model objects into an array, and then (somehow) I could easily create
corresponding arrays of intercepts or residuals or whatever, but I can't the
2003 Nov 06
4
building r-patch
Hi,
I am building r-patch from the sources (rsync-ed today).
make check produced the following message:
running tests of Internet and socket functions
expect some differences
make[3]: Entering directory `/usr/evahome/vograno/R/tests'
running code in 'internet.R' ... OK
comparing 'internet.Rout' to './internet.Rout.save' ...18c18
< Content type `text/plain;
2004 Mar 29
2
c() question
Hi
I need to define the following
c("one group" = class.weight[2], "other group" = class.weight[1])
#class.weight = c(1,2)
but I don't like the hard-coded way and would like to use
my.group <- array(c("one group", "other group"))
but now
c(my.group[1] = class.weight[2], my.group[2] = class.weight[1])
gives an error
how can I solve this