EntropyOrg / p5-Devel-IPerl

:microscope::books: Perl5 language kernel for Jupyter <http://jupyter.org/>
http://p3rl.org/Devel::IPerl
93 stars 15 forks source link

created a plugin for Chart::Clicker #50

Closed ghost closed 9 years ago

ghost commented 9 years ago

I sometimes use Chart::Clicker https://metacpan.org/pod/Chart::Clicker to generate charts. So I created a plugin for Chart::Clicker to work with IPerl notebook.

So user can do like below in IPerl notebook.

IPerl->load_plugin( "ChartClicker" );
my $cc = Chart::Clicker->new;
my @values = (42, 25, 86, 23, 2, 19, 103, 12, 54, 9);
$cc->add_data('Sales', \@values);
$cc;
demianriccardi commented 9 years ago

++

zmughal commented 9 years ago

Very cool! I'll try this out tonight and make a new release.

zmughal commented 9 years ago

Finally got some time to get to this! Sorry about the delay.

Looking good!

selection_440

I'll merge this and push out a release in a few minutes. :-)

zmughal commented 9 years ago

Devel::IPerl v0.006 is on its way to CPAN with this included!