Is there anyway I can edit my cor_df table (image below) to rename the labels, remove "rowname," and generally make it look prettier for publication? And, is there a command I can use to generate latex output?
This is how I generated my correlation table:
library(corrr)
library(dplyr)
Corrbata <- murder.data %>%
dplyr::select(c(murderrate, prexconv, exec)) %%
corrr::correlate(x = .) %>%
shave() %>%
fashion(, decimals = 2) %>%
fashion(na_print = "")
CorrData
This is what my cor_df looks like, which looks ugly :)