kitikiplot 0.1.0__py3-none-any.whl → 0.1.2__py3-none-any.whl
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.
- kitikiplot/kitiki_cell.py +2 -2
- {kitikiplot-0.1.0.dist-info → kitikiplot-0.1.2.dist-info}/METADATA +17 -8
- kitikiplot-0.1.2.dist-info/RECORD +9 -0
- {kitikiplot-0.1.0.dist-info → kitikiplot-0.1.2.dist-info}/WHEEL +1 -1
- kitikiplot-0.1.0.dist-info/RECORD +0 -9
- {kitikiplot-0.1.0.dist-info → kitikiplot-0.1.2.dist-info}/LICENSE +0 -0
- {kitikiplot-0.1.0.dist-info → kitikiplot-0.1.2.dist-info}/top_level.txt +0 -0
kitikiplot/kitiki_cell.py
CHANGED
@@ -139,10 +139,10 @@ class KitikiCell(ColorConfig):
|
|
139
139
|
if not transpose:
|
140
140
|
|
141
141
|
# Calculate alignment factor based on whether alignment is enabled
|
142
|
-
align_factor= x*self.stride*cell_height if align else 0
|
142
|
+
align_factor= (self.rows-x)*self.stride*cell_height if align else 0
|
143
143
|
|
144
144
|
# Calculate dimensions for the rectangle based on grid position and size parameters
|
145
|
-
rect_dim= (window_gap*(
|
145
|
+
rect_dim= (window_gap*(x+1)+ cell_width*(x+1) , cell_height*(self.cols-y-1)+align_factor)
|
146
146
|
|
147
147
|
# Adjust dimensions if 'transpose' is set to 'True'
|
148
148
|
else:
|
@@ -1,15 +1,15 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: kitikiplot
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.2
|
4
4
|
Summary: A Python library for visualizing sequential and time-series categorical Sliding Window data.
|
5
5
|
Home-page: https://github.com/BodduSriPavan-111/kitikiplot
|
6
6
|
Author: Boddu Sri Pavan and Boddu Swathi Sree
|
7
|
-
Author-email:
|
7
|
+
Author-email: boddusripavan111@gmail.com
|
8
8
|
License: LICENSE
|
9
9
|
Project-URL: Bug Tracker, https://github.com/BodduSriPavan-111/kitikiplot/issues
|
10
10
|
Project-URL: Documentation, https://github.com/BodduSriPavan-111/kitikiplot/wiki
|
11
11
|
Project-URL: Source Code, https://github.com/BodduSriPavan-111/kitikiplot
|
12
|
-
Keywords:
|
12
|
+
Keywords: sliding window,sequential,time-series,genome,categorical data
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
14
14
|
Classifier: License :: OSI Approved :: MIT License
|
15
15
|
Classifier: Operating System :: OS Independent
|
@@ -17,7 +17,13 @@ Classifier: Topic :: Scientific/Engineering :: Visualization
|
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
License-File: LICENSE
|
19
19
|
|
20
|
-

|
21
|
+
|
22
|
+

|
23
|
+

|
24
|
+
[](https://doi.org/10.5281/zenodo.14292811)
|
25
|
+

|
26
|
+
|
21
27
|
# KitikiPlot
|
22
28
|
KitikiPlot is a Python library for visualizing sequential and time-series categorical "Sliding Window" data. <br>
|
23
29
|
(The term 'kitiki' means 'window' in Telugu)
|
@@ -35,13 +41,13 @@ KitikiPlot is a Python library for visualizing sequential and time-series catego
|
|
35
41
|
|
36
42
|
### Examples
|
37
43
|
Genome Visualization can be found in [Genome.ipynb](https://github.com/BodduSriPavan-111/kitikiplot/blob/add-comments/examples/Genome.ipynb)
|
38
|
-

|
39
45
|
<br><br>
|
40
46
|
Weather Pattern in [Weather Pattern.ipynb](https://github.com/BodduSriPavan-111/kitikiplot/blob/add-comments/examples/Weather_Pattern.ipynb)
|
41
|
-

|
42
48
|
<br><br>
|
43
49
|
CO Trend in Air in [Air_Quality.ipynb](https://github.com/BodduSriPavan-111/kitikiplot/blob/add-comments/examples/Air_Quality.ipynb)
|
44
|
-

|
45
51
|
<br>
|
46
52
|
|
47
53
|
### Getting Started
|
@@ -57,7 +63,9 @@ ktk= KitikiPlot( data= # DataFrame or list of sliding window data )
|
|
57
63
|
|
58
64
|
ktk.plot( display_legend= True ) # Display the legend
|
59
65
|
```
|
60
|
-
Check out the complete <b>guide of customization</b> [here](https://github.com/BodduSriPavan-111/kitikiplot/blob/main/examples/Usage_Guide.ipynb)
|
66
|
+
Check out the complete <b>guide of customization</b> [here](https://github.com/BodduSriPavan-111/kitikiplot/blob/main/examples/Usage_Guide.ipynb).
|
67
|
+
|
68
|
+
Please refer <a href="https://github.com/BodduSriPavan-111/kitikiplot/blob/main/CONTRIBUTING.md">CONTRIBUTING.md</a> for <b>contributions</b> to kitikiplot.
|
61
69
|
|
62
70
|
### Author
|
63
71
|
<a href="https://www.linkedin.com/in/boddusripavan/"> Boddu Sri Pavan </a> &
|
@@ -71,6 +79,7 @@ Check out the complete <b>guide of customization</b> [here](https://github.com/B
|
|
71
79
|
> year = {2024}, <br/>
|
72
80
|
> version = {0.0.1}, <br/>
|
73
81
|
> url = {\url{https://github.com/BodduSriPavan-111/kitikiplot}, <br/>
|
82
|
+
> doi = {10.5281/zenodo.14292812} <br/>
|
74
83
|
> howpublished = {\url{https://github.com/BodduSriPavan-111/kitikiplot}} <br/>
|
75
84
|
> }
|
76
85
|
|
@@ -0,0 +1,9 @@
|
|
1
|
+
kitikiplot/__init__.py,sha256=7LpJy1V-PZ-JlfjsnRMjMXxTKaFt0JP0mj-A0SgS-sE,34
|
2
|
+
kitikiplot/kitiki_cell.py,sha256=gZSYwG3H3VOu8PxkeYMQMGCNEQJNxpLooR7rWkwGYOo,6794
|
3
|
+
kitikiplot/kitiki_color_config.py,sha256=_HsOr1txgj8E4-Xro6-ekLSRH0FSrSnzvpXjAD2AbMw,10718
|
4
|
+
kitikiplot/kitikiplot.py,sha256=I3SeHnLz3T3nCac-80_d7wP20D81An74Z7DpDCwMLWg,19334
|
5
|
+
kitikiplot-0.1.2.dist-info/LICENSE,sha256=14Bs-3ieyNjj9kCnVLv8CHRXEvQVM6P5uLe-pz7cBI0,1088
|
6
|
+
kitikiplot-0.1.2.dist-info/METADATA,sha256=b9e3TEVhyG3cuhTTMQ-2h2N4K-WqiRFNYLhikr_Ti-o,3666
|
7
|
+
kitikiplot-0.1.2.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
8
|
+
kitikiplot-0.1.2.dist-info/top_level.txt,sha256=nqjD8Sil5L7rfBQtnmLdJMR-u2BdVFnusZlOIU0Yd00,11
|
9
|
+
kitikiplot-0.1.2.dist-info/RECORD,,
|
@@ -1,9 +0,0 @@
|
|
1
|
-
kitikiplot/__init__.py,sha256=7LpJy1V-PZ-JlfjsnRMjMXxTKaFt0JP0mj-A0SgS-sE,34
|
2
|
-
kitikiplot/kitiki_cell.py,sha256=YLOUGIW3Vyv9t-hnMaXXF1ZHrureoX1mu0dOvlCgi9g,6788
|
3
|
-
kitikiplot/kitiki_color_config.py,sha256=_HsOr1txgj8E4-Xro6-ekLSRH0FSrSnzvpXjAD2AbMw,10718
|
4
|
-
kitikiplot/kitikiplot.py,sha256=I3SeHnLz3T3nCac-80_d7wP20D81An74Z7DpDCwMLWg,19334
|
5
|
-
kitikiplot-0.1.0.dist-info/LICENSE,sha256=14Bs-3ieyNjj9kCnVLv8CHRXEvQVM6P5uLe-pz7cBI0,1088
|
6
|
-
kitikiplot-0.1.0.dist-info/METADATA,sha256=m8ZEb7zKQbkPkP-tqYEJMsyMv6At8XKFJuAykIMXDi0,2971
|
7
|
-
kitikiplot-0.1.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
8
|
-
kitikiplot-0.1.0.dist-info/top_level.txt,sha256=nqjD8Sil5L7rfBQtnmLdJMR-u2BdVFnusZlOIU0Yd00,11
|
9
|
-
kitikiplot-0.1.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|