Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: clinsight
Title: ClinSight
Version: 0.4.0.9000
Version: 0.4.0.9001
Authors@R: c(
person("Leonard Daniël", "Samson", , "lsamson@gcp-service.com", role = c("cre", "aut"),
comment = c(ORCID = "0000-0002-6252-7639")),
Expand Down
8 changes: 7 additions & 1 deletion R/mod_study_forms.R
Original file line number Diff line number Diff line change
Expand Up @@ -290,14 +290,20 @@ mod_study_forms_server <- function(
fig_data()[[yval]],
"No non-missing data available. Check table view or non-transformed data."
))
plot_cnt <- length(unique(fig_data()$item_name))
plot_height <- if (plot_cnt > 1) {
ceiling(0.5 * plot_cnt)*150 + 200
} else {
425
}
Comment thread
aclark02-arcus marked this conversation as resolved.
plotly_figure(
data = fig_data(),
fig = "timeseries_fig",
xval = "day",
id = "subject_id",
id_to_highlight = active_subject(),
point_size = "reviewed",
height = ceiling(0.5*length(unique(fig_data()$item_name))*125+175),
height = plot_height,
show_all_participants = isTRUE(input$show_all_participants),
show_all_hover_labels = input$show_all_hover_labels,
label = if (yval == "value_standardized") "label_standardized" else "text_label",
Expand Down
2 changes: 1 addition & 1 deletion inst/golem-config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
default:
golem_name: clinsight
golem_version: 0.4.0
golem_version: 0.4.0.9001
app_prod: no
user_identification: test_user
study_data: !expr clinsight::clinsightful_data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@
}
},
"hovermode": "closest",
"height": 238,
"height": 425,
"barmode": "relative"
},
"config": {
Expand Down
Loading