Displaying 20 results from an estimated 4000 matches similar to: "Problems with rbind"
2004 Mar 25
3
subsetting based on vector
Dear R users;
I am trying to write a small program which reads in a data set, and selects 
observations from certain years before the analysis. I have a problem 
including the selection criteria in the header of the program.
Here is the problem;
dataFIT<-function(MODEL, MARGINS, yearConsidered){
    library(foreign
    CovPaper<-read.spss("C:/Data/data.sav")
    NewData <-
2003 Jan 29
1
Scoping rule problem -- solved
Thanks to some comments from Brian D. Ripley, I found my error:
I should not have given a data argument to lm() after creating a
formula-object. This obviously confused things...
Thanks again, I've really learnt again a bit more on R-programming...
Cheers, Winfried 
---------------------------------------------------------------------
E-Mail: Winfried Theis <theis at
2002 Aug 13
2
loess()
One more question...
I need to use the Loess() function in the package modreg. What is the argument
"formula" meant to be?
A
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the
2002 Aug 15
1
sorry!~I have a question
I have a question.
I can find a function about "Gaussian hypergeometric function" in sofeware Maple V.
I need this function to calculate.
Is there a similar function in R ?
Or I have to design such a function.
Thanks!
Jimmy Cheng
2002 Oct 10
2
Help?
Dear Sir :
I would ask if R contains some propreties to write the greeks(lambda, 
theta,xsi,......) en also if R can also the mathematics signs like 
integrals, indices.......
Your sincerly:
H.Zmarrou
University of Amsterdam:
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send
2003 Jan 23
2
Exporting graphics window
Hi
I'm working on a remote computer with R (SuSE 8.1) and I want to do some
ploting. Does anyone knows if it is possible to export the graphics
window in to my display and how I can do it ? 
Thanks
EJ
-- 
Ernesto Jardim <ernesto at ipimar.pt>
Marine Biologist
Research Institute for Agriculture and Fisheries
Lisboa, Portugal
Tel: +351 213 027 000
Fax: +351 213 015 948
2003 Jan 31
2
Varying texts in expression(paste())
Hi,
I am using R a lot to make plots relating to radioactivity, I am often using
expression() to label the plots with nuclide names written with
superscripts, e.g. 
	expression(paste("Releases of ", { }^{99},Tc," (TBq/year)"))->ywtext
But, is there any simple way to change the number and name of the nuclide
through a variable? I tried 
	nuccode=expression({ }^{99},Tc)
2002 Aug 06
2
help with lagged scatterplot
Hi,
How do I can make a lagged scatterplot of two variables:	
 Yt (nao) versus Xt-h (mei)
if they have the following structure:
>series
	     mei	nao
Jan 1950 -1.036  0.55
Feb 1950 -1.133  3.31
Mar 1950 -1.259  0.81
Apr 1950 -1.027  1.60
May 1950 -1.399 -1.73
Jun 1950 -1.366  1.26
Jul 1950 -1.300 -0.87
.
.
.
I've tried with lag.plot but I don't understanf how to use it
Thanks in
2002 Nov 05
5
LaTeX Output?
Hello all,
Does anyone know of an R proc to export matrices or data frames (preferably
with row and column names) directly into LaTeX table output?
Many thanks,
Dan
daniel_ho at harvard.edu
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or
2004 Jul 05
4
density(x)
Dear experts, 
when trying to estimate an kernel density function with density(x) I get the following 
error message with imported data from either EXCEL or text files:
Error in density(spr) : argument must be numeric.
Other procedues such as truehist work. If I generate data within R density works fine. 
Does anybody have an idea?
Yours
--
Christoph Hanck
Wissenschaftliche Hilfskraft
2003 Sep 09
1
ANOVA
I have Data like this:
  Tone     OQtil4   OQ0     GOtil4    GO0    SKrhsJ   SK0    RCrhsJ
RC0
1  HsLG -9.1347877 -2.97  -7.409590  -6.40  9.389357 20.60 10.688854
24.40
2  HsLG -7.9270569 -2.03  -7.861541  -6.90 10.165324 26.40 10.640183
23.10
3  HsLG -7.0394106 -1.26  -7.509566  -6.53 12.033194 30.87  9.401959
20.37
4  HsLG -6.8625610 -1.03  -7.645118  -6.68 10.372605 24.22  9.378803
17.82
5 
2000 Jun 21
3
x11 support missing
I just compiled R-1.1.0 on two systems, redhat 5.2 (sparse) and suse 6.3
(loaded) . On
redhad I got x11 support yes on suse I got x11support no. I cannot
figure out the difference
./configure gives in both cases
  Source directory:         .
  Installation directory:   /usr/local
  C compiler:               gcc  -mieee-fp -D__NO_MATH_INLINES -g -O2
  FORTRAN compiler:         g77  -g -O2
  X11
2001 Aug 13
3
subset syntax
Can anyone tell me what's wrong with this command??
xx<-subset(x,LOCAL.NAME==c("Chifumbata","Chikota"),select=c(13,16,19,23,26,2
9,30,33:48))
Warning message: 
longer object length
        is not a multiple of shorter object length in: LOCAL.NAME ==
c("Chifumbata", "Chikota")
both of the following commands work fine
2002 Aug 07
2
Constructing titles from list of expressions
Hello!
I have the following problem:
I have a function to construct three surfaceplots with a marker for an optimum,
each of the plots has as title paste("Estimated ",pred.var.lab," for
",var.lab[1]," vs. ",var.lab[2],sep="") with different var.lab[1,2] each time.
My problem is now that I need to allow for plotmath expressions in the
variables pred.var.lab
2001 May 02
2
rcode and latex
I have discovered the listings package for including code in your latex
documents.  The default languages do not include R or Splus, but the
definition is pretty simple, this is what I did for R:
\lst at definelanguage{R}%
{morekeywords={TRUE,FALSE,T,F,NA,NULL,Inf,NaN,library,%
  attach,detach,source,while,for,in,%
  repeat,switch,break,next,return,stop,function,%
  if,else,warning,error},%
2000 Aug 31
2
Multiv / hierclust / plclust
I use hierclust (hierarchical clustering) in multiv package. In the 
documentation it is said that plclust (plotting a dendrogram) is 
available in S-plus. Can I find it anywhere (I have searched through 
http://lib.stat.cmu.edu/S and found only quotations of plclust in 
multiv) or is it only part of the S package (which I don't have)?
Thanks
---------------
Charles RAUX,
Laboratoire
2000 Dec 21
1
statistical quality control
Hi all,
could anybody tell me whether there exist any packages about statistical
quality control. Thanks very much.
Stefano Tonellato
--
Stefano Tonellato
Dipartimento di Statistica
Universita' Ca' Foscari di Venezia
Campiello S. Agostin, S. Polo 2347
30125 Venezia - ITALY
Phone +39-041-2577422   Fax +39-041-710355
E-mail stone at unive.it
-------------- next part --------------
An
2000 Oct 18
1
Help oo sink
---------------------- Forwarded by Pan Yuming/Extern/AAM on 18.10.2000
12:58 ---------------------------
Pan Yuming
18.10.2000 11:41
To:   Prof Brian Ripley <ripley at stats.ox.ac.uk>
cc:
Subject:  Help oo sink  (Document link: Pan Yuming)
Dear professor,
continue with the example i used, i want to save the prediction results  but when i run a R file containing the following code, it
2001 Apr 30
2
R mode for emacs
Hi all,
I wonder if there is a R mode for emacs which highlights the R syntax.
If there is one, I would be interested in downloading the latest version
.
regards,
Olivier
--
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
Olivier MARTIN               phone: (33) 04 76 61 53 55
Projet IS2                               06 08 67 93 42
INRIA Rhone-Alpes            fax  : (33) 04 76
2001 May 30
2
Graphics
Please, will someone tell me why graphics are not displayed at all when
I use a graphical function. Is there some additional software required
to see the graphics?
ThankYou
CJoseBento
Portugal
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or