Displaying 5 results from an estimated 5 matches for "survis".
Did you mean:
jurvis
2008 Dec 17
4
Plot multiple lines, same plot, different axes?
Dear list,
I would like to plot 2 series of numbers with very different ranges/scales as lines on the same plot. I assumed this is commonly done and easy, but I have not found any help files (e.g. axis() or matplot() that show how. I've searched many old posts to no avail.
I'll be very grateful for any suggestions on how this is done.
Best,
Zack
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
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]){
>
2018 May 10
0
(no subject)
We need some idea of the problem.
http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example
http://adv-r.had.co.nz/Reproducibility.html
On Thursday, May 10, 2018, 11:07:30 a.m. EDT, malika yassa via R-help <r-help at r-project.org> wrote:
Hello
Do You help me, i have the problem in the package DTDA for ?find the probability of truncation
2018 May 14
0
(no subject)
hello
> p(X ? V) diffetente zero
> look this
> Let X and V be two independent random variables with unknow
>? distribution functions (d.f.?s) F and G respectively. Under truncation from the right we observe (X, Z) only if X ? Z
> I simulate X and Z and I use Lynden bell estimation
> I need now to calculate alpha =p(X ? V)but no p(X ? V)=0
>?
> >
> >
> >