Extensions to Matplotlib and Seaborn plotting for Visium SA.
Project description
visplotlib
Standardized plot styling for Visium SA
Installation
To plot with visplotlib, you need to install the library into your environment:
pip install visplotlib
You can then use the following import statements:
import visplotlib as vpl
from visplotlib.pyplot import mpl, plt # <-- Wrapped Matplotlib and Pyplot
from visplotlib.seaborn import sns # <-- Wrapped Seaborn
from visplotlib_test.plotly import go, px # <-- Wrapped Plotly
Example
We want to make your plots beautiful. We don't want to change your coding practices with long and annoying procedures.
All you need to do is call plt.format() when making a plot. That's it.
fig, ax = plt.subplots()
iris = sns.load_dataset('iris')
sns.scatterplot(data=iris, x='sepal_length', y='petal_length', ax=ax)
ax.set_title('Sepal vs. Petal length')
plt.format() # All we need to do is call plt.format()!
plt.show()
Loom demonstration
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
visplotlib_test-1.2.tar.gz
(6.8 kB
view details)
File details
Details for the file visplotlib_test-1.2.tar.gz.
File metadata
- Download URL: visplotlib_test-1.2.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adecd42bb06c120c60e2a10048aeb18ba52b2c67bffd8a0fff0770ef5db15313
|
|
| MD5 |
0016f72313705cea36875bed1f506976
|
|
| BLAKE2b-256 |
0b797a5b2982577f6e3885527a574a6bef043c503a80337ab179040bc3243122
|