I split a data frame into X and Y. X has one column, Y has about 100.
x <- subset(tbl, , select = ordernum)
y <- subset(tbl, select = -c(ordernum, paid1num,
weight, returnnum, order_only, multi_dep, sequence_id))
Next I correlate X with each column in Y which produces a frame with 100 columns and a single row.
corr <- cor(x,y)
Next I transpose,
corr.t <- t(corr)
and the (truncated) result looks like this:
ordernum
HH_AFFORD_MOMS_BUY_GREEN -0.0021281583
HH_AFFORD_SPORTS -0.0047221159
HH_AFFORD_CLASSICAL_MUSIC -0.0006594956
HH_AFFORD_HOME_DECOR 0.0052106766
I would like to split this single column, called ordernum, into 2 columns. A character field with the variable names, and a numeric with the correlations.
I appreciate any guidance. Perhaps if I use lm, instead of cor?
