79584916

Date: 2025-04-21 15:59:22
Score: 1
Natty:
Report link

I tried the above answer using:

rownames(mat.z)[row_order(ht)]
Error in rownames(mat.z)[row_order(ht)] : 
  invalid subscript type 'list'

And got this error so instead I did:

ht <- draw(ht)
order <- row_order(ht)
order_unlist <- unlist(order)
rownames(mat.z)[order_unlist]
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Melody Hancock