You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.5 KiB

4 years ago
  1. Metadata-Version: 2.1
  2. Name: bqplot
  3. Version: 0.12.6
  4. Summary: Interactive plotting for the Jupyter notebook, using d3.js and ipywidgets.
  5. Home-page: https://github.com/bloomberg/bqplot
  6. Author: The BQplot Development Team
  7. Author-email: UNKNOWN
  8. License: Apache
  9. Keywords: ipython,jupyter,widgets,graphics,plotting,d3
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 4 - Beta
  12. Classifier: Intended Audience :: Developers
  13. Classifier: Intended Audience :: Science/Research
  14. Classifier: Topic :: Multimedia :: Graphics
  15. Classifier: License :: OSI Approved :: Apache Software License
  16. Classifier: Programming Language :: Python :: 2
  17. Classifier: Programming Language :: Python :: 2.7
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3.3
  20. Classifier: Programming Language :: Python :: 3.4
  21. Classifier: Programming Language :: Python :: 3.5
  22. Requires-Dist: ipywidgets (>=7.5.0)
  23. Requires-Dist: traitlets (>=4.3.0)
  24. Requires-Dist: traittypes (>=0.0.6)
  25. Requires-Dist: numpy (>=1.10.4)
  26. Requires-Dist: pandas
  27. BQPlot
  28. ======
  29. Plotting system for the Jupyter notebook based on the interactive Jupyter widgets.
  30. Installation
  31. ============
  32. .. code-block:: bash
  33. pip install bqplot
  34. jupyter nbextension enable --py bqplot
  35. Usage
  36. =====
  37. .. code-block:: python
  38. from bqplot import pyplot as plt
  39. import numpy as np
  40. plt.figure(1)
  41. n = 200
  42. x = np.linspace(0.0, 10.0, n)
  43. y = np.cumsum(np.random.randn(n))
  44. plt.plot(x,y, axes_options={'y': {'grid_lines': 'dashed'}})
  45. plt.show()