¿Cómo agregar una cruz (X) en las celdas de un mapa de calor como con el lenguaje R?

e gustaría agregar una cruz (X) en las celdas del mapa de calor (dependiendo del nivel de significancia, pero la pregunta es agregar la X).

Me gusta en lenguaje R (sig.level = XXX).

Vea el código Python y R utilizado y las imágenes de salida correspondientes.

Gracias por tu ayuda

# Draw the heatmap with the mask and correct aspect ratio
sns.heatmap(corr, mask=mask, cmap=cmap, center=0, vmin=-1, vmax=1, square=True, linewidths=0.5, fmt=".2f",
            cbar_kws={"shrink": .65, "orientation": "horizontal", "ticks":np.arange(-1, 1+1, 0.2)}, 
            annot = True, annot_kws={"weight": 'bold', "size":15})




corrplot(cor(subset (wqw, select = 
                       c(fixed.acidity:quality,ratio.sulfur.dioxide))),
         # compute the p matrix
         p.mat = cor.mtest(subset 
            (wqw, select = c(fixed.acidity:quality,ratio.sulfur.dioxide))), 
         # significance level 0.01
         sig.level = 0.01, 
         # Method to display : color (could be corcle, ...)
         method = "color",
         # color palette
         col = colorRampPalette(c("#BB4444", "#EE9988", 
                                  "#FFFFFF", "#77AADD", "#4477AA"))(200),


         )

```

Respuestas a la pregunta(1)

Su respuesta a la pregunta