Hi
I was outputting a heat map plot using this command
output$plot2 <- renderPlot({
heatmap(x = as.matrix(cor(data2[,input$show_vars2])), symm = TRUE,cexRow=1,cexCol =1)
})
But unfortunately the x axis is not visible as expected, half of the label is missing
Any suggestions ?