Skip to content

Commit 816bf1c

Browse files
Copilotmcguinlu
andauthored
Fix: Add ROBINS-E case for manual data entry in app.R
Agent-Logs-Url: https://github.com/mcguinlu/robvis/sessions/bba159fe-a13e-4934-a8d8-8bc8a9e5dbf9 Co-authored-by: mcguinlu <41202585+mcguinlu@users.noreply.github.com>
1 parent 0341f67 commit 816bf1c

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

robvisapp/app.R

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -993,6 +993,23 @@ server <- function(session, input, output) {
993993
rv$new_row = rv$data
994994
}
995995

996+
if (input$tool == "ROBINS-E") {
997+
rv$data = data.frame(
998+
Study = "Click to edit",
999+
D1 = "Click to edit",
1000+
D2 = "Click to edit",
1001+
D3 = "Click to edit",
1002+
D4 = "Click to edit",
1003+
D5 = "Click to edit",
1004+
D6 = "Click to edit",
1005+
D7 = "Click to edit",
1006+
Overall = "Click to edit",
1007+
Weights = 1,
1008+
stringsAsFactors = FALSE
1009+
)
1010+
rv$new_row = rv$data
1011+
}
1012+
9961013

9971014

9981015
})

0 commit comments

Comments
 (0)