All Projects → songlinhou → Pyplotz

songlinhou / Pyplotz

Licence: mit
A light weight wrapper for matplotlib users with Chinese characters supported

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Pyplotz

Joypy
Joyplots in Python with matplotlib & pandas 📈
Stars: ✭ 322 (+485.45%)
Mutual labels:  jupyter-notebook, matplotlib
Notes Python
中文 Python 笔记
Stars: ✭ 6,127 (+11040%)
Mutual labels:  jupyter-notebook, matplotlib
Thesemicolon
This repository contains Ipython notebooks and datasets for the data analytics youtube tutorials on The Semicolon.
Stars: ✭ 345 (+527.27%)
Mutual labels:  jupyter-notebook, matplotlib
Matplotlib Venn
Area-weighted venn-diagrams for Python/matplotlib
Stars: ✭ 260 (+372.73%)
Mutual labels:  jupyter-notebook, matplotlib
Deep learning projects
Stars: ✭ 28 (-49.09%)
Mutual labels:  jupyter-notebook, matplotlib
Geopython
Notebooks and libraries for spatial/geo Python explorations
Stars: ✭ 268 (+387.27%)
Mutual labels:  jupyter-notebook, matplotlib
Stats Maths With Python
General statistics, mathematical programming, and numerical/scientific computing scripts and notebooks in Python
Stars: ✭ 381 (+592.73%)
Mutual labels:  jupyter-notebook, matplotlib
Kagglestruggle
Kaggle Struggle
Stars: ✭ 228 (+314.55%)
Mutual labels:  jupyter-notebook, matplotlib
Pythondatasciencehandbook
The book was written and tested with Python 3.5, though other Python versions (including Python 2.7) should work in nearly all cases.
Stars: ✭ 31,995 (+58072.73%)
Mutual labels:  jupyter-notebook, matplotlib
Crime Analysis
Association Rule Mining from Spatial Data for Crime Analysis
Stars: ✭ 20 (-63.64%)
Mutual labels:  jupyter-notebook, matplotlib
Contextily
Context geo-tiles in Python
Stars: ✭ 254 (+361.82%)
Mutual labels:  jupyter-notebook, matplotlib
Machine Learning
notebooks with example for machine learning examples
Stars: ✭ 45 (-18.18%)
Mutual labels:  jupyter-notebook, matplotlib
Jupyter Tips And Tricks
Using Project Jupyter for data science.
Stars: ✭ 245 (+345.45%)
Mutual labels:  jupyter-notebook, matplotlib
Audio Spectrum Analyzer In Python
A series of Jupyter notebooks and python files which stream audio from a microphone using pyaudio, then processes it.
Stars: ✭ 273 (+396.36%)
Mutual labels:  jupyter-notebook, matplotlib
The Elements Of Statistical Learning Notebooks
Jupyter notebooks for summarizing and reproducing the textbook "The Elements of Statistical Learning" 2/E by Hastie, Tibshirani, and Friedman
Stars: ✭ 241 (+338.18%)
Mutual labels:  jupyter-notebook, matplotlib
Python Notlarim
Python notes in Turkish.
Stars: ✭ 356 (+547.27%)
Mutual labels:  jupyter-notebook, matplotlib
Edaviz
edaviz - Python library for Exploratory Data Analysis and Visualization in Jupyter Notebook or Jupyter Lab
Stars: ✭ 220 (+300%)
Mutual labels:  jupyter-notebook, matplotlib
Deeplearning cv notes
📓 deepleaning and cv notes.
Stars: ✭ 223 (+305.45%)
Mutual labels:  jupyter-notebook, matplotlib
Adjusttext
A small library for automatically adjustment of text position in matplotlib plots to minimize overlaps.
Stars: ✭ 731 (+1229.09%)
Mutual labels:  jupyter-notebook, matplotlib
Machine Learning Alpine
Alpine Container for Machine Learning
Stars: ✭ 30 (-45.45%)
Mutual labels:  jupyter-notebook, matplotlib

pyplotz 中文支持组件

特性 Features

跨平台轻量级 matplotlib 中文支持组件。支持 Linux, MacOS 和 Windows。

A cross platform light weight wrapper for matplotlib users with Chinese characters supported. It can be used in Linux, MacOS and Windows.


兼容 matplotlib 以及其依赖库(如: seaborn)

Completely compatible with matplotlib and 3rd-party libraries based on matplotlib (such as seaborn).


无需配置,让中文显示原生兼容。

Without any configuration, you can use Chinese characters in matplotlib like it is natively supported.


支持 matplotlib 混合编程, 完全相同的API设计。查看示例

Mixture of matplotlib and pyplotz is supported. Identical API with matplotlib. Example

from pyplotz.pyplotz import PyplotZ
import matplotlib.pyplot as plt
import numpy as np

pltz = PyplotZ() # create an instance
pltz.plot(np.linspace(-10,10),np.sin(np.linspace(-10,10)),'b', label='sin数据',alpha=0.7)
pltz.plot(np.linspace(-10,10),np.cos(np.linspace(-10,10)),'r', label='cos数据',alpha=0.7)
pltz.title("数据图")
pltz.xlabel("横坐标")
pltz.ylabel("纵坐标")
plt.grid() # you can use matplotlib API and pyplotz interchangeably.
pltz.legend() # use legend function from pltz to show Chinese properly

获取方式 Installation

请使用命令行安装:

Pleased install using command:

pip install pyplotz

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].