我想更改bupaR和相邻软件包输出的图的颜色。他们总是使用蓝色。到目前为止,我已经设法为process_map的节点重新着色,但是我还想为边缘和所有其他图着色。
此外,processmonitR / edeaR软件包创建仪表板,我想对其重新着色。颜色似乎是硬编码的(请参见here)
示例输出为默认颜色:
library(dplyr)
library(bupaR)
library(shiny)
patients %>% process_map
patients %>% process_map(type = frequency("absolute", color_scale = "Oranges"))
patients %>% precedence_matrix %>% plot
patients %>% plotly_trace_explorer
答案 0 :(得分:1)
使用scale_fill = scale_fill_discrete(h = c(0, 310) + 50, l = 50, c = 150)
。检查文档中的函数参数。