{ "info": { "author": "M. Brekelmans", "author_email": "tijntje_7@msn.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.4" ], "description": "A convenient way to lay out matplotlib figures\nThe first argument is a multiline string which diagrammatically describes\nthe desired layout of your plot\n\n@return (figure, mpt)\n\ne.g., a simple single plot looks like\ngrid1 = '''\nA\n'''\n\nIf you want complicated grid layouts, you can do that as well\n\ngrid2 = '''\nAA\nAA\nBB\nCC\nCC\n'''\n\ngrid3 = '''\nAAABB\nCCCBB\n'''\n\nMake sure that your subfigures have a rectangular shape\ne.g.\n'''\nAA\nBB\nA'''\nWill not work at all.\n\nmultiplot takes care of creating the layout using matplotlib's gridspec\nYou can access each individual subplot by dictionary key access.\nThe figure is exposed as well\n\nfig, mpt = multiplot(grid3)\nmpt[\"A\"].plot(...)\nmpt[\"B\"].set_title(...)\n\nAny arguments you want to pass to plt.figure, you can pass to multiplot right after the grid\neg\nfig, mpt = multiplot(grid3, figsize=(10, 10), ...)\n\nEasily layout complicated grids\nEasily change its layout\nComplete access to axes and figure", "description_content_type": null, "docs_url": null, "download_url": null, "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Azeirah/multiplot.git", "keywords": "matplotlib grid convenience jupyter", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "mpt-multiplot", "package_url": "https://pypi.org/project/mpt-multiplot/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/mpt-multiplot/", "project_urls": { "Homepage": "https://github.com/Azeirah/multiplot.git" }, "release_url": "https://pypi.org/project/mpt-multiplot/0.0.2/", "requires_dist": null, "requires_python": null, "summary": "Convenient matplotlib subplot grids", "version": "0.0.2" }, "last_serial": 2748927, "releases": { "0.0.1": [], "0.0.2": [] }, "urls": [] }