让ChatGPT编写交互式网页应用的临床预测模型

R Shiny是一种基于Web的交互式数据可视化工具,能够帮助研究人员和临床医生快速构建交互式应用程序,从而进行数据分析和可视化。

在临床决策中,R Shiny可以用于以下方面:

  1. 数据可视化:医生可以使用R Shiny构建交互式图表和图形,以更好地展示和解释患者的病情和治疗效果。
  2. 临床预测模型:R Shiny可以帮助医生构建和验证临床预测模型,以便更好地了解患者的风险和预测未来病情的可能性。
  3. 决策支持系统:R Shiny可以用于构建决策支持系统,帮助医生制定更准确、更个性化的治疗方案。
  4. 临床试验监管:R Shiny可以用于临床试验监管,帮助研究人员快速掌握数据,监测研究的进展和效果。

那么,结合R强大的数据分析能力,在医学领域Shiny有哪些应用呢?这里给出了介绍。
https://zhuanlan.zhihu.com/p/471281332

模型准备

1.准备数据(测试集/训练集)
2.建立Logistics回归模型
3.预测指标(AUC)
4.个体预测概率

上述模型的准备是关键,其实Shiny只是可视化的展示网页,并进行交互式的操作。详细案例见:OR与RR的计算及可视化展示

Shiny基础

这里不多做介绍,直接看官网链接

image.png

ChatGPT编写shiny

ChatGPT编程运行的怎么样,我们来看看。

image.png

在这个示例程序中,使用了numericInputselectInput函数创建输入变量,使用actionButton函数创建计算患病概率的按钮。在Server端,使用reactive函数创建数据框data和逻辑回归模型model

image.png

一个大致的界面就完成了,而且出现了一些错误,所以ChatGPT也并不是完美的。

接下来我们将对界面这个进行完成

逐步完善shiny

在空白处增加两个数据输出图像输出框架,可以借助tabBox完成。

tabBox(title = "Data Result",height = "500px", width = NULL,    
                    tabPanel("Dataview",h4("we can see the inut data"),
                             textOutput("text1"),
                             dataTableOutput("data1"), # 展示录入数据
                             dataTableOutput("data2"),
                             textOutput("prediction_text")
                             ), # 展示模型输出
                    tabPanel("Plotfigure", h4("Here output the AUC"),
                             textOutput("text2"),
                             verbatimTextOutput("Data_Management_Normal"),
                             plotOutput("plot1"))
                    )

这样就可以自由切换。


image.png

Shiny集合

这里贴上,其人网站的优化UI,给大家做扩展,以后可以按照这些来设计。

image.png

image.png

Code

这里附上源代码:

library(shiny)
library(ggplot2)
library(pROC)  
library(DT)
library(tidyverse)
library(shinydashboard)
library(shinydashboardPlus)
library(shinyWidgets)

# 产生fake数据
set.seed(123) # for reproducibility

# create a data frame with patient data
patients <- data.frame(
  age = round(rnorm(500, 50, 10)), # age (normally distributed, mean=50, sd=10)
  sex = sample(c("M", "F"), 500, replace = TRUE), # sex
  blood_pressure = round(rnorm(500, 120, 10)), # blood pressure (normally distributed, mean=120, sd=10)
  cholesterol = round(rnorm(500, 200, 30)), # cholesterol (normally distributed, mean=200, sd=30)
  blood_sugar = round(rnorm(500, 5, 1)), # blood sugar (normally distributed, mean=5, sd=1)
  heart_rate = round(rnorm(500, 70, 10)), # heart rate (normally distributed, mean=70, sd=10)
  disease = sample(c(0, 1), 500, replace = TRUE, prob = c(0.8, 0.2)) # heart disease (20% of patients have the disease)
)


test_data<- data.frame(
  age = round(rnorm(200, 50, 10)), # age (normally distributed, mean=50, sd=10)
  sex = sample(c("M", "F"), 200, replace = TRUE), # sex
  blood_pressure = round(rnorm(200, 120, 10)), # blood pressure (normally distributed, mean=120, sd=10)
  cholesterol = round(rnorm(200, 200, 30)), # cholesterol (normally distributed, mean=200, sd=30)
  blood_sugar = round(rnorm(200, 5, 1)), # blood sugar (normally distributed, mean=5, sd=1)
  heart_rate = round(rnorm(200, 70, 10)), # heart rate (normally distributed, mean=70, sd=10)
  disease = sample(c(0, 1), 200, replace = TRUE, prob = c(0.8, 0.2)) # heart disease (20% of patients have the disease)
)


# create a factor variable for sex
patients$sex <- factor(patients$sex)

# show the first few rows of the dataset
head(patients)

# fit a logistic regression model
modelx <- glm(disease ~ age + sex + blood_pressure + cholesterol + blood_sugar + heart_rate, 
             data = patients, family = "binomial")

# show the model summary
summary(modelx)

library(broom)
# convert model output to a tidy data frame
model_summary <- tidy(modelx)




## Shiny web
ui <- fluidPage(
  titlePanel("临床预测模型"),
  sidebarLayout(
    sidebarPanel(
      numericInput("age", "年龄(岁):", min = 0, max = 150, value = 50),
      selectInput("sex", "性别:", choices = c("F", "M")),
      numericInput("blood_pressure", "血压(mmHg):", min = 0, max = 300, value = 120),
      numericInput("cholesterol", "胆固醇(mg/dL):", min = 0, max = 500, value = 200),
      numericInput("blood_sugar", "血糖(mmol/L):", min = 0, max = 50, value = 5),
      numericInput("heart_rate", "心率(次/分):", min = 0, max = 300, value = 70),
      actionButton("calculate", "计算患病概率")
    ),
    
    mainPanel(
      
      

             tabBox(title = "Data management",height = "500px", width = NULL,   
                    tabPanel("Dataview",h4("we can see the inut data"),
                             textOutput("text1"),
                             dataTableOutput("data1"), # 展示录入数据
                             dataTableOutput("data2"),
                             textOutput("prediction_text")
                             ), # 展示模型输出
                    tabPanel("Plotfigure", h4("Here output the AUC"),
                             textOutput("text2"),
                             verbatimTextOutput("Data_Management_Normal"),
                             plotOutput("plot1"))
                    ),

    )
  )
)

server <- function(input, output) {
  # 定义数据框
  datax <- reactive({
    data.frame(
      age = input$age,
      sex = factor(input$sex),
      blood_pressure =input$blood_pressure,
      cholesterol = input$cholesterol,
      blood_sugar = input$blood_sugar,
      heart_rate = input$heart_rate) 

  })
  
  # 输出录入数据
  output$data1 <- renderDataTable({
    datax()
  })
  
  # 输出LR模型结果
  output$data2 <- renderDataTable({
    model_summary
  })

  # 计算患病概率
  prediction <- eventReactive(input$calculate, {
    prob <- predict(modelx,newdata =  datax(),type = "response")
    prob 
  })
  
  # 输出患病概率
  output$text1 <- renderText({
    paste0("该病人的患病概率为:", round(prediction() * 100, 2), "%")
    #print(str(datax()))
  })
  
  # 绘制AUC图表
  output$plot1 <- renderPlot({
    ggplot(mtcars)+ geom_point(aes(mpg,hp))
    #验证集
    test_data$P1<-predict(modelx,newdata = test_data , type = "response")
    roc1 <- plot.roc(test_data$disease,test_data$P1,ci=TRUE,print.auc=TRUE,levels = c(0,1),
                     direction='<')
    plot(roc1, print.auc=TRUE,auc.polygon=TRUE, grid=c(0.2, 0.2),
         grid.col=c("green", "red"), max.auc.polygon=TRUE,legacy.axes=T,
         auc.polygon.col="skyblue", print.thres=F,main="mtDNA-CN")
    
  })
  
  
}

shinyApp(ui = ui, server = server)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容