dataplot


Namedataplot JSON
Version 0.1.5 PyPI version JSON
download
home_pagehttps://github.com/Chitaoji/dataplot/
SummaryProvides plotting tools useful in datascience.
upload_time2025-07-27 05:29:39
maintainerNone
docs_urlNone
authorChitaoji
requires_python>=3.11.9
licenseBSD
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# dataplot
Provides plotting tools useful in datascience.

## Installation
```sh
$ pip install dataplot
```

## Requirements
```txt
hintwith
lazyr
matplotlib
numpy
pandas
scipy
seaborn
```

## See Also
### Github repository
* https://github.com/Chitaoji/dataplot/

### PyPI project
* https://pypi.org/project/dataplot/

## License
This project falls under the BSD 3-Clause License.

## History
### v0.1.5
* Fixed issue: unworking figure settings in the artist methods.

### v0.1.4
* Fixed issue: incorrectly displayed histogram statistics when the x-label had been modified by the user.

### v0.1.3
* Allowed users to set the plot-settings by kwargs in artist methods like `PlotDataSet.hist()`, `PlotDataSet.plot()`, etc.
* New operation methods `PlotDataSet.signedpow()` and `PlotDataSet.log10()`.
* Renamed `PlotDataSet.signlog()` to `.signedlog()`; renamed `PlotDataSet.opclear()` to `.undo_all()`; removed `PlotDataSet.opclear_records_only()`.
* New optional parameter `format_label=` for `PlotDataSet.set_plot()` to decide whether to format the label when painting on the axes.
* When defining the data classes, used *dataclasses* instead of *attrs* for a faster import.

### v0.1.2
* New methods `PlotDataSet.corrmap()`, `PlotDataSet.ppplot()`, and `PlotDataSet.resample()`.
* New optional parameter `fmt=` for `PlotDataSet.plot()`, `PlotDataSet.qqplot()`, `PlotDataSet.ppplot()`, and `PlotDataSet.ksplot()`.
* Bugfix.

### v0.1.1
* New module-level function `dp.show()`.
* New methods `PlotDataSet.qqplot()`, `PlotDataSet.ksplot()` and `PlotDataSet.abs()`.
* All the plotting method (e.g., `.hist()`) will now return an `Artist` object instead of None.
* New plot settings: `grid` and `grid_alpha`.
* Parameters of `FigWrapper.set_figure()`, `AxesWrapper.set_axes()` and `PlotDataSet.set_plot()` are keyword-only now.
* The returns of `.set_figure()` and `.set_axes()` will be None (instead of `self`) to avoid misunderstandings.
* New optional parameter `inplace=` for `PlotDataSet.set_plot()` to decide whether the changes will happen in-place (which is the only option before) or in a new copy.
* Parameter `ticks=` for `PlotDataSet.plot()` can be set to a `PlotDataSet` object now.

### v0.1.0
* `PlotDataSet` now supports binary operations including +, -, *, /, and **.
* New methods `FigWrapper.set_figure()` and `AxesWrapper.set_axes()` - use them instead of `*.set_plot()`.
* Simplified the usage of `AxesWrapper`.
* New plot settings: `subplots_adjust=`, `fontdict=` and `dpi=`.
* After this version, the required Python version is updated to >=3.11.9. Download and install v0.0.2 if the user is under lower Python version (>=3.8.13).

### v0.0.2
* Updated the meta-data.

