Group Abstract Group Abstract

Message Boards Message Boards

0
|
5K Views
|
4 Replies
|
2 Total Likes
View groups...
Share
Share this post:

How to merge figures created by Column and Row to export as .esp file?

Posted 4 years ago
POSTED BY: Zhenyu Zeng
4 Replies

Will be very difficult to correctly export this figure correctly, too many different substructures that can all have their issues.

Make one Grid is much easier

array = Prepend[Transpose[Prepend[Correlation[Most /@ g[[1]]], h]], 
   Prepend[h, ""]];
Grid[Map[
  If[NumberQ[#],
    Item[Style[NumberForm[#, {3, 2}], 11], 
     Background -> ColorData["Temperature"][#]],
    Item[Style[#, Bold, 11], Background -> White]
    ] &
  , array, {2}],
 Frame -> {All, 
   All, {{1, 1} -> False, {1, 2} -> True, {2, 1} -> True}},
 ItemSize -> {4, 4}, Spacings -> {0, 0}, 
 Alignment -> {Center, Center}]
POSTED BY: Martijn Froeling
Posted 4 years ago

From your reply, I learned a lot. Thanks.

POSTED BY: Zhenyu Zeng
Posted 4 years ago

Do you need the row and column labels to be part of the grid? Rather than using Row, Column, Overlay, GraphicsGrid, ..., consider using MatrixPlot with Epilog and custom Ticks. Take a look at this for an example.

POSTED BY: Rohit Namjoshi
Posted 4 years ago

Okay. It is another way. But is there a way to merge column and row figure?

POSTED BY: Zhenyu Zeng
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard