Displaying 3 results from an estimated 3 matches for "predction".
Did you mean:
prediction
2018 Sep 09
2
Confusion about linear prediction within flac
...ar as I understand you
must also store part of original signal with length equal to the
prediction order since you need the previous samples to predict the
next sample of which only the residual is known. For the next values
the residual is used to retrieve the original value which is fed into
the predction model to further reconstruct the time series. Is this
correct?
Kind Regards,
Robin Decker
2018 Sep 09
0
Confusion about linear prediction within flac
...t; must also store part of original signal with length equal to the
> prediction order since you need the previous samples to predict the
> next sample of which only the residual is known. For the next values
> the residual is used to retrieve the original value which is fed into
> the predction model to further reconstruct the time series. Is this
> correct?
Yes.
2005 Jan 27
0
Output predictions based on a Cox model
Hi,
I've generated a cox model, but I'm struggling to work out how to output
predctions based on the model I've made.
my.model<-coxph(Surv(duration,status) ~ gender + var1 + var2,
data=mydata)
My test data set looks something like this:
id,actualduration,gender,var1,var2
a,65,m,1,3
b,34,f,1,5
...
What i need to do is for each id, output a predicted duration based on
my cox...