Metadata-Version: 1.1
Name: dyplot
Version: 0.5.000
Summary: matplotlib-like plot functions for dygraphs.js.
Home-page: http://pypi.python.org/pypi/dyplot/
Author: Tsung-Han Yang
Author-email: blacksburg98@yahoo.com
License: LICENSE.txt
Description: dyplot
        ======
        matplotlib-like plot functions for dygraphs.js. See dygraphs.com for detail.
        If no html_file is provided, then no html file will be generated.
        You can go to http://store-demo.appspot.com/temp.html to see the output of 
        the short example.
        https://github.com/blacksburg98/dyplot
        The series needs to be pandas.Series
        Short Example
        =====
            import pandas as pd
            from dyplot.dyplot import Dyplot
            a = pd.Series([1,2,3,4,5,6,7,9,10])
            b = pd.Series([1,3,5,9,2,8,5,5,15])
            lc= pd.Series([1,3,4,5,6,7,9,3,2])
            c = pd.Series([2,4,5,7,8,8,9,4,3])
            hc= pd.Series([3,5,7,7,9,11,9,5,8])
            dg = Dyplot(a.index, "index")
            dg.plot(name="a", mseries=a)
            dg.plot(name="b", mseries=b)
            dg.plot(name="c", mseries=c,lseries=lc, hseries=hc)
            dg.set_options(title="Test")
            div = dg.savefig(html_file="tutorial1.html", csv_file="tutorial1.csv")
        
        
Platform: UNKNOWN
Classifier: Topic :: Text Processing :: Markup :: HTML
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Programming Language :: JavaScript
