Displaying 20 results from an estimated 7000 matches similar to: "sending help output to a file"
2007 Sep 24
1
hypothesis testing
This was sent to me by someone on the R-list ( I don't know her ) but I
don't have time to look at this right now so I told her I would send
it to the R-list because she said it keeps getting bounced when she
sends it.
#=======================================================================
====================================================================
I am a bit confused with
2006 Oct 02
1
install packages question
I am at a new job where my sys admin installed R in linux and it does
run when I log in as a user. I am on linux 2.1.2 but i'm not sure if
it''s redhat etc ( but i doubt this matters for my question ).
The alias put in my .envfile ( for the kshell ) is
R =
"/ms/dev/fsf/R/2.0.0/install/.exec/ia32.linux.2.4.lib6/lib/R/bin/exec/R"
and my R_HOME is
2004 Nov 01
1
case-insensitive ZIP
A development note:
In the function "install.packages", it would be helpful to those of us
who have atypical installations and install manually from ZIP files to
have
pkgnames <- sub("\\.zip$", "", pkgnames)
replaced with
pkgnames <- sub("\\.zip$", "", pkgnames, ignore.case = TRUE)
because the contributed zipfiles are ZIPfiles. The
2004 Nov 01
1
case-insensitive ZIP
A development note:
In the function "install.packages", it would be helpful to those of us
who have atypical installations and install manually from ZIP files to
have
pkgnames <- sub("\\.zip$", "", pkgnames)
replaced with
pkgnames <- sub("\\.zip$", "", pkgnames, ignore.case = TRUE)
because the contributed zipfiles are ZIPfiles. The
2006 Oct 09
1
read.zoo question
I have comma delimited asci data with each row being in the format :
2006-01-24 02:41:24.00011,1.22930000,5,1.22950000,7
.
.
.
.
and i'm trying to use read.zoo ( which is similar to read.table ) to
read in the data. the data goes all the way out to milliseconds and i
can't figure out what to put for the format field. if i put nothing,
then read.zoo gets rid of the the whole time and
2006 Oct 18
2
not understanding a do.call
I did a ?do.call but i don't think i understand it.
if a, b,c,d are numeric vectors then could someone explain the
difference between
do.call("cbind",list(a,b,c,d))
and cbind(a,b,c,d).
or point to an archive on it.
the return value of cbind is a matrix or dataframe depending on what is
sent in but i don't
understand wheen it would be useful to use do.call. i realize it
2004 Oct 28
0
Auxilliary args in gls
I am trying to fit a B-spline regression model with a corStruct using
gls. I am using bs() and specifying the knots myself. If I make the
knots data-dependent, this works but has undesirable side-effects. I
prefer to reference an auxilliary variable "knots" in my model formula.
It should not be part of the data frame, as it is a vector of a
different length. How can this be done?
The
2006 Oct 29
0
error when loading a second session of R
Hi : Whenever I try to run R in a second session( but not in the same
working directory ) , I get the error below
Error in dyn.load(x, as.logical(local), as.logical(now)) :
unable to load shared library
'/u/etlfs/dev/users/leedsmar/res/R/lib/chron/libs/chron.so':
/lib/i686/libc.so.6: version `GLIBC_2.3' not found (required by
2006 Oct 23
0
likelihood question not so related to R but probably requires the use of R
I have a question and it's only relation to R is that I probably need R
after I understand what to do.
Both models are delta y_t = Beta + epslion
and suppose I have a null hypothesis and alternative hypothesis
H_0 : delta y_t = zero + epsilon epsilon is normal ( 0,
sigmazero^2 )
H_1 delta y_t = beta + epsilon epsilon is normal (
sigmabeta^2 )
2006 Oct 17
1
looking for a cleaner way to do something
I have two numeric vectors each of length 17 and each is named the exact
same way.
so
obsnum ppppp ppppm pppmp . dot dot dot......
temp1 is 1417 52 63 85
obsnum ppppp ppppm pppmp . dot dot dot......
temp2 is 1213 41 50 97
what i want to have is a resultant matrix with 2 rows and 16 columns
where the 16
2006 Oct 19
2
hit return key before next gaph appears
i am looping and creating plots which are coming to the screen. i am in
linux and remember ( in a previopus life ) i used to use a command so
that the next graph n + 1 didn't appear on the screen until
i hit the return key after graph n appeared. i thought i remeber using
the command unix but when i type unix at the r prompt, it gices me
system. it's probably a deprecated
command then but
2006 Oct 28
1
update on my weird problem
as jim pointed out ( i think we were figuring this out simultaneously.
thanks a lot jim ), it looks it does have something to do with the
fact that it's a zoo object because below i consider two cases.
in the first case, fxdatab is a zoo object and i get the length of temp
to be 1.
in the second case, fxdatac is a matrix and the results in temp are
correct.
gabor : i really hate to bother
2006 Oct 03
2
setting the environment variable R_LIBS
Thanks to Peter Dalgaard , I have made some decent progress as far as
getting R to work in linux . I just want to set my environment variable
R_LIBS to /u/etlfs/dev/users/leedsmar/R/library ( in linux ) so that I
can install specific packages. Does anyone know the syntax and in which
file I set this variable ( .Rprofile etc ).
I've looked in the installation manual ( i'm mainly on pg 14
2006 Nov 01
1
did my searching but still couldn't find anything for bayesian dlm
I familarized myelf with kalmanlike and structts which are approaches
for building and estimating ( and forecasting ) state space models ( or
the equivalent arima models ).
back in 2003, gavin simpson wrote an email describing the west and
harrison apprach to estimate state space models and asked if anything
was out there for
using that approach. the goals of this approach are the same as kalman
2007 Jul 26
0
Diagonal Submatrices Extraction
Yes you are right ... an example is mandatory.
So ... I have a matrix of 0 with just a single 1 per row and per column
I need to extract all maximal 'diagonal' submatrices
Let's say I have the following matrix
A B C D E
a 0 1 0 0 0
b 1 0 0 0 0
c 0 0 1 0 0
d 0 0 0 1 0
e 0 0 0 0 1
well I would like to get, for this example, the two following submatrices
A B C D E
2006 May 02
1
Use predict.lm
Hi All,
I created a two variable lm() model
slm<-lm(y[1:3000,8]~y[1:3000,12]+y[1:3000,15])
I made two predictions
predict(slm,newdata=y[201:3200,])
predict(slm,newdata=y[601:3600,])
there is no error message for either of these.
the results are identical, and identical to slm$fitted as well.
if this is not the right way to apply the model coefficients to a new
set of inputs, what is
2006 Oct 18
1
trying to rotate barplot labels
hi everyone : i'm trying to rotate the x axis labels in my barlot ( yes,
since yesterday ) and my prob12matrix is 2 rows and 16 columns and i
followed the instructions in the
archive "rotate barplot labels". i was really looking forward to seeing
my labels turned but the plot just came back with no labels ? can anyone
see what might be going on ?
it worked when i followed the
2007 Mar 31
0
X11 and linux and plotting and the vertical axis
I use R on linux and I go through exceed from a windows machine.
Depending on the amount of plots I do on a screen, sometimes the numbers
on the vertical axis
of the plots don't show up. I tried infinite of combinations of mar and
cex but nothing helps.
Yet, if instead of shooting the graphic upto the screen, I send it to a
pdf file or
a postscript file, the numbers on the vertical axis of
2006 May 02
2
Time series plot
I have some time series data like
01/02/1990 0.531 0.479
01/03/1990 0.510 0.522
01/06/1990 0.602 0.604
there is no weekends and holidays.
how do I graph them in a single plot that the x-axis is the dates and
the y-axis is the time series?
Thank you
Regards,
Jincai Jiang
(Office) 212-761-3984
--------------------------------------------------------
This is not an offer (or solicitation
2006 Oct 30
1
as.zoo question
this is probably a question for gabor or achim but maybe someone else
can answer it in case they are not around ?
Ifr you paste the code below ( again you would need the zoo and chron
libraries to be installed ),
you should get the error
"Error in Ops.POSIXt(frequency, freq) : %% not defined for "POSIXt"
objects".
What I want to do is take the numeric vector, lt, and