similar to: error: contextstack overflow

Displaying 20 results from an estimated 8000 matches similar to: "error: contextstack overflow"

2016 Apr 19
0
Indicator Species analysis; trouble with multipatt
Hi Ansley It looks good to me but I did not run the analysis as I am too lazy to install "indicspecies". The inclusion of the raw data is a great help. John Kane Kingston ON Canada -----Original Message----- From: daily.puja at gmail.com Sent: Tue, 19 Apr 2016 08:16:54 -0400 To: jrkrideau at inbox.com Subject: Re: [R] Indicator Species analysis; trouble with multipatt Thanks for the
2016 Apr 15
0
Odds Ratio and OR CI
Please don't post in HTML. Your post is almost unreadable Also,lease have a look at http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example and/or http://adv-r.had.co.nz/Reproducibility.html for some suggestions about what you should include in your question. Welcome to R. John Kane Kingston ON Canada > -----Original Message----- > From: rosita21 at
2007 Feb 20
1
contextstack overflow
Hello! I written several implementations in R of R?my's algorithm for generating random ordered strictly binary trees on 2n+1 vertices. One implementation involves manufacturing character strings like: "X <- list(0,list(0,0))" for the case n=2. If I perform the following two steps: cmd <- "X <- list(0,list(0,0))" eval(parse(text=cmd)) then X becomes a true
2016 Apr 12
0
error: contextstack overflow
Dear r users I've a loop that has 20 if else statements but it gave me the ""contextstack overflow"" error at statement 14 Is there any way to overcome this problem cause i'm forced to do that loop any help or recommendations please
2008 Mar 17
3
contextstack overflow
Hi all, I´m an absolute beginner in R programming…I have a really long R-code with many variables. When I run the program I always get an error at the same place called “contextstack overflow”. Does anybody know what to do in this case? Are there so strict limitations in R? If yes, is it possible to handle it? How? Thank you for any help! [[alternative HTML version deleted]]
2013 May 24
2
xtable() with booktabs option problem
I could have sworn that yesterday xtable(file, booktabs = TRUE) was giving me toprule , midrule and bottomrule outout. Today : library(xtable) aa <- table( sample(letters[1:9], 100, replace = TRUE)) xtable(aa, booktabs = TRUE) gives me \begin{table}[ht] \centering \begin{tabular}{rr} \hline & V1 \\ \hline a & 15 \\ b & 11 \\ c & 13 \\ d &
2008 Dec 18
2
Contextstack overlow
All - I have a number of rows that I am assigning length classes to via l.class<-with(wae, ifelse((Length>=120)&(Length<130),"125", ifelse((Length>=130)&(Length<140),"135", ifelse((Length>=140)&(Length<150),"145", ifelse((Length>=150)&(Length<160),"155",
2016 Apr 19
0
Indicator Species analysis; trouble with multipatt
Hi Ansely, As Jim points out we really need some sample data to go with the code. Have a look at ?dput which is the best way to supply sample data here or have a look at http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example and/or http://adv-r.had.co.nz/Reproducibility.html for some general suggestions on asking questions here---including discussions of using
2016 Apr 10
0
unbalanced number of rows
Please have a look at http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example and/or http://adv-r.had.co.nz/Reproducibility.html It looks like you have posted in HTML and the post is close to unreadable. The data is welcome but we really should have in in dput() form. Do ?dput() for more information. John Kane Kingston ON Canada > -----Original Message-----
2013 Apr 03
7
Canadian politcal party colours in ggplot2
A stupid question but does anyone know how to express the actual colours used by the main Canadian political parties? I want to do a couple of ggplot2 plots and have lines or rectangles that accurately reflect the party colours. I can probably play around with RColorBrewer or something to figure it out but if some some already has got them it would save me some time especially with the NDP
2013 Apr 27
1
Bls: RE: example
Dear Sir, Yes, I want to generate the data by two Gaussian but mean from one of them generatated from polar its coordinates. I am confused about the algorithm? I know how to generate two Gaussian data with certain mean&covariance matrix using mvnorm but what about mean from its polar coordinates? Thanks for your help. Best wishes, Iut ------Pesan Asli------ Dari: John Kane Ke: Iut Tri Utami
2018 May 12
3
(no subject)
hello for exampl, i have this programme # Generating data which are right truncated library(DTDA) library(splines) library(survival) n<-25 X<-runif(n,0,1) V<-runif(n,0.75,1) for (i in 1:n){ while (X[i]>V[i]){ X[i]<-runif(1,0,1) V[i]<-runif(1,0.75,1) }} res<-lynden(X=X,U=NA, V=V, boot=TRUE) attach(res) temps = time M_i = n.event L_t = res
2016 Apr 13
0
reduced set of alternatives in package mlogit
To back up Ber's please have a look at http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example and/or http://adv-r.had.co.nz/Reproducibility.html John Kane Kingston ON Canada > -----Original Message----- > From: jose.ferraro at logiteng.com > Sent: Wed, 13 Apr 2016 17:18:35 +0000 > To: cdesjard at umn.edu > Subject: Re: [R] reduced set of
2012 Jun 27
0
ggplot2 ordering in a faceted dotplot.
am trying to produce two dot plot figures in ggplot2. So far the first one (p) in the program below is working fine. However when I want to move to a faceted plot (p1) I seem to lose my ordering or, more likely, I'm just getting an ordering I am not expecting and I always have trouble understanding ordering in R! What I would like is the 2011 panel to be ordered in descending order as is
2013 Mar 22
4
ggplot2 will not draw a rectangle. Error: ggplot2 doesn't know how to deal with data of class XXX"
What am I missing? When I run the code below I get the error message "Error: ggplot2 doesn't know how to deal with data of class function" Googling suggests a message of "Error: ggplot2 doesn't know how to deal with data of class XXX" is not uncommon but I don't see why I am getting a "function" error unless I am using some reserved word?
2012 May 03
6
Cannot read or write to file in Linux Ubuntu
I am the proud owner of a new laptop since my old one died the other day. Currently I have a dual-boot Windows 7 Home and Ubuntu 12.04 . I'll leave the Windows problems for another post. I know practically nothing about Linux so I am probably doing something stupid but ... at the moment I cannot seem read or write files in Ubuntu. I am not having any problem saving other documents to the
2013 Jun 11
2
ggpairs in GGally replaces plotmatrix in ggplot2
Hi Keith,, ggpairs(dat1, upper = list(continuous = "density", combo = "box")) appears to be what you want. John Kane Kingston ON Canada > -----Original Message----- > From: kw1958 at gmail.com > Sent: Tue, 11 Jun 2013 09:25:48 -0400 > To: r-help at r-project.org > Subject: Re: [R] R-help Digest, Vol 124, Issue 12 > > Folks, > > Sorry for
2018 May 13
0
(no subject)
> On May 12, 2018, at 9:42 AM, malika yassa via R-help <r-help at r-project.org> wrote: > > > hello > for exampl, i have this programme > # Generating data which are right truncated > library(DTDA) > library(splines) > library(survival) > n<-25 > X<-runif(n,0,1) > V<-runif(n,0.75,1) > for (i in 1:n){ > while (X[i]>V[i]){ >
2017 Aug 24
0
Pull data from Tally 9.1 to R studio
IIt might help to read the material at one or both of these links http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example Reproducibility ? Advanced R. | | | | Reproducibility ? Advanced R. | | | On Thursday, August 24, 2017, 6:19:25 AM EDT, John Kane <jrkrideau at yahoo.ca> wrote: On Thursday, August 24, 2017, 1:50:13 AM EDT, David
2024 Feb 05
1
ggarrange & legend
I'm sorry but that is not a working example. A working example needs to create the plots being used. For example, stealing some code from https://rpkgs.datanovia.com/ggpubr/reference/ggarrange.html #================================================================= data <https://rdrr.io/r/utils/data.html>("ToothGrowth")df <- ToothGrowthdf$dose <- as.factor