Re: [R] (no subject)

2018-05-12 Thread John Kane via R-help
Thanks I think that may help but it is outside my small area of knowledge. With any luck, someone will be along soon to give some help. Why are using attach(res)? I don't see the need. Good luck. On Saturday, May 12, 2018, 12:50:24 p.m. EDT, malika yassa wrote:

Re: [R] (no subject)

2018-05-12 Thread malika yassa via R-help
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)

Re: [R] help with json data from the web into data frame in R

2018-05-12 Thread K. Elo
Hi! Seems to be an encoding problem. This worked for me (have not full- checked the output, though): fromJSON(encodeString(zWebObj)) HTH, Kimmo 2018-05-08 12:49 -0700, David Winsemius wrote: > > > > On May 8, 2018, at 10:08 AM, Evans, Richard K. (GRC-H000) > k.ev...@nasa.gov> wrote: > > > >