Re: simple graphics question
- To: mathgroup at smc.vnet.net
- Subject: [mg121617] Re: simple graphics question
- From: Alexey Popkov <lehin.p at gmail.com>
- Date: Thu, 22 Sep 2011 07:26:39 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <j51sru$pfs$1@smc.vnet.net>
On 17 Sep, 14:30, Francisco Gutierrez <fgutiers2... at yahoo.com> wrote: > Dear group: > I have a list of lists of values. Say: val={{1,2,3},{4,5,6}...}, etc.It is relatively long (dimensions 20x30). > I want to make a relatively readable grahicsgrid > with this, but I have not managed. The individual plot appear small and cluttered. I've tried with ImageSize, > Magnification, etc, to no avail. The solution will be simple enough, but I have > not found it. Can somebody help me? > Fg Probably you need MatrixForm or TableForm: Magnify[RandomInteger[{1, 10}, {20, 30}] // MatrixForm, 1/2] If you insist on GraphicsGrid, try this: Magnify[RandomInteger[{1, 10}, {20, 20}] // GraphicsGrid, 1/2]