Displaying 3 results from an estimated 3 matches for "ynt".
Did you mean:
int
2023 Oct 16
1
Ynt: creating a time series
hello,
because ? have data between these times and it has 177647 elements
________________________________
G?nderen: Marc Girondot via R-help <r-help at r-project.org> ad?na R-help <r-help-bounces at r-project.org>
G?nderildi: 16 Ekim 2023 Pazartesi 13:43
Kime: r-help at r-project.org <r-help at r-project.org>
Konu: Re: [R] creating a time series
Why did you expect to have
2017 Dec 04
0
YNT: ggtern and bquote...
reading ?plotmath you might notice that "_" isn't the propper syntax for
subscripts. This will work:
ggtern(data=x11,aes(A,B,C,xend = c(0.7,.00,0.7),yend =
c(.30,.50,.0),zend =c(.0,.50,0.3)))+
geom_point()+
theme_showarrows()+geom_segment(size=.5)+
geom_text_viewport(x=c(.45,.27,.37),y=c(.32,.29,.22),label=c("P[a]","P[b]","P[c]")...
2017 Dec 04
1
YNT: ggtern and bquote...
...package
(which is based on 'grid' the same as 'ggplot2' is ..) sometimes
expressions instead of calls are needed, i.e., expression(*)
instead of just quote(*).
However, I think Levent really meant what you'd get by
expression(P[a]) ?
@Levent: The clue is the need for valid R syntax, and indeed, as
in LaTeX x_i often is the i-th element of x, the R syntax for
indexing/subsetting is used here, i.e.
x[i] for LaTeX x_i
Last but not least, if Levent really needs bquote() [i.e. substitute()]
then, a final
as.expression(.)
may be needed :
identical(as.expres...