cox

    1熱度

    2回答

    我每次運行使用R中的生存包的Cox模型時都會收到以下錯誤。此錯誤在最近幾天內出現。爲了說明這個錯誤,我使用它在https://stat.ethz.ch/R-manual/R-devel/library/survival/html/coxph.html給出一個標準的例子命令: # Fit a stratified model, clustered on patients library(survi

    0熱度

    1回答

    提取對數值(分數)與p值的測試結果我有100個重複的coxph模型擬合循環。我試圖用數據框或列表中的每個重複項的p值提取出日誌排名分數測試結果。我正在使用以下內容。但是,它只給出了我的日誌排名分數,而不是p值。任何幫助將非常感激。 我可以共享數據集,但不知道如何在此處添加。 感謝, Krina Repl_List <- unique(dat3$Repl) doLogRank = function

    1熱度

    1回答

    下午好匹配係數, 我可以張貼重複性代碼,並肯定會,如果每個人都同意,什麼是錯的,但現在我覺得我的問題很簡單,有人會指出我的正確的道路。 我在一個數據集的工作是這樣的: created_as_free_user t c <fctr> <int> <int> 1 true 36 0 2 true 36 0 3 true 0 1 4 t

    1熱度

    1回答

    我第一次R中建立Cox模型: test1<- test[1:20,] model.1 <- coxph(Surv(test1$days,test1$status==1) ~ test1$MTT+test1$ADC,data=test1) ,當我試圖預測下一個病人的生存是這樣的: covs1 <- data.frame(test[21,]$MTT,test[21,]$ADC) summary