Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: How can I visualize my complex data structure?

by planetscape (Chancellor)
on Aug 07, 2005 at 22:24 UTC ( [id://481746]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    print "Dumpvalue:\n";
    Dumpvalue->new->dumpValue( $ref );
    
  2. or download this
    Dumpvalue:
    'a' => ARRAY(0x460ee8)
    ...
             1  8
             2  9
    
  3. or download this
    use strict;
    use warnings;
    ...
    print "Data::Dumper:\n";
    print Dumper( $ref );
    
  4. or download this
    Data::Dumper:
    $VAR1 = {
    ...
                     ]
            };
    
  5. or download this
    use strict;
    use warnings;
    ...
    print "YAML::Dump:\n";
    print Dump( $ref );
    
  6. or download this
    YAML::Dump:
    ---
    ...
          - 8
          - 9
    
  7. or download this
    use strict;
    use warnings;
    ...
    print "Data::Dump::Streamer:\n";
    print Dump( $ref );
    
  8. or download this
    Data::Dump::Streamer:
    $HASH1 = {
    ...
                    ]
             };
    
  9. or download this
    use strict;
    use warnings;
    ...
      GraphViz::Data::Structure->new( $data_structure, Orientation => 'ver
    +tical' );
    print $gvds->graph()->as_png("gvds.png");
    
  10. or download this
    use strict;
    use warnings;
    ...
    my $graph = GraphViz::Data::Grapher->new($structure);
    print $graph->as_png("gvdg.png");
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://481746]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-03-19 05:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found