如何在瓷砖图上添加轮廓线

时间:2019-06-14 14:45:12

标签: r ggplot2 tile

我有一组由模型预测的数据。我正在用geom_tile()绘制它。

    onBeforeRebindTable: function (oEvent) {
        var oBindingParams = oEvent.getParameter("bindingParams");

        oBindingParams.filters.push(new sap.ui.model.Filter("PropertyX", "EQ", "myProperty"));
    }

如何在特定值(例如z = 0.9、0.95、0.99)上为其添加一些轮廓线?另外,可以将geom_tile更改为任何合适的连续/轮廓/栅格图函数。

1 个答案:

答案 0 :(得分:1)

ggplot(df1, aes(x, y, z = z, fill = z))+
  geom_tile()+
  geom_contour()

enter image description here