### v0.0.1
* Initial release.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Chitaoji/dataplot/",
    "name": "dataplot",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "Chitaoji",
    "author_email": "2360742040@qq.com",
    "download_url": null,
    "platform": null,
    "description": "\n# dataplot\nProvides plotting tools useful in datascience.\n\n## Installation\n```sh\n$ pip install dataplot\n```\n\n## Requirements\n```txt\nhintwith\nlazyr\nmatplotlib\nnumpy\npandas\nscipy\nseaborn\n```\n\n## See Also\n### Github repository\n* https://github.com/Chitaoji/dataplot/\n\n### PyPI project\n* https://pypi.org/project/dataplot/\n\n## License\nThis project falls under the BSD 3-Clause License.\n\n## History\n### v0.1.5\n* Fixed issue: unworking figure settings in the artist methods.\n\n### v0.1.4\n* Fixed issue: incorrectly displayed histogram statistics when the x-label had been modified by the user.\n\n### v0.1.3\n* Allowed users to set the plot-settings by kwargs in artist methods like `PlotDataSet.hist()`, `PlotDataSet.plot()`, etc.\n* New operation methods `PlotDataSet.signedpow()` and `PlotDataSet.log10()`.\n* Renamed `PlotDataSet.signlog()` to `.signedlog()`; renamed `PlotDataSet.opclear()` to `.undo_all()`; removed `PlotDataSet.opclear_records_only()`.\n* New optional parameter `format_label=` for `PlotDataSet.set_plot()` to decide whether to format the label when painting on the axes.\n* When defining the data classes, used *dataclasses* instead of *attrs* for a faster import.\n\n### v0.1.2\n* New methods `PlotDataSet.corrmap()`, `PlotDataSet.ppplot()`, and `PlotDataSet.resample()`.\n* New optional parameter `fmt=` for `PlotDataSet.plot()`, `PlotDataSet.qqplot()`, `PlotDataSet.ppplot()`, and `PlotDataSet.ksplot()`.\n* Bugfix.\n\n### v0.1.1\n* New module-level function `dp.show()`.\n* New methods `PlotDataSet.qqplot()`, `PlotDataSet.ksplot()` and `PlotDataSet.abs()`.\n* All the plotting method (e.g., `.hist()`) will now return an `Artist` object instead of None.\n* New plot settings: `grid` and `grid_alpha`.\n* Parameters of `FigWrapper.set_figure()`, `AxesWrapper.set_axes()` and `PlotDataSet.set_plot()` are keyword-only now.\n* The returns of `.set_figure()` and `.set_axes()` will be None (instead of `self`) to avoid misunderstandings.\n* New optional parameter `inplace=` for `PlotDataSet.set_plot()` to decide whether the changes will happen in-place (which is the only option before) or in a new copy.\n* Parameter `ticks=` for `PlotDataSet.plot()` can be set to a `PlotDataSet` object now.\n\n### v0.1.0\n* `PlotDataSet` now supports binary operations including +, -, *, /, and **.\n* New methods `FigWrapper.set_figure()` and `AxesWrapper.set_axes()` - use them instead of `*.set_plot()`.\n* Simplified the usage of `AxesWrapper`.\n* New plot settings: `subplots_adjust=`, `fontdict=` and `dpi=`.\n* After this version, the required Python version is updated to >=3.11.9. Download and install v0.0.2 if the user is under lower Python version (>=3.8.13).\n\n### v0.0.2\n* Updated the meta-data.\n\n### v0.0.1\n* Initial release.\n\n\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "Provides plotting tools useful in datascience.",
    "version": "0.1.5",
    "project_urls": {
        "Homepage": "https://github.com/Chitaoji/dataplot/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8aee48258ec081f7119d1f6e53ee0c675368e6066849a821bb0dc1443a656b13",
                "md5": "4a93563eae3568ce49cd4e39f0e73da3",
                "sha256": "3bf7ac13cc5e90f96df62e1ac8fa4f65b6c5c02196e77bea485fac05a6324b6c"
            },
            "downloads": -1,
            "filename": "dataplot-0.1.5-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4a93563eae3568ce49cd4e39f0e73da3",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.11.9",
            "size": 28322,
            "upload_time": "2025-07-27T05:29:39",
            "upload_time_iso_8601": "2025-07-27T05:29:39.837073Z",
            "url": "https://files.pythonhosted.org/packages/8a/ee/48258ec081f7119d1f6e53ee0c675368e6066849a821bb0dc1443a656b13/dataplot-0.1.5-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-27 05:29:39",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Chitaoji",
    "github_project": "dataplot",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "dataplot"
}
        
Elapsed time: 1.39541s