我有一个数据框,我想用ggplot2创建一个热图,我的数据框看起来像这样:
dput(head(x,50))
structure(list(DAY = structure(c(15765, 15765, 15765, 15765,
15765, 15765, 15765, 15765, 15765, 15765, 15765, 15765, 15765,
15765, 15765, 15765, 15765, 15765, 15765, 15765, 15765, 15765,
15765, 15765, 15765, 15765, 15765, 15765, 15765, 15765, 15765,
15765, 15765, 15765, 15765, 15765, 15765, 15765, 15765, 15765,
15765, 15765, 15765, 15765, 15765, 15765, 15765, 15765, 15765,
15765), class = "Date"), Time = c("00:14", "00:29", "00:44",
"00:59", "01:14", "01:29", "01:44", "01:59", "02:14", "02:29",
"02:44", "02:59", "03:14", "03:29", "03:44", "03:59", "04:14",
"04:29", "04:44", "04:59", "05:14", "05:29", "05:44", "05:59",
"06:14", "06:29", "06:44", "06:59", "07:14", "07:29", "07:44",
"07:59", "08:14", "08:29", "08:44", "08:59", "09:14", "09:29",
"09:44", "09:59", "10:14", "10:29", "10:44", "10:59", "11:14",
"11:29", "11:44", "11:59", "12:14", "12:29"), CPU = c(12.9428571428571,
8, 8.03333333333333, 7.83333333333333, 6.9, 7.1, 6.9, 5.2, 5.66666666666667,
7, 6.46666666666667, 5.93333333333333, 5.9, 6.4, 4.73333333333333,
4.2, 8.13333333333333, 11.8333333333333, 16.1, 22.1, 27.2, 28.2333333333333,
25.3666666666667, 26.1666666666667, 24, 23.2, 24.1, 24.7666666666667,
27, 27.8333333333333, 28.6, 30.6333333333333, 38.3, 33.5, 36.9,
41.7333333333333, 50.0666666666667, 46.9666666666667, 45.6666666666667,
45.1333333333333, 52.9333333333333, 49.9, 47.8666666666667, 47.7,
55.5, 50, 48.8333333333333, 48.2333333333333, 53.6666666666667,
50.1379310344828)), .Names = c("DAY", "Time", "CPU"), row.names = c(NA,
50L), class = "data.frame")
当我执行以下操作时,我只在瓷砖中看到一些点,它主要是白色。我需要在热图中使用方形颜色。
ggplot(x, aes(DATE, Time, fill=CPU)) + geom_tile() + theme_bw()
+ scale_x_datetime(breaks = "2 weeks", labels=date_format("%b %d, %Y"))
+ scale_y_datetime(breaks="2 hours", labels=date_format("%H:%M"))
+ guides(fill = guide_legend(keywidth = 3, keyheight = 1))
+ scale_fill_gradientn(name="CPU Utilization", colours=c("#F0FFFF","#AEEEEE","#ADD8E6","#87CEFA","#00FF00","#E4F224","#C9821E", "#FF0000", "#FF0000"), value=c(0,0.19,0.2,0.5,0.8,0.81,1),
limits=c(0,100), breaks = c(20, 30, 40, 50, 60, 70, 80, 90, 100))
答案 0 :(得分:4)
您可以使用scale_fill_gradientn()
获取所需颜色的填充值。使用参数limits=c(0,100)
,您将获得此范围内的图例。然后使用参数values=
和colours=
设置颜色分布。在我的示例中,刻度以深绿色开始然后变为绿色,变为红色,然后变为暗色并再次变为红色。最后再次是绿色和深绿色。使用values=
我将比例设置为0到1,其中颜色应该更改 - 从0开始,红色从0.2开始,结束于0.8,依此类推。
ggplot(y, aes(DAY, Time, fill=CPU)) + geom_tile() +
theme_bw() +
scale_x_date(breaks = "2 weeks", labels=date_format("%b %d, %Y")) +
scale_colour_discrete(name="15 Minute CPU") +
scale_fill_gradientn(name="CPU Utilization",
colours=c("darkgreen","green","red","darkred","red","green","darkgreen"),
values=c(0,0.19,0.2,0.5,0.8,0.81,1),
limits=c(0,100),
breaks = c(20, 30, 40, 50, 60, 70, 80, 90, 100))