#OpenSourceDiscovery experiment with Danfojs

Danfojs is a pandas equivalent in Javascript


Demo - Creating a data frame type object using Danfojs and plotting it as line graph

      
          df = new dfd.DataFrame(
            { Cats: [20, 18, 489, 675, 1776], OpenSourceDevs: [4, 25, 281, 600, 1900] },
            { index: [1990, 1997, 2003, 2009, 2014] }
          );
          df.plot("plot_div").line();
      
    
Edit code on CodeSandBox

Subscribe to #OpenSourceDiscovery for new interesting Open-Source projects in your mailbox