- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 Excel 中有热图,我试图在 R 中重新创建它。它的基本数据用于 RFM 分割,在 excel 中,颜色范围很棒,但我正在努力在 R 中获得如此漂亮的平滑颜色渐变,并尝试了多种方法但无法实现相同的平滑渐变。
我的 Excel 热图如下所示:
我在 R 中的热图如下所示:
我的 R 代码是:
cols <- brewer.pal(9, 'RdYlGn')
ggplot(xxx)+
geom_tile(aes(x= mon, y = reorder(freq, desc(freq)), fill = n)) +
facet_grid(rec~.) +
# geom_text(aes(label=n)) +
# scale_fill_gradient2(midpoint = (max(xxx$n)/2), low = "red", mid =
"yellow", high = "darkgreen") +
# scale_fill_gradient(low = "red", high = "blue") +
scale_fill_gradientn(colours = cols) +
# scale_fill_brewer() +
labs(x = "monetary", y= "frequency") +
scale_x_discrete(expand = c(0,0)) +
scale_y_discrete(expand = c(0,0)) +
coord_fixed(ratio= 0.5) +
theme(legend.position = "none")
ColorRampPalette
获得与 Excel 中相同的平滑颜色渐变或任何其他使我获得更平滑渐变的方法? R 中的梯度不是很好。
structure(list(rfm_score = c(111, 112, 113, 114, 115, 121), n = c(2624L,
160L, 270L, 23L, 5L, 650L), rec = structure(c(1L, 1L, 1L, 1L,
1L, 1L), .Label = c("1", "2", "3", "4", "5"), class = "factor"),
freq = structure(c(1L, 1L, 1L, 1L, 1L, 2L), .Label = c("1",
"2", "3", "4", "5"), class = "factor"), mon = structure(c(1L,
2L, 3L, 4L, 5L, 1L), .Label = c("1", "2", "3", "4", "5"), class =
"factor")), row.names = c(NA,
6L), class = "data.frame")
最佳答案
您可以使用 tableHTML
包裹:
这是我正在使用的数据:
df <- structure(list(rfm_score = c(111, 112, 113, 114, 115, 121), n = c(2624L,
160L, 270L, 23L, 5L, 650L), rec = structure(c(1L, 1L, 1L, 1L,
1L, 1L), .Label = c("1", "2", "3", "4", "5"), class = "factor"),
freq = structure(c(1L, 1L, 1L, 1L, 1L, 2L), .Label = c("1",
"2", "3", "4", "5"), class = "factor"), mon = structure(c(1L,
2L, 3L, 4L, 5L, 1L), .Label = c("1", "2", "3", "4", "5"), class =
"factor")), row.names = c(NA,
6L), class = "data.frame")
library(tableHTML)
data.frame
反射(reflect)您拥有的结构:
df <- data.table::dcast(df,
rec + freq ~ mon,
value.var = "rfm_score",
fill = "")
rec freq 1 2 3 4 5
1 1 1 111 112 113 114 115
2 1 2 121
tableHTML
对象并对其应用 css 以调整样式:
tableHTML
带有第二个标题和标题的对象 "Mon."
rec
添加颜色等级和 freq
列使用 RColorbrewer 调色板 "Blues"
""
)是白色的 RAG
(红色、琥珀色、绿色)颜色等级为 Mon.
栏目 Mon.
df %>%
tableHTML(rownames = FALSE,
second_headers = list(c(2, 5),
c("", "Mon.")),
caption = "<br>RFM Segmentation <br> Count of Cust in each Segment",
widths = c(rep(80, 2), rep(100, 5))) %>%
add_css_caption(css = list(c("background-color", "border"),
c("#F9E9DC", "1px solid black"))) %>%
add_css_second_header(css = list("background-color",
"lightgray"),
second_headers = 2) %>%
add_css_conditional_column(conditional = "colour_rank",
colour_rank_css = make_css_colour_rank_theme(list(rec = df$rec),
RColorBrewer::brewer.pal(5, "Blues")),
columns = 1) %>%
add_css_conditional_column(conditional = "colour_rank",
colour_rank_css = make_css_colour_rank_theme(list(freq = df$freq),
RColorBrewer::brewer.pal(5, "Blues")),
columns = 2) %>%
add_css_conditional_column(conditional = "==",
value = "",
css = list(c("background-color", "color"),
c("white", "white")),
columns = 3:7) %>%
add_css_conditional_column(conditional = "colour_rank",
colour_rank_theme = "RAG",
columns = 3:7,
decreasing = TRUE) %>%
add_css_header(css = list("background-color",
"#EFF3FF"),
header = 3) %>%
add_css_header(css = list("background-color",
"#BDD7E7"),
header = 4) %>%
add_css_header(css = list("background-color",
"#6BAED6"),
header = 5) %>%
add_css_header(css = list("background-color",
"#3182BD"),
header = 6) %>%
add_css_header(css = list("background-color",
"#08519C"),
header = 7)
关于r - 实现平滑的色带,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51818989/
我在 iPhone 上遇到了 openGL 问题,我确信一定有一个简单的解决方案! 当我加载纹理并显示它时,我得到了很多我认为所谓的“色带”,其中颜色,特别是渐变上的颜色,似乎会自动“优化”。 只是为
Android Activity 或 OpenGl 中出现 strip 图像的可能解决方案是什么。 请看下面的答案。 希望对你有帮助 最佳答案 色带已解决 ooooooooooyyyyyyyeaaaa
我有一个 working 'css ribbon tag' 但是,HTML 非常丑陋:
我想创建像这张图片(图片的红色部分)一样的丝带效果: 当我尝试创建带边框的箭头效果时,对象的形状完全被破坏了: HTML代码: Kategorija 到目前为止的 CSS 代码(没有尝试创建箭头):
在应用于正在进行的应用程序之前,我正在试验一些奇特的 CSS 效果,我遇到了 Ribbons . 就其本身而言,它工作得很好,但我不会按照生成器的建议使用固定元素,所以我在主框中添加了一个图像 但是,
我正在尝试使用 ggplot2 绘制热图,并且我想调整颜色栏的大小并增加字体。 这是代码的相关部分: g <- ggplot(data=melt.m) g2 <- g+geom_rect(aes(xm
一段时间以来,我一直在使用 this创建 Angular 丝带,到目前为止它一直运行良好: body { margin: 10% } img { border-radius: 0.5vw; }
我尝试创建 MS 功能区按钮图标表单代码。我创建了 32 bpp 的 CImage。 CImage img; img.Create(size, size, 32, CImage::createAlph
我有一个很大的表格,需要将单元格的背景更改为 1 到 6 个色带,就像矩形堆叠在一起(其他信息将出现在单元格内)。虽然这个例子是一个表格,但我猜这适用于任何 DIV。我希望能够(通过动态 javasc
我正在尝试反转这个朝阳可视化的色带。它使用带有标签等的 sunburst 可缩放图表。通常情况下,您只需反转它们正在使用的范围内的值,但我不太明白它是如何在设置中获取这些值的。 这是我使用的配色方案
我是一名优秀的程序员,十分优秀!