kplot 1.1.7__tar.gz → 1.1.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {kplot-1.1.7 → kplot-1.1.9}/PKG-INFO +1 -1
- {kplot-1.1.7 → kplot-1.1.9}/pyproject.toml +1 -1
- {kplot-1.1.7 → kplot-1.1.9}/src/kplot/__init__.py +1 -1
- {kplot-1.1.7 → kplot-1.1.9}/src/kplot/cmaps.py +1 -1
- {kplot-1.1.7 → kplot-1.1.9}/README.md +0 -0
- {kplot-1.1.7 → kplot-1.1.9}/src/kplot/axes.py +0 -0
- {kplot-1.1.7 → kplot-1.1.9}/src/kplot/hist.py +0 -0
- {kplot-1.1.7 → kplot-1.1.9}/src/kplot/image.py +0 -0
- {kplot-1.1.7 → kplot-1.1.9}/src/kplot/movie.py +0 -0
- {kplot-1.1.7 → kplot-1.1.9}/src/kplot/plot.py +0 -0
- {kplot-1.1.7 → kplot-1.1.9}/src/kplot/styles/example.mpl +0 -0
- {kplot-1.1.7 → kplot-1.1.9}/src/kplot/styles/publication.mpl +0 -0
- {kplot-1.1.7 → kplot-1.1.9}/src/kplot/threeD/__init__.py +0 -0
- {kplot-1.1.7 → kplot-1.1.9}/src/kplot/threeD/slider_images.py +0 -0
- {kplot-1.1.7 → kplot-1.1.9}/src/kplot/utils.py +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from kplot.axes import access_subplots, subplots
|
|
2
|
-
from kplot.cmaps import manoaskies, manoaskies_centered
|
|
2
|
+
from kplot.cmaps import manoaskies, manoaskies_centered, oklch_cmap, ColorOKLCH
|
|
3
3
|
from kplot.hist import hist
|
|
4
4
|
from kplot.image import show
|
|
5
5
|
from kplot.plot import plot, diffplot, powerlawplot
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# !==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==
|
|
4
4
|
from kbasic.typing import Number, Iterable
|
|
5
5
|
from matplotlib.pyplot import cm
|
|
6
|
-
from matplotlib.colors import Colormap, LinearSegmentedColormap, ListedColormap, \
|
|
6
|
+
from matplotlib.colors import Colormap, LinearSegmentedColormap, ListedColormap, \
|
|
7
7
|
hex2color, Normalize, LogNorm, FuncNorm, AsinhNorm, PowerNorm, SymLogNorm, \
|
|
8
8
|
BoundaryNorm, CenteredNorm, TwoSlopeNorm
|
|
9
9
|
from numpy import uint8, zeros, ndarray, inf, nanmin, nanmax, nanquantile, nanmean, \
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|