Note: for numerical values you enter numbers without " ", for factor variables you enter the "label"
```
df<-data.frame(res=c("ModHigh"), age=c(21), sex=("female"), train=c("clinical"), bdi=c(4))
pred<-predict(adj.model6,df, data=resilience)
print(pred)
```
Introduction to the Analysis of Survival Data in the Presence of Competing Risks
https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4741409/
-
Unlike Stata and other statistical package, running a cross tabulation on a subset of data in R is not a very straight forward thing. Let ...
-
using tapply to run a command, in this case calculating the variance of the variable met within each of the categories of the variable coffe...
-
``` hist(coffee.exercise$met[coffee.exercise$coffee.consumption=="A"]) hist(coffee.exercise$met[coffee.exercise$coffee.consumpt